Documentation Index
Fetch the complete documentation index at: https://docs.enagrams.com/llms.txt
Use this file to discover all available pages before exploring further.
Decisions are Informational
A decision records why you chose something. It’s searchable. It’s surfaced insync. It has no enforcement teeth. That’s deliberate — most architectural decisions are soft guidance.
Conventions are Enforceable
A convention is a team rule with a tier:| Tier | Behavior |
|---|---|
must | Hard gate on PreToolUse — edits to matching files are blocked until the convention is superseded or marked stale. |
should | Surfaced as advisory context in sync. Agents see it, but writes aren’t blocked. |
may | Recorded for awareness. No UI intrusion. |
convention_propose. Discover the ones that will gate you with convention_list.
Why Two Tools?
Decisions are cheap and plentiful — agents should record dozens per week. Conventions are load-bearing and rare — a few per quarter for “must” tier, more for “should”. Keeping them separate keeps everydecide call low-stakes while giving the team a real escalation path when a pattern needs enforcement.
Staleness
Every decision auto-links to the symbols it mentions. When those symbols change in git, Enagrams marks the decision stale.decisions_stalelists themdecision_reaffirmmarks them fresh again (when the decision still holds)- Recording a new decision with the same title (or an explicit
supersedeslink in the web UI) ends the stale one
Scope
affected_files accepts globs. Keep them narrow:
- Good:
src/routes/**/*.ts(all API routes) - Too broad:
**/*.ts(whole codebase — every edit will hit this convention)
must conventions produce angry teammates.