Guided reading system for articles and books. Use when user wants to read, continue reading, add a new article/book, check reading list, or manage reading progress. Triggers on keywords like "讀書", "繼續讀", "reading", "閱讀", "書單", "導讀", "下一段".
管理閱讀清單、導讀文章、追蹤進度的系統。
~/.openclaw/workspace/reading/
├── index.json # 閱讀清單索引
├── <slug>-source.md # 原文
└── <slug>.md # 筆記 + 進度
{
"books": [
{
"slug": "dan-koe-fix-life-in-1-day",
"title": "How to Fix Your Entire Life in 1 Day",
"author": "Dan Koe",
"url": "https://...",
"status": "reading",
"totalSections": 12,
"currentSection": 8,
"addedAt": "2026-02-21",
"lastReadAt": "2026-02-22"
}
]
}
status: unread | reading | finishedcurrentSection: 下次要讀的段落編號(1-indexed)web_fetch 抓取內容<slug>-source.md,按段落分節(## 段落 N:標題)<slug>.md 筆記檔,包含:
index.jsonindex.json 確認目前進度(currentSection)<slug>-source.md 讀取對應段落<slug>.md 段落狀態 ⬜ → ✅index.json 的 currentSection 和 lastReadAtindex.json,找 status: "reading" 的書currentSection 開始讀取 index.json,列出所有書的狀態和進度。格式:
📚 閱讀清單
📖 How to Fix Your Entire Life in 1 Day — Dan Koe
進度:7/12 段 | 上次:2026-02-22
📕 [書名] — [作者]
狀態:未讀
index.json 為 source of truth,不靠記憶