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.
80
100%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
Passed
No findings from the security scan
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.