Install
openclaw skills install book-quotesExtract memorable quotes and passages from books. Get the most inspiring and thought-provoking quotes.
openclaw skills install book-quotesExtract memorable quotes and passages from books.
Use this skill when the user asks:
clawhub install book-quotes
const BookQuotesSkill = require('book-quotes');
const skill = new BookQuotesSkill();
// Get quotes (returns formatted text)
const result = await skill.getQuotes({
query: 'Atomic Habits',
limit: 10
});
console.log(result); // Directly readable text output
Formatted text with:
MIT