{
  "schemaVersion": "1.0",
  "item": {
    "slug": "books-for-agents",
    "name": "Books For Agents",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/danpalmieri/books-for-agents",
    "canonicalUrl": "https://clawhub.ai/danpalmieri/books-for-agents",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/books-for-agents",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=books-for-agents",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/books-for-agents"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/books-for-agents",
    "agentPageUrl": "https://openagent3.xyz/skills/books-for-agents/agent",
    "manifestUrl": "https://openagent3.xyz/skills/books-for-agents/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/books-for-agents/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Books for Agents",
        "body": "An open source knowledge base of structured book summaries, available to any AI agent via MCP."
      },
      {
        "title": "Setup",
        "body": "If you don't have the books-for-agents MCP server installed, add it:\n\nclaude mcp add --transport http books-for-agents https://booksforagents.com/mcp\n\nOr add to your MCP config file:\n\n{\n  \"mcpServers\": {\n    \"books-for-agents\": {\n      \"url\": \"https://booksforagents.com/mcp\"\n    }\n  }\n}\n\nOnce connected, you have access to all tools below."
      },
      {
        "title": "Search for books",
        "body": "Use search_books to find books by topic, keyword, or question. Supports hybrid search (full-text + semantic vector embeddings).\n\nsearch_books({ query: \"how to build better habits\" })\nsearch_books({ query: \"leadership\", category: \"business\" })\nsearch_books({ query: \"cognitive biases and decision making\", limit: 3 })"
      },
      {
        "title": "Read a book summary",
        "body": "Use get_book to retrieve the full structured summary of a specific book by slug or title (partial match supported).\n\nget_book({ slug: \"atomic-habits\" })\nget_book({ title: \"Deep Work\" })"
      },
      {
        "title": "Read a specific section",
        "body": "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.\n\nget_book_section({ slug: \"the-lean-startup\", section: \"frameworks\" })\nget_book_section({ slug: \"clean-code\", section: \"quotes\" })\nget_book_section({ slug: \"thinking-fast-and-slow\", section: \"when-to-use\" })"
      },
      {
        "title": "Browse categories",
        "body": "Use list_categories to see all available categories and how many books each one has.\n\nlist_categories()"
      },
      {
        "title": "Suggest a new book",
        "body": "Use suggest_book to add a book to the generation backlog. Checks for duplicates against published books and existing backlog entries.\n\nsuggest_book({ title: \"Thinking in Bets\", author: \"Annie Duke\", category: \"psychology\" })"
      },
      {
        "title": "See the backlog",
        "body": "Use list_backlog to see all pending books waiting to be generated, along with their status.\n\nlist_backlog()"
      },
      {
        "title": "Generate a book summary",
        "body": "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.\n\ngenerate_book()\ngenerate_book({ title: \"Never Split the Difference\" })\n\nAfter generating the content, call submit_book to publish it."
      },
      {
        "title": "Publish a book summary",
        "body": "Use submit_book to publish a generated summary directly to the knowledge base. Call this after generating content with generate_book.\n\nsubmit_book({\n  slug: \"never-split-the-difference\",\n  title: \"Never Split the Difference\",\n  author: \"Chris Voss\",\n  category: \"business\",\n  content: \"---\\ntitle: \\\"Never Split the Difference\\\"\\n...\"\n})"
      },
      {
        "title": "Tips",
        "body": "Use get_book_section instead of get_book when you only need one part — it saves significant tokens.\nUse search_books with natural language queries — the semantic search understands meaning, not just keywords.\nWhen generating a book, follow the template and instructions returned by generate_book exactly. All content must be in English.\nConnections between books use [[slug]] format and must reference existing books only."
      }
    ],
    "body": "Books for Agents\n\nAn open source knowledge base of structured book summaries, available to any AI agent via MCP.\n\nSetup\nIf you don't have the books-for-agents MCP server installed, add it:\nclaude mcp add --transport http books-for-agents https://booksforagents.com/mcp\n\n\nOr add to your MCP config file:\n\n{\n  \"mcpServers\": {\n    \"books-for-agents\": {\n      \"url\": \"https://booksforagents.com/mcp\"\n    }\n  }\n}\n\nOnce connected, you have access to all tools below.\nWhat you can do\nSearch for books\n\nUse search_books to find books by topic, keyword, or question. Supports hybrid search (full-text + semantic vector embeddings).\n\nsearch_books({ query: \"how to build better habits\" })\nsearch_books({ query: \"leadership\", category: \"business\" })\nsearch_books({ query: \"cognitive biases and decision making\", limit: 3 })\n\nRead a book summary\n\nUse get_book to retrieve the full structured summary of a specific book by slug or title (partial match supported).\n\nget_book({ slug: \"atomic-habits\" })\nget_book({ title: \"Deep Work\" })\n\nRead a specific section\n\nUse 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.\n\nget_book_section({ slug: \"the-lean-startup\", section: \"frameworks\" })\nget_book_section({ slug: \"clean-code\", section: \"quotes\" })\nget_book_section({ slug: \"thinking-fast-and-slow\", section: \"when-to-use\" })\n\nBrowse categories\n\nUse list_categories to see all available categories and how many books each one has.\n\nlist_categories()\n\nSuggest a new book\n\nUse suggest_book to add a book to the generation backlog. Checks for duplicates against published books and existing backlog entries.\n\nsuggest_book({ title: \"Thinking in Bets\", author: \"Annie Duke\", category: \"psychology\" })\n\nSee the backlog\n\nUse list_backlog to see all pending books waiting to be generated, along with their status.\n\nlist_backlog()\n\nGenerate a book summary\n\nUse 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.\n\ngenerate_book()\ngenerate_book({ title: \"Never Split the Difference\" })\n\n\nAfter generating the content, call submit_book to publish it.\n\nPublish a book summary\n\nUse submit_book to publish a generated summary directly to the knowledge base. Call this after generating content with generate_book.\n\nsubmit_book({\n  slug: \"never-split-the-difference\",\n  title: \"Never Split the Difference\",\n  author: \"Chris Voss\",\n  category: \"business\",\n  content: \"---\\ntitle: \\\"Never Split the Difference\\\"\\n...\"\n})\n\nTips\nUse get_book_section instead of get_book when you only need one part — it saves significant tokens.\nUse search_books with natural language queries — the semantic search understands meaning, not just keywords.\nWhen generating a book, follow the template and instructions returned by generate_book exactly. All content must be in English.\nConnections between books use [[slug]] format and must reference existing books only."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/danpalmieri/books-for-agents",
    "publisherUrl": "https://clawhub.ai/danpalmieri/books-for-agents",
    "owner": "danpalmieri",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/books-for-agents",
    "downloadUrl": "https://openagent3.xyz/downloads/books-for-agents",
    "agentUrl": "https://openagent3.xyz/skills/books-for-agents/agent",
    "manifestUrl": "https://openagent3.xyz/skills/books-for-agents/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/books-for-agents/agent.md"
  }
}