# Send Books to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "books",
    "name": "Books",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/jeffaf/books",
    "canonicalUrl": "https://clawhub.ai/jeffaf/books",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/books",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=books",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "books",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-30T23:47:47.224Z",
      "expiresAt": "2026-05-07T23:47:47.224Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=books",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=books",
        "contentDisposition": "attachment; filename=\"books-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "books"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/books"
    },
    "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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/books",
    "downloadUrl": "https://openagent3.xyz/downloads/books",
    "agentUrl": "https://openagent3.xyz/skills/books/agent",
    "manifestUrl": "https://openagent3.xyz/skills/books/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/books/agent.md"
  }
}
```
## Documentation

### Book Lookup

CLI for AI agents to search and lookup books for their humans. "What's that fantasy series about the magic university?" — now your agent can answer.

Uses Open Library API. No account or API key needed.

### Usage

"Search for books called The Name of the Wind"
"Find books by Patrick Rothfuss"
"Tell me about work ID OL27448W"
"Who is author OL23919A?"

### Commands

ActionCommandSearchbooks search "query"Get book detailsbooks info <work_id>Get author infobooks author <author_id>

### Examples

books search "the name of the wind"     # Find books by title
books search "author:brandon sanderson" # Search by author
books info OL27448W                     # Get full details by work ID
books author OL23919A                   # Get author bio and works

### Output

Search output:

[OL27448W] The Name of the Wind — Patrick Rothfuss, 2007, ⭐ 4.5

Info output:

📚 The Name of the Wind
   Work ID: OL27448W
   First Published: March 27, 2007
   Subjects: Fantasy, Magic, Coming of Age

📖 Description:
[Full description text]

🖼️ Cover: https://covers.openlibrary.org/b/id/12345-L.jpg

Author output:

👤 Patrick Rothfuss
   Born: June 6, 1973
   Author ID: OL23919A

📖 Bio:
[Author biography]

=== Works ===
[OL27448W] The Name of the Wind, 2007
[OL16313124W] The Wise Man's Fear, 2011

### Notes

Uses Open Library API (openlibrary.org)
No authentication required
Work IDs look like: OL27448W
Author IDs look like: OL23919A
Search supports author:, title:, subject: prefixes
Cover images available in S, M, L sizes

### Agent Implementation Notes

Script location: {skill_folder}/books (wrapper to scripts/books)

When user asks about books:

Run ./books search "title or author" to find work ID
Run ./books info <work_id> for full details
Run ./books author <author_id> for author info and bibliography

Search tips:

Use author:name to search specifically by author
Use title:name to search specifically by title
Use subject:topic to search by genre/subject

Don't use for: E-books, audiobooks, purchasing, or reading the actual content.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: jeffaf
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-30T23:47:47.224Z
- Expires at: 2026-05-07T23:47:47.224Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/books)
- [Send to Agent page](https://openagent3.xyz/skills/books/agent)
- [JSON manifest](https://openagent3.xyz/skills/books/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/books/agent.md)
- [Download page](https://openagent3.xyz/downloads/books)