Skip to content

Anthology

What Is the Anthology?

The anthology/ directory is the project’s documentation archive and working library — a structured collection of reports, handoffs, research notes, operational runbooks, templates, and historical records gathered across the entire Core-X ecosystem. It is not a code directory; it is a knowledge base.

Git Tracking Policy

The .gitignore uses a deny-all-then-allow pattern for anthology:

  • Tracked: directory structure, README.md files at every level, INDEX.md
  • Gitignored: all other content (reports, templates, filled documents, PDFs, logs)

This means git clone gives you the skeleton; the actual documents live locally and are populated through migration scripts or manual workflows.

Directory Map

DirectoryPurpose
reports/System audits, alignment notes, ecosystem status snapshots
handoffs/Baton passes between agents/teams — start here alongside reports
ops/Operations notes, implementation runbooks
manuals/How-to guides and operator notes
research/Research notes, explorations, curated Apple ML papers (2024-2026)
wiki/Curated wiki pages
logs/Execution and audit logs
diagrams/Visual assets
council/Council material (paths may move)
docs-WIP/Working docs; docs-WIP/archive/ is historical
scripts/Anthology tooling (MIGRATE_FILES.zsh, RENAME_PLAN.zsh)
archivai-documentation-templates/Template library for structured agent documentation

Generated Indexes

  • INDEX.md — auto-built catalog of 211 imported documents with source paths
  • COREX_ANTHOLOGY_INDEX.md / .json / .html — generated catalog in multiple formats
  • anthology.feed.json — feed format for programmatic consumption

Archiva Templates

The archivai-documentation-templates/ subdirectory holds 24 templates across three categories:

CategoryCountExamples
Reflective (learning + research)8study archive, process journal, field notes
Technical (development + code)9dev diaries, code studies, prototypes, experiments
Creative (raw + experimental)7WIP, things I tried, digital messbook, studio scraps

Templates follow the workflow: choose category → load _template_{name}.md → fill → save to filled/{agent-id}/{YYYY-MM-DD}_{name}.md.

Agent tiers determine default category: antigravity (gemini-3-pro, claude-opus) → reflective, inferred (claude-code, codex, jules) → technical, local (mlx-llm) → technical.

Truth-Check

Terminal window
# Count imported documents in INDEX.md
grep -c '^\- \[' anthology/INDEX.md
# → 211
# Count tracked READMEs
git ls-files anthology/ | grep README | wc -l
# → 3 (root, archivai-documentation-templates, research)
# List all tracked anthology files
git ls-files anthology/