coco-research/brain:init
Initialize a project_brain.db in the current project folder. Creates the database, project record, then scans existing files (CLAUDE.local.md, memory files, docs, emails) to bootstrap the brain with knowledge. Smart enough to handle re-runs — skips what already exists and only processes new/changed files.
npx skills add https://github.com/coco-research/coco --skill brain:init
Sets up a new project_brain.db in the current working directory and bootstraps it from existing project knowledge.
Run:
python3 ~/.claude/skills/brain/scripts/brain/brain_cli.py info
Run:
python3 ~/.claude/skills/brain/scripts/brain/brain_cli.py init
Ask the user:
Then run:
python3 ~/.claude/skills/brain/scripts/brain/brain_cli.py add-project "{name}" --slug {slug} --desc "{description}"
If the project has sub-scopes (like ProjectA-Phase1 and ProjectA-Phase2 under one umbrella), ask if the user wants multiple project records.
Run the scanner to discover what's available:
python3 ~/.claude/skills/brain/scripts/brain/brain_cli.py scan
This returns a JSON report with:
Show the user a summary:
FOLDER SCAN
===========
First scan: yes/no
Files found: NN total (NN new, NN changed, NN unchanged)
Knowledge sources detected:
CLAUDE.local.md: found / not found
CLAUDE.md: found / not found
Memory files: N files (list names)
Documents: N files in docs/
Emails: N files in emails/
Reference docs: N files
If nothing to process (all unchanged): "Everything up to date. No new knowledge to extract." → done.
Process sources in priority order. For each source, read the file, extract structured knowledge, and collect proposed writes. Do NOT write to the brain yet — collect everything first.
If found, read the full file. Extract:
decisions (with date, decision text, decided_by if mentioned)person entities (with metadata like role, email, team if mentioned)system entities (e.g., Snowflake, Postgres, Datadog)team entitiesdocument entities for key docsevents (with date, type, title)Each memory file has frontmatter (name, description, type) and content. Read each file:
decisions or context to enrich existing entitiessystem or document entities with metadataFor each file in docs/, emails/, and Reference Doc/:
document entity with metadata: {"path": "relative/path", "type": "doc|email|reference", "size": N}Same extraction as CLAUDE.local.md but lower priority (may overlap).
Show proposed writes:
BRAIN BOOTSTRAP SUMMARY
========================
Project: {name} ({slug})
From CLAUDE.local.md:
Entities: N (list: name [type])
Decisions: N (list: short text)
Events: N (list: title)
From memory files:
Decisions: N (list: short text)
Entities: N (list: name [type])
Document inventory:
Documents: N (list: filename [doc|email|reference])
Total proposed writes: NN
Ask: "Write all to brain? [Y/n/adjust]"
On confirmation, write in this order using Python:
import sys
sys.path.insert(0, '$HOME/.claude/skills/brain/scripts')
from brain.schema import get_db
from brain.operations import *
upsert_entity (idempotent, safe to re-run)create_relationship (also idempotent)create_decision (check for duplicates by matching decision text before inserting)create_event (check for duplicates by matching title + date)upsert_entity with type="document"After all writes, sync to MemPalace and brain.json:
from brain.memory_bridge import full_sync
full_sync("project_brain.db", project_slug)
After writes complete, update the manifest:
python3 ~/.claude/skills/brain/scripts/brain/brain_cli.py scan-update
BRAIN INITIALIZED
=================
DB: {path}/project_brain.db
Project: {name} ({slug})
Schema: v1 (11 tables)
Bootstrapped from existing knowledge:
Entities: +N (total: N)
Decisions: +N (total: N)
Events: +N (total: N)
Documents: +N (total: N)
Relationships: +N (total: N)
Manifest updated: N files tracked
Next: Run /brain-update at end of session, or /brain-rescan when files change.
After completing brain writes (Step 6) and confirming the manifest is updated (Step 6
scan-update), initialize the knowledge engine for this project.
First, register the project with the knowledge engine:
import sys, os
sys.path.insert(0, os.path.expanduser("~/.coco/knowledge"))
from engine import KnowledgeEngine
engine = KnowledgeEngine()
engine.register_project("{slug}", os.path.abspath("project_brain.db"))
This is required before the cron can harvest the project. (FIX M1: register_project
must be called before running any cron phases.)
Then, bootstrap article generation:
engine.full_refresh("{slug}")
Or equivalently via CLI:
python3 ~/.coco/knowledge/cron.py --run --project {slug} --phases 2,3,5
This runs:
Show the user:
KNOWLEDGE ENGINE
================
Articles generated: N
FTS5 indexed: N
Estimated cost: $0.XXX
Articles written to: ~/.coco/knowledge/articles/
Search with: /brain-wiki search "{project_name}"
Skip this step silently if:
~/.coco/knowledge/ does not exist (knowledge engine not installed)cron.py call fails for any reason (non-blocking — brain init still succeeds)upsert_entity which handles this automatically for entities./brain-update is for (conversation-driven).type field to decide what to extract.scan-update after writes so the next scan is incremental.Take coco-research/brain:init from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.