← ClaudeAtlas

domain-modellisted

Build and sharpen a project's domain model — the `CONTEXT.md` glossary of terms and the `docs/adr/` record of architectural decisions. Use when the user wants to pin down terminology or a ubiquitous language, asks "what should we call this", says the glossary is wrong or missing a term, wants to record or revisit an architectural decision ("write an ADR", "record why we did this"), or when another skill needs the model changed rather than merely read. Also use mid-design, the moment a term or a hard-to-reverse decision crystallises. NOT for reading `CONTEXT.md` for vocabulary — that is a habit every skill has, not a reason to load this one.
ltatarev/skills · ★ 0 · AI & Automation · score 65
Install: claude install-skill ltatarev/skills
# Domain Model Own the project's shared language and its recorded decisions. This is the *active* discipline: challenging terms, inventing scenarios that break them, and writing the glossary and the ADR down the moment they crystallise — not after the feature ships, when the reasoning is gone. Two artifacts, and they do not overlap: | File | Holds | Never holds | | --- | --- | --- | | `CONTEXT.md` | What the project's nouns *mean* | Implementation, structure, plans, TODOs | | `docs/adr/NNNN-slug.md` | Why a hard-to-reverse decision was made | Anything easy to reverse or unsurprising | ## Ground yourself first Read before writing. The model that already exists outranks the one in your head. 1. Look for `CONTEXT-MAP.md` at the root. If it exists, the repo has **multiple contexts** — read it to find which `CONTEXT.md` the current topic belongs to, and ask if it is genuinely unclear. 2. Otherwise read the root `CONTEXT.md`. If neither exists, the repo has no model yet — create files **lazily**, when the first term or decision actually lands, never as an empty scaffold. 3. Skim `docs/adr/` for decisions that already constrain the topic. A term you are about to coin may already be settled there under another name. ```text Single context (most repos) Multiple contexts / / ├── CONTEXT.md ├── CONTEXT-MAP.md ├── docs/adr/ ├── docs/adr/ ← system-wide │ ├── 0001-….md