{
  "schemaVersion": "1.0",
  "item": {
    "slug": "book-reader",
    "name": "Book Reader - Learn & Grow Every Day",
    "source": "tencent",
    "type": "skill",
    "category": "内容创作",
    "sourceUrl": "https://clawhub.ai/josharsh/book-reader",
    "canonicalUrl": "https://clawhub.ai/josharsh/book-reader",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/book-reader",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=book-reader",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "book-reader.sh",
      "skill.json"
    ],
    "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. 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."
        },
        {
          "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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/book-reader"
    },
    "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/book-reader",
    "agentPageUrl": "https://openagent3.xyz/skills/book-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/book-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/book-reader/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. 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."
      },
      {
        "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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "book-reader",
        "body": "Read books (epub, pdf, txt) from various sources with progress tracking."
      },
      {
        "title": "Purpose",
        "body": "Enable AI agents to read full-length books for learning, summarization, and knowledge extraction."
      },
      {
        "title": "Features",
        "body": "Multiple sources: Anna's Archive, Project Gutenberg, local files\nFormat support: EPUB, PDF, TXT\nProgress tracking: Remember where you left off\nSmart chunking: Read books in digestible sections\nSummary generation: Extract key insights as you read"
      },
      {
        "title": "Tools Required",
        "body": "curl or wget - Download books\npandoc - Convert EPUB to text (optional, fallback to python)\npdftotext (poppler-utils) - Extract PDF text\nPython 3 with ebooklib and beautifulsoup4 (for EPUB parsing)"
      },
      {
        "title": "Search for a book",
        "body": "./book-reader.sh search \"Thinking Fast and Slow\""
      },
      {
        "title": "Download a book",
        "body": "./book-reader.sh download <book-id> [output-file]"
      },
      {
        "title": "Read a book (with progress tracking)",
        "body": "./book-reader.sh read <file> [--from-page N] [--pages N]"
      },
      {
        "title": "Show reading progress",
        "body": "./book-reader.sh status"
      },
      {
        "title": "Installation",
        "body": "# Install dependencies\nsudo apt-get install poppler-utils pandoc  # Linux\n# brew install poppler pandoc  # macOS\n\npip3 install ebooklib beautifulsoup4 lxml\n\n# Make executable\nchmod +x book-reader.sh"
      },
      {
        "title": "Book Sources",
        "body": "Project Gutenberg (70k+ public domain books)\n\nAPI: https://gutendex.com\nFree, legal, no DRM\n\n\n\nAnna's Archive (shadow library)\n\nMillions of books, papers, comics\nLegal gray area depending on jurisdiction\nUse responsibly\n\n\n\nLocal files (your own epub/pdf collection)"
      },
      {
        "title": "Reading State",
        "body": "Progress tracked in ~/.openclaw/workspace/memory/reading-state.json:\n\n{\n  \"currentBook\": \"Thinking, Fast and Slow\",\n  \"file\": \"/path/to/book.epub\",\n  \"totalPages\": 499,\n  \"pagesRead\": 127,\n  \"lastRead\": 1770957900,\n  \"bookmarks\": [50, 200],\n  \"notes\": \"Interesting insight about System 1 vs System 2...\"\n}"
      },
      {
        "title": "Example Workflow",
        "body": "# Find the book\n./book-reader.sh search \"Daniel Kahneman Thinking\"\n\n# Download it\n./book-reader.sh download 12345 ~/books/thinking-fast-slow.epub\n\n# Start reading\n./book-reader.sh read ~/books/thinking-fast-slow.epub --pages 50\n\n# Continue later\n./book-reader.sh read ~/books/thinking-fast-slow.epub --pages 50\n\n# Check progress\n./book-reader.sh status"
      },
      {
        "title": "Privacy & Ethics",
        "body": "Public domain books (Gutenberg): Fully legal\nCopyrighted books: Check your local laws\nConsider buying books you find valuable to support authors\nUse for personal learning, not redistribution"
      },
      {
        "title": "Limitations",
        "body": "PDF OCR quality varies\nDRM-protected books not supported (by design)\nLarge PDFs may be slow to parse\nEPUB formatting may be imperfect in plain text\n\nUse responsibly. Support authors when possible."
      }
    ],
    "body": "book-reader\n\nRead books (epub, pdf, txt) from various sources with progress tracking.\n\nPurpose\n\nEnable AI agents to read full-length books for learning, summarization, and knowledge extraction.\n\nFeatures\nMultiple sources: Anna's Archive, Project Gutenberg, local files\nFormat support: EPUB, PDF, TXT\nProgress tracking: Remember where you left off\nSmart chunking: Read books in digestible sections\nSummary generation: Extract key insights as you read\nTools Required\ncurl or wget - Download books\npandoc - Convert EPUB to text (optional, fallback to python)\npdftotext (poppler-utils) - Extract PDF text\nPython 3 with ebooklib and beautifulsoup4 (for EPUB parsing)\nUsage\nSearch for a book\n./book-reader.sh search \"Thinking Fast and Slow\"\n\nDownload a book\n./book-reader.sh download <book-id> [output-file]\n\nRead a book (with progress tracking)\n./book-reader.sh read <file> [--from-page N] [--pages N]\n\nShow reading progress\n./book-reader.sh status\n\nInstallation\n# Install dependencies\nsudo apt-get install poppler-utils pandoc  # Linux\n# brew install poppler pandoc  # macOS\n\npip3 install ebooklib beautifulsoup4 lxml\n\n# Make executable\nchmod +x book-reader.sh\n\nBook Sources\n\nProject Gutenberg (70k+ public domain books)\n\nAPI: https://gutendex.com\nFree, legal, no DRM\n\nAnna's Archive (shadow library)\n\nMillions of books, papers, comics\nLegal gray area depending on jurisdiction\nUse responsibly\n\nLocal files (your own epub/pdf collection)\n\nReading State\n\nProgress tracked in ~/.openclaw/workspace/memory/reading-state.json:\n\n{\n  \"currentBook\": \"Thinking, Fast and Slow\",\n  \"file\": \"/path/to/book.epub\",\n  \"totalPages\": 499,\n  \"pagesRead\": 127,\n  \"lastRead\": 1770957900,\n  \"bookmarks\": [50, 200],\n  \"notes\": \"Interesting insight about System 1 vs System 2...\"\n}\n\nExample Workflow\n# Find the book\n./book-reader.sh search \"Daniel Kahneman Thinking\"\n\n# Download it\n./book-reader.sh download 12345 ~/books/thinking-fast-slow.epub\n\n# Start reading\n./book-reader.sh read ~/books/thinking-fast-slow.epub --pages 50\n\n# Continue later\n./book-reader.sh read ~/books/thinking-fast-slow.epub --pages 50\n\n# Check progress\n./book-reader.sh status\n\nPrivacy & Ethics\nPublic domain books (Gutenberg): Fully legal\nCopyrighted books: Check your local laws\nConsider buying books you find valuable to support authors\nUse for personal learning, not redistribution\nLimitations\nPDF OCR quality varies\nDRM-protected books not supported (by design)\nLarge PDFs may be slow to parse\nEPUB formatting may be imperfect in plain text\n\nUse responsibly. Support authors when possible."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/josharsh/book-reader",
    "publisherUrl": "https://clawhub.ai/josharsh/book-reader",
    "owner": "josharsh",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/book-reader",
    "downloadUrl": "https://openagent3.xyz/downloads/book-reader",
    "agentUrl": "https://openagent3.xyz/skills/book-reader/agent",
    "manifestUrl": "https://openagent3.xyz/skills/book-reader/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/book-reader/agent.md"
  }
}