Back to Registry View Author Profile
Official Verified
mycroft
EPUB and ebook ingestion, local vector index, and Q&A CLI for books.
skill-install — Terminal
Install via CLI (Recommended)
clawhub install openclaw/skills/skills/fabe/mycroftOr
mycroft
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 resolve
Common commands
- List books:
mycroft book list - Ingest EPUB:
mycroft book ingest /path/to/book.epub - Ingest with summaries:
mycroft book ingest /path/to/book.epub --summary - Ingest with batch embeddings (50% cheaper):
mycroft book ingest /path/to/book.epub --batch - Ingest with batch summaries + embeddings:
mycroft book ingest /path/to/book.epub --batch --summary - Resume batch ingestion:
mycroft book ingest resume <id> - Check ingestion status:
mycroft book ingest status <id> - Show metadata:
mycroft book show <id> - Ask a question:
mycroft book ask <id> "What is the main conflict?" - Search passages:
mycroft book search <id> "mad hatter" --top-k 5 - Delete book:
mycroft book delete <id> --force - Start chat:
mycroft chat start <id> - Ask in session:
mycroft chat ask <session> "What does this foreshadow?" - Continue chat:
mycroft chat repl <session>
Notes
- Use
mycroft config pathto find the config file location. book askandbook searchrequire embeddings and anOPENAI_API_KEY.- Chat commands require embeddings and an
OPENAI_API_KEY. - Prefer
book searchand synthesize answers yourself before usingbook ask. - Summaries increase ingestion time and cost significantly; enable
--summaryonly when needed. - Use
--batchto 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. - After
--batchingestion, usemycroft book ingest status <id>to check progress andmycroft book ingest resume <id>to complete indexing. - If a non-batch ingest is interrupted, use
mycroft book ingest resume <id>to continue from the last saved chunk. - If a batch fails,
resumeautomatically re-submits it. - For scripted runs, avoid interactive flags like
--manualor omit confirmations with--force.
Metadata
AI Skill Finder
Not sure this is the right skill?
Describe what you want to build — we'll match you to the best skill from 16,000+ options.
Find the right skill Add to Configuration
Paste this into your clawhub.json to enable this plugin.
{
"plugins": {
"official-fabe-mycroft": {
"enabled": true,
"auto_update": true
}
}
}Safety NoteClawKit audits metadata but not runtime behavior. Use with caution.