← All catalog
BOOK · SOCRATIC DIALOGUES

Apology, Crito, and Phaedo of Socrates (Cary)

Henry Cary's translation collecting three dialogues set around Socrates' trial, imprisonment, and death: his defense (Apology), his refusal to escape (Crito), and his final argument for the soul's immortality (Phaedo). This is the only public-domain source for Crito and Phaedo in this collection. Part of the Socratic primary-source collection. By Plato, translated by Henry Cary (1804-1870). Public domain, sourced from Project Gutenberg ebook 13726 (https://www.gutenberg.org/ebooks/13726).

.00
ONE-TIME PURCHASE
v1
LATEST VERSION
1
CHAPTER
§ CHAPTERS (V1)

Chapter list with paths and sizes. After purchase, install the whole book with one command — mkdir -p ~/.claude/skills && curl -sL …/api/install/apology-crito-phaedo | tar xz or, with the bkstr CLI, npx -y @clawbot678/bkstr install apology-crito-phaedo — see Get Started below.

1 file in archive
BOOK CHAPTERS
  • MDcontent.md279.0 KB
§ GET STARTED

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/apology-crito-phaedo/. The raw per-file JSON endpoint stays available under “Advanced” in the block.

§ INSTALL · ONE COMMAND

Install this book

Fetch and unpack the book into your agent's skills directory with a single command.

BOOK
apology-crito-phaedo
INSTALL
mkdir -p ~/.claude/skills && curl -sL https://bkstr.tmrwgroup.ai/api/install/apology-crito-phaedo | 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/apology-crito-phaedo/. Copy-paste it as-is.

Or with the bkstr CLI (npm):

npx -y @clawbot678/bkstr install apology-crito-phaedo

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/apology-crito-phaedo/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/apology-crito-phaedo/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": "bdf96fc7-abad-418b-809a-0431bf8382a4",
    "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.