← 返回 Skills 市场
ckchzh

Bookworm

作者 BytesAgain2 · GitHub ↗ · v2.0.1 · MIT-0
cross-platform ✓ 安全检测通过
338
总下载
0
收藏
1
当前安装
8
版本数
在 OpenClaw 中安装
/install bookworm
功能描述
Log books, track reading habits, and review reading streaks over time. Use when recording reads, maintaining goals, or analyzing genre preferences.
使用说明 (SKILL.md)

Bookworm

Bookworm v2.0.0 — a productivity toolkit for logging, planning, tracking, reviewing, and organizing your work and reading habits from the command line.

Why Bookworm?

  • Designed for everyday personal productivity use
  • No external dependencies, accounts, or API keys needed — your privacy, your data
  • Simple commands with powerful results
  • All data stored locally in plain-text log files
  • Export to JSON, CSV, or TXT at any time

Commands

Command Usage Description
add bookworm add \x3Cinput> Add a new entry (book, task, note) to your log
plan bookworm plan \x3Cinput> Record a plan or goal for future action
track bookworm track \x3Cinput> Track progress on an ongoing activity
review bookworm review \x3Cinput> Log a review or reflection on completed work
streak bookworm streak \x3Cinput> Record streak data for daily habit tracking
remind bookworm remind \x3Cinput> Set a reminder note for follow-up
prioritize bookworm prioritize \x3Cinput> Mark or log priority items
archive bookworm archive \x3Cinput> Move completed items to the archive
tag bookworm tag \x3Cinput> Add tags or labels to organize entries
timeline bookworm timeline \x3Cinput> Log timeline milestones or events
report bookworm report \x3Cinput> Generate or log a report entry
weekly-review bookworm weekly-review \x3Cinput> Perform a weekly review and log insights
stats bookworm stats Show summary statistics across all log files
export bookworm export \x3Cfmt> Export all data (json, csv, or txt)
search bookworm search \x3Cterm> Search across all log files for a keyword
recent bookworm recent Show the 20 most recent history entries
status bookworm status Health check — version, entry count, disk usage
help bookworm help Show the help message with all commands
version bookworm version Print the current version

All entry commands (add, plan, track, review, streak, remind, prioritize, archive, tag, timeline, report, weekly-review) work the same way:

  • With arguments: saves a timestamped entry to \x3Ccommand>.log and logs to history.log
  • Without arguments: displays the 20 most recent entries from that command's log

Data Storage

All data is stored in ~/.local/share/bookworm/:

  • add.log, plan.log, track.log, etc. — one log file per command
  • history.log — unified activity log across all commands
  • export.json / export.csv / export.txt — generated export files

Each entry is stored as YYYY-MM-DD HH:MM|\x3Cvalue> (pipe-delimited timestamp and content).

Requirements

  • Bash (with set -euo pipefail)
  • Standard Unix utilities: date, wc, du, grep, head, tail, cat
  • No external dependencies, no Python, no API keys

When to Use

  1. Daily reading log — Use bookworm add "Finished Chapter 5 of Sapiens" to maintain a running log of your reading progress day by day.
  2. Habit streak tracking — Use bookworm streak "Day 15 of reading 30min/day" to record consecutive-day habits and review your consistency over time.
  3. Weekly reflection — Use bookworm weekly-review "Read 3 books, favorite was Project Hail Mary" at the end of each week to capture insights and progress.
  4. Priority management — Use bookworm prioritize "Must finish Design Patterns by Friday" to flag high-priority items and review them with bookworm prioritize.
  5. Data export for analysis — Use bookworm export json to export all your logged data into a structured format for further analysis in spreadsheets or scripts.

Examples

# Add a book to your reading list
bookworm add "The Pragmatic Programmer - Hunt & Thomas"

# Plan your reading goals for the month
bookworm plan "Read 4 books in March: 2 fiction, 2 non-fiction"

