Agent skill
ingest-book
Manage book library via Readarr, search for books, and monitor downloads. Handles service health checks and API interactions. Part of Horus's learning pipeline.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/ingest-book
Metadata
Additional technical details for this skill
- short description
- Book ingestion via Readarr library management
SKILL.md
ingest-book
Manage Readarr library, search for books, and monitor downloads.
Commands
multi-search <term>: Search all configured Newznab indexers in parallel, deduplicate results.nzb-search <term>: Direct Usenet search via NZBGeek only.advanced-search --title/--author/--isbn: GeekSeek-syntax search.list-indexers: Show configured indexers (keys masked).search <term>: Search for books/authors in Readarr.add <term>: Search and add the first matching book (Auto-Learn).health: Check if Readarr is running and healthy.ensure-running: Start Readarr if not running.
Usage
# Multi-indexer search (recommended for technical books)
./run.sh multi-search "High Performance Python"
# Single-indexer NZBGeek search
./run.sh nzb-search "The Art of Exploitation"
# Check configured indexers
./run.sh list-indexers
# Readarr search
./run.sh search "The Art of Exploitation"
Multi-Indexer Configuration
For best technical book coverage, configure multiple Newznab indexers.
Option 1: JSON config file (~/.config/ingest-book/indexers.json)
[
{"name": "NZBGeek", "api_url": "https://api.nzbgeek.info/api", "api_key": "your-key"},
{"name": "DrunkenSlug", "api_url": "https://api.drunkenslug.com/api", "api_key": "your-key"},
{"name": "Althub", "api_url": "https://api.althub.co.za/api", "api_key": "your-key"}
]
Option 2: NEWZNAB_INDEXERS env var (same JSON format)
Option 3: Legacy single-indexer (NZBGeek only)
Set NZBD_GEEK_API_KEY or NZBGEEK_API_KEY in .env.
Readarr Configuration
- Readarr Path:
~/workspace/experiments/Readarr/Readarr - Data Path:
~/workspace/experiments/Readarr/data - Port: 8787
- API Key:
READARR_API_KEYenv var (optional for localhost in some configs)
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?