Amazon Books
by @heardlyapp
Search books across all sources with summaries and Amazon purchase links. Triggered when user asks about finding, buying, or searching for books.
clawhub install amazon-booksπ About This Skill
name: amazon_books description: Search books across all sources with summaries and Amazon purchase links. Triggered when user asks about finding, buying, or searching for books. keywords: - book - search - amazon - purchase - summary - author triggers: - "search for books" - "find books about" - "where can I buy" - "books by author" - "book recommendations" - "looking for a book"
amazon-books
Search books across all sources with summaries and Amazon purchase links.
What it does
When to use this skill
Use this skill when the user asks:
Installation
clawhub install amazon-books
Usage
const AmazonBooksSkill = require('amazon-books');
const skill = new AmazonBooksSkill();// Search books (returns formatted text)
const result = await skill.searchBooks({
query: 'Kevin Kelly',
limit: 5
});
console.log(result); // Directly readable text output
Output
Formatted text with:
Data Sources
1. Heardly Database (5904 books) β fastest, local 2. Google Books API (free, millions of books) 3. Open Library API (free, open source) 4. Amazon Search Links (no API needed)
License
MIT
π‘ Examples
const AmazonBooksSkill = require('amazon-books');
const skill = new AmazonBooksSkill();// Search books (returns formatted text)
const result = await skill.searchBooks({
query: 'Kevin Kelly',
limit: 5
});
console.log(result); // Directly readable text output