Use when the user asks to look up online book metadata by ISBN, title, author, publication details, editions, subjects, covers, or Open Library source URLs.
100
100%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
Use this skill to look up public book metadata from Open Library.
lookup_book.py --isbnlookup_book.py --title ... --author ...lookup_book.py --queryresults and include num_found when useful to preserve uncertainty.ISBN lookup:
python3 scripts/lookup_book.py --isbn 9780140328721Title and author lookup:
python3 scripts/lookup_book.py \
--title "Fantastic Mr. Fox" \
--author "Roald Dahl" \
--limit 5Broad query:
python3 scripts/lookup_book.py --query "octavia butler parable sower"source, lookup_type, query, num_found, and results.error and error_code with a non-zero exit code.For exact script arguments, output formats, and error payloads, see references/scripts.md.