Truth-Check
Computed Counts
| Metric | Computed Value | Verification Command |
|---|---|---|
| JSON schemas | 67 | find core-x/schemas -name '*.json' | wc -l |
| UI modes | 14 | ls core-x/ui/src/modes/ | wc -l |
| Services in manifest | 10 | python3 -c "import json; d=json.load(open('core-x/config/services.manifest.json')); print(len(d['services']))" |
| Museum exhibits | 21 | find ~/kbllr-museum/exhibits -maxdepth 2 -name exhibit.manifest.json | wc -l |
Last Generated
2026-03-04T12:20:57.320Z
How It Works
The docgen.mjs script reads the Core-X directory and counts files matching known patterns. If a directory is missing (e.g., museum not cloned), the value shows “N/A”.
These counts should match claims in PROJECT_GUIDE.md. If they don’t, either the guide is stale or the source files changed.
Manual Verification
Run these in the Core-X repo root:
# Schema countfind core-x/schemas -name '*.json' | wc -l
# Mode countls core-x/ui/src/modes/ | wc -l
# Exhibit count (requires kbllr-museum cloned)find ~/kbllr-museum/exhibits -maxdepth 2 -name exhibit.manifest.json | wc -l
# Service countpython3 -c "import json; d=json.load(open('core-x/config/services.manifest.json')); print(len(d['services']))"
# Tracked dirsgit ls-tree --name-only HEAD