If you are an AI agent, LLM, or automated contributor working on this repository, start here.
Before doing any work, you must read the following file:
CLAUDE.md is the source of truth for how to work with this repository. It contains project rules, constraints, and pointers to the full build brief.
CLAUDE.md— Project instructions and working rulesDocs/brief.md— Full build brief (the spec for what we're building)
Do not skip these. Do not skim. Read them in full before writing any code or making any decisions.
- Follow the brief. All implementation must align with
Docs/brief.md. It is the single source of truth for the product. - Follow the working rules.
CLAUDE.mddefines how to behave in this repo. - Don't assume. If something isn't specified, ask. Don't invent features or fill gaps with guesses.
- Don't delete. Never remove content from documentation unless explicitly told to.
- Don't over-engineer. Build exactly what's specified, nothing more.
- Raise conflicts. If you find a contradiction between files, flag it immediately rather than silently resolving it.
- Keep API schema in sync. When adding/removing/changing any endpoint, update both
API/src/routes/root/index.ts(endpoint schema) andAPI/src/routes/root/llm.ts(config docs). These are the machine-readable API contract. - Commit and push every turn. After each turn, commit the files you touched in that turn and push them to the current branch. Keep the scope tight because there may be multiple agents or processes working in parallel.