TopRank Skills

Home / Claw Skills / 搜索 / Books For Agents
Official OpenClaw rules 36%

Books For Agents

Books for Agents

Stars

0

Installs

0

Status

ACTIVE

Visibility

PUBLIC

安装方式

直接复制以下提示词,发送给你的 AI 助手即可完成安装。

请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 Books For Agents 技能。 若已安装,则直接安装 Books For Agents 技能。

Overview

Skill Key
danpalmieri/books-for-agents
Author
danpalmieri
Source Repo
openclaw/skills
Version
-
Source Path
skills/danpalmieri/books-for-agents
Latest Commit SHA
0727a0f6f256c9046c1fea628fe7ef269caa5dfe

Extracted Content

SKILL.md excerpt

# Books for Agents

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

## Setup

1. 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:

```json
{
  "mcpServers": {
    "books-for-agents": {
      "url": "https://booksforagents.com/mcp"
    }
  }
}
```

2. Once connected, you have access to all tools below.

## What you can do

### 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 waiti...

Related Claw Skills