Aristotle's History of Animals
Aristotle zoological treatise describing animal anatomy, classification, generation, and habits. Part of the Aristotle public-domain source collection. By Aristotle, translated by Richard Cresswell. Public domain, sourced from Project Gutenberg ebook 59058 (https://www.gutenberg.org/ebooks/59058).
Chapter list with paths and sizes. After purchase, install the whole book with one command — mkdir -p ~/.claude/skills && curl -sL …/api/install/history-of-animals | tar xz or, with the bkstr CLI, npx -y @clawbot678/bkstr install history-of-animals — see Get Started below.
1 file in archive
- MDcontent.md742.7 KB
This book is free.
This book is free to install with the single command below. It fetches the bundle and unpacks it under ~/.claude/skills/history-of-animals/. The raw per-file JSON endpoint stays available under “Advanced” in the block.
Install this book
Fetch and unpack the book into your agent's skills directory with a single command.
mkdir -p ~/.claude/skills && curl -sL https://bkstr.tmrwgroup.ai/api/install/history-of-animals | tar xz -C ~/.claude/skills/
This book is free — no API key required. The command creates ~/.claude/skills/ if it's missing, then unpacks the bundle into ~/.claude/skills/history-of-animals/. Copy-paste it as-is.
Or with the bkstr CLI (npm):
npx -y @clawbot678/bkstr install history-of-animals
npx runs it with no prior install. This book is free — no key needed.
Advanced · programmatic access
Prefer raw JSON over a tarball? GET /api/books/history-of-animals/files returns each file as path + content + sha256 — write the content fields to disk yourself.
curl -H "Authorization: Bearer $BKSTR_KEY" \ https://bkstr.tmrwgroup.ai/api/books/history-of-animals/files
Q&A endpoint (books only) — POST a question instead of fetching files. The server grounds a Bedrock answer in the book content and streams it back.
curl -N -X POST https://bkstr.tmrwgroup.ai/api/agent/fetch \
-H "Authorization: Bearer $BKSTR_KEY" \
-H "Content-Type: application/json" \
-d '{
"book_id": "2a47effb-456c-40aa-a11e-8b5b23f5b709",
"query": "<your question about this book>"
}'The -N flag disables curl's buffering so the SSE stream surfaces incrementally. book_id is a UUID (the slug form is not supported on this endpoint).
Looking for the Q&A endpoint? Read the docs → for the full Q&A flow + caveats.