โ† All skills
Tencent SkillHub ยท Developer Tools

Books For Agents

Access and search a structured open source knowledge base of book summaries optimized for AI agents via the MCP protocol.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Access and search a structured open source knowledge base of book summaries optimized for AI agents via the MCP protocol.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
0.1.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

Books for Agents

An open source knowledge base of structured book summaries, available to any AI agent via MCP.

Setup

If you don't have the books-for-agents MCP server installed, add it: claude mcp add --transport http books-for-agents https://booksforagents.com/mcp Or add to your MCP config file: { "mcpServers": { "books-for-agents": { "url": "https://booksforagents.com/mcp" } } } Once connected, you have access to all tools below.

Search for books

Use search_books to find books by topic, keyword, or question. Supports hybrid search (full-text + semantic vector embeddings). search_books({ query: "how to build better habits" }) search_books({ query: "leadership", category: "business" }) search_books({ query: "cognitive biases and decision making", limit: 3 })

Read a book summary

Use get_book to retrieve the full structured summary of a specific book by slug or title (partial match supported). get_book({ slug: "atomic-habits" }) get_book({ title: "Deep Work" })

Read a specific section

Use get_book_section to retrieve only one section of a book โ€” saves tokens when you don't need the full summary. Available sections: ideas, frameworks, quotes, connections, when-to-use. get_book_section({ slug: "the-lean-startup", section: "frameworks" }) get_book_section({ slug: "clean-code", section: "quotes" }) get_book_section({ slug: "thinking-fast-and-slow", section: "when-to-use" })

Browse categories

Use list_categories to see all available categories and how many books each one has. list_categories()

Suggest a new book

Use suggest_book to add a book to the generation backlog. Checks for duplicates against published books and existing backlog entries. suggest_book({ title: "Thinking in Bets", author: "Annie Duke", category: "psychology" })

See the backlog

Use list_backlog to see all pending books waiting to be generated, along with their status. list_backlog()

Generate a book summary

Use generate_book to get the template, example, metadata, and instructions needed to generate the next book summary. You can specify a title or let it pick the next pending one. generate_book() generate_book({ title: "Never Split the Difference" }) After generating the content, call submit_book to publish it.

Publish a book summary

Use submit_book to publish a generated summary directly to the knowledge base. Call this after generating content with generate_book. submit_book({ slug: "never-split-the-difference", title: "Never Split the Difference", author: "Chris Voss", category: "business", content: "---\ntitle: \"Never Split the Difference\"\n..." })

Tips

Use get_book_section instead of get_book when you only need one part โ€” it saves significant tokens. Use search_books with natural language queries โ€” the semantic search understands meaning, not just keywords. When generating a book, follow the template and instructions returned by generate_book exactly. All content must be in English. Connections between books use [[slug]] format and must reference existing books only.

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc