用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/johnalbertini14-glitch/openclaw-skills --skill mycroft命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | mycroft |
| description | EPUB and ebook ingestion, local vector index, and Q&A CLI for books. |
| homepage | https://github.com/fabe/mycroft |
| metadata | {"clawdbot":{"emoji":"📚","requires":{"bins":["mycroft"],"env":["OPENAI_API_KEY"]},"install":[{"id":"npm","kind":"npm","package":"@fs/mycroft","bins":["mycroft"],"label":"Install mycroft (npm)"}]}} |
Use mycroft to ingest EPUBs and ebooks, build a local vector index, and ask questions about a book.
Setup (once)
export OPENAI_API_KEY="..."mycroft config onboardmycroft config resolveCommon commands
mycroft book listmycroft book ingest /path/to/book.epubmycroft book ingest /path/to/book.epub --summarymycroft book ingest /path/to/book.epub --batchmycroft book ingest /path/to/book.epub --batch --summarymycroft book ingest resume <id>mycroft book ingest status <id>mycroft book show <id>mycroft book ask <id> "What is the main conflict?"mycroft book search <id> "mad hatter" --top-k 5mycroft book delete <id> --forcemycroft chat start <id>mycroft chat ask <session> "What does this foreshadow?"mycroft chat repl <session>Notes
mycroft config path to find the config file location.book ask and book search require embeddings and an OPENAI_API_KEY.OPENAI_API_KEY.book search and synthesize answers yourself before using book ask.--summary only when needed.--batch to run embeddings and summaries via the OpenAI Batch API at 50% cost; results may take up to 24 hours. When combined with --summary, summaries are batched first, then embeddings on resume.--batch ingestion, use mycroft book ingest status <id> to check progress and mycroft book ingest resume <id> to complete indexing.mycroft book ingest resume <id> to continue from the last saved chunk.resume automatically re-submits it.--manual or omit confirmations with --force.