# Track reading progress
bookworm track "Sapiens - Chapter 8/21 complete"

# Log a book review
bookworm review "Clean Code: Excellent guide to writing maintainable software. 5/5"

# Record a reading streak
bookworm streak "Day 30 - read every day this month!"

# Set a reminder
bookworm remind "Return library books by March 25"

# Tag entries for organization
bookworm tag "Sapiens #non-fiction #history #favorite"

# View summary statistics
bookworm stats

# Search for a specific book or keyword
bookworm search "Sapiens"

# Export everything to CSV
bookworm export csv

# Check system status
bookworm status

Configuration

Data directory: ~/.local/share/bookworm/ (hardcoded, no environment variable override).

Output

All commands print results to stdout. Redirect output to a file if needed:

bookworm stats > my-stats.txt
bookworm export json

Note: This is an original, independent implementation by BytesAgain. Not affiliated with or derived from any third-party project.


Powered by BytesAgain | bytesagain.com | [email protected]

安全使用建议
This skill appears coherent and implements a local CLI journaling tool. Before installing or running it, you may want to: (1) inspect scripts/script.sh yourself (it is plain Bash and writes to ~/.local/share/bookworm); (2) back up or check for any existing data in ~/.local/share/bookworm to avoid overwriting; (3) be aware the data directory is hardcoded (no env override), so entries will be stored in your home directory; and (4) ensure you trust any agent process that may run the skill since the agent can invoke it and will have filesystem access to that directory. There are no network calls or required credentials in the bundle.
功能分析
Type: OpenClaw Skill Name: bookworm Version: 2.0.1 The 'bookworm' skill is a straightforward Bash-based productivity tool for logging reading habits and tasks. It operates entirely locally, storing data in plain-text files within the user's home directory (~/.local/share/bookworm/). Analysis of 'scripts/script.sh' and 'SKILL.md' reveals no network activity, data exfiltration, persistence mechanisms, or malicious execution patterns. While the script lacks advanced input sanitization (e.g., in the JSON export function), these are minor functional bugs rather than intentional security flaws.
能力评估
Purpose & Capability
Name/description (reading logs, stats, exports) align with the included shell script and SKILL.md. Required capabilities (none) are proportionate to the stated purpose.
Instruction Scope
SKILL.md commands map directly to script behavior. The instructions only direct the agent to run local commands and access the hardcoded data directory; there is no instruction to read unrelated system configs, credentials, or transmit data externally.
Install Mechanism
No install spec is provided (instruction-only). A single shell script is bundled; it does not download or execute remote code and relies only on standard Unix utilities.
Credentials
The skill requests no environment variables or credentials. It does read/write files under $HOME (~/.local/share/bookworm), which is expected for a local logger.
Persistence & Privilege
always is false and the skill is user-invocable. It does not request permanent platform-wide privileges or modify other skills or global agent config.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install bookworm
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /bookworm 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v2.0.1
update
v2.0.0
v2.5 standard: Use-when desc, homepage, source, security fix
v1.0.5
old template -> domain-specific v2.0.0
v1.0.4
old template -> domain-specific v2.0.0
v1.0.3
Quality upgrade
v1.0.2
Quality upgrade: custom functionality
v1.0.1
Standards compliance: unique content, no template text
v1.0.0
Initial release
元数据
Slug bookworm
版本 2.0.1
许可证 MIT-0
累计安装 1
当前安装数 1
历史版本数 8
常见问题

Bookworm 是什么?

Log books, track reading habits, and review reading streaks over time. Use when recording reads, maintaining goals, or analyzing genre preferences. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 338 次。

如何安装 Bookworm?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install bookworm」即可一键安装,无需额外配置。

Bookworm 是免费的吗?

是的,Bookworm 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Bookworm 支持哪些平台?

Bookworm 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Bookworm?

由 BytesAgain2(@ckchzh)开发并维护,当前版本 v2.0.1。

💬 留言讨论