Book Sum

v1.0.0

Generate detailed, complete book summaries with key ideas, full narratives, actionable takeaways, and a comprehensive, readable overview.

0· 158·1 current·1 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for heardlyapp/book-sum.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Book Sum" (heardlyapp/book-sum) from ClawHub.
Skill page: https://clawhub.ai/heardlyapp/book-sum
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Bare skill slug

openclaw skills install book-sum

ClawHub CLI

Package manager switcher

npx clawhub@latest install book-sum
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name, description, SKILL.md, and index.js all describe the same behavior: generating extended summaries and podcast scripts from a provided summary. There are no unexpected environment variables, binaries, or remote endpoints that would be unrelated to the stated purpose. (Note: the skill operates only on the 'summary' text you supply — it does not fetch full book texts.)
Instruction Scope
SKILL.md instructs the agent to instantiate and call generateTextSummary/generateFullSummary, which matches the code. The instructions do not ask the agent to read arbitrary files, environment variables, or network endpoints. They do not collect or transmit data beyond the returned summary objects.
Install Mechanism
There is no explicit install spec (lowest-risk pattern), but the package includes code files (index.js, package.json). This is coherent for a simple JS skill; installation via the normal registry/installer would place that code on disk. No external downloads or executables are specified.
Credentials
The skill declares no required environment variables, credentials, or config paths and the implementation does not access any. The requested environment access is minimal and proportional to the task.
Persistence & Privilege
The skill does not request always:true and makes no modifications to other skills or system-wide settings. It has no special persistence or elevated privileges.
Assessment
This skill appears to simply reformat and expand whatever 'summary' text you give it into longer summaries and podcast scripts — it does not fetch books or access external services. If you expected the skill to produce full book-text summaries from a title/author alone, note that it requires you to provide the summary text (it will not download copyrighted works). Review the included index.js if you want to confirm there are no network calls in a future version. If you install, you can safely run it in a sandbox to verify behavior before granting it broad access.

Like a lobster shell, security has layers — review code before you run it.

latestvk970exdxvz7ntec7w1t7dvmfn583crj5
158downloads
0stars
1versions
Updated 1mo ago
v1.0.0
MIT-0

book-sum

Generate extended summaries of books with full content and key ideas.

What it does

  • Return complete book summaries (no truncation)
  • Extract 3 key ideas with full narratives
  • Create actionable takeaways
  • Format as readable text summary
  • Provide comprehensive overview

Installation

clawhub install book-sum

Usage

const BookSumSkill = require('book-sum');
const skill = new BookSumSkill();

const result = skill.generateTextSummary({
  title: 'Atomic Habits',
  author: 'James Clear',
  summary: 'Small changes compound into big results...'
});

Output

Extended summary with:

  • Full book summary
  • 3 Key Ideas (complete content)
  • Actionable takeaways
  • Comprehensive overview

License

MIT

Comments

Loading comments...