107 real reports
- Root-level reports
- 62 -- engineering, launch, and governance
.mddocuments at the repository root. - Per-video reports
- 45 --
ceo_report.md,compliance_report.json,fact_check.json, andquality_score.jsonfor each produced video.
Knowledge Brain
Every video Project KAI produces leaves behind real evidence: a CEO report, a compliance report, a fact-check note, a quality score. The Knowledge Brain is the tool that searches across that evidence and the project's own engineering reports. As of the latest data sync (August 11, 2026), it indexes107 real reports. It is not semantic search, it does not maintain a persisted index, and it is notwired into any automatic process today.
.md documents at the repository root.ceo_report.md, compliance_report.json, fact_check.json, and quality_score.json for each produced video.Word-overlap keyword search (lowercase alphanumeric tokens, ranked by intersection count). Not semantic search -- no embeddings, no vector index.
Example, straight from the tool's own source comment: a query like"have we ever used this thumbnail?" will find reports containing the word "thumbnail" -- not reports that discuss the same idea using different words. That's the honest limitation of keyword search, stated plainly rather than papered over.
Production output
Real reports written per video (CEO report, compliance report, fact-check, quality score)
Knowledge Brain search (knowledge_brain/indexer.py)
Human reads the results and decides
This is not an automatic pipeline. Nothing in the real production or publishing code calls the Knowledge Brain today -- an engineer runs a search directly when they want to check something.
knowledge_brain/indexer.py -- all_reports(), search()root_report, topic_report:<video-id>