Skip to content

Truth-Check

Computed Counts

MetricComputed ValueVerification Command
JSON schemas67find core-x/schemas -name '*.json' | wc -l
UI modes14ls core-x/ui/src/modes/ | wc -l
Services in manifest10python3 -c "import json; d=json.load(open('core-x/config/services.manifest.json')); print(len(d['services']))"
Museum exhibits21find ~/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:

Terminal window
# Schema count
find core-x/schemas -name '*.json' | wc -l
# Mode count
ls 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 count
python3 -c "import json; d=json.load(open('core-x/config/services.manifest.json')); print(len(d['services']))"
# Tracked dirs
git ls-tree --name-only HEAD