Install
$ agentstack add skill-canvas-xxx-agent-skills-domain-modeling ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
Domain Modeling
Actively build and sharpen the project's domain model as you design. Challenge terms, invent edge-case scenarios, and write the glossary and decisions down the moment they crystallize.
Merely reading CONTEXT.md for vocabulary is not this skill — that is a one-line habit any skill can do. This skill is for when you are changing the model, not consuming it.
When to Use
Use this skill when the domain model itself is in play: pinning down terminology, resolving a contested or overloaded term, naming a new concept, recording a hard architectural decision as an ADR, or when another skill needs the shared glossary maintained as it works.
When Not to Use
- Reading existing vocabulary to orient a task — any skill can read
CONTEXT.mddirectly - Scaffolding the
.context/folder for a new project — usesetup-contextinstead - Reviewing or stress-testing a plan without changing the model — use
scrutinizeorgrillinginstead
Artifacts
- Produces:
CONTEXT.md(domain glossary, fixed at repo root); ADRs at theadr-dirkey path — seereferences/artifact-paths.md(default.context/adr/) - Consumes:
.context/project.md,CONTEXT.md,CONTEXT-MAP.md,.context/output-paths.md(if present, for theadr-diroverride)
> CONTEXT.md is the domain glossary — terminology only, no implementation details. If your project also has .context/project.md (a broader onboarding brief), the two coexist: read .context/project.md for goals and tech stack; write CONTEXT.md for domain vocabulary.
File Structure
Most repos have a single context:
/
├── CONTEXT.md
├── .context/
│ └── adr/
│ ├── 0001-event-sourced-orders.md
│ └── 0002-postgres-for-write-model.md
└── src/
If a CONTEXT-MAP.md exists at the root, the repo has multiple contexts. The map points to where each one lives:
/
├── CONTEXT-MAP.md
├── .context/
│ └── adr/
├── src/
│ ├── ordering/
│ │ ├── CONTEXT.md
│ │ └── .context/adr/
│ └── billing/
│ ├── CONTEXT.md
│ └── .context/adr/
Create files lazily — only when you have something to write. If no CONTEXT.md exists, create one when the first term is resolved. If no .context/adr/ exists (or whatever path adr-dir resolves to — see references/artifact-paths.md), create it when the first ADR is needed.
During the Session
Challenge against the glossary
When the user uses a term that conflicts with existing language in CONTEXT.md, call it out immediately: "Your glossary defines 'cancellation' as X, but you seem to mean Y — which is it?"
Sharpen fuzzy language
When the user uses vague or overloaded terms, propose a precise canonical term: "You're saying 'account' — do you mean the Customer or the User? Those are different things."
Discuss concrete scenarios
When domain relationships are being discussed, stress-test them with specific scenarios. Invent edge cases that force precision about the boundaries between concepts.
Cross-reference with code
When the user states how something works, check whether the code agrees. If you find a contradiction, surface it: "Your code cancels entire Orders, but you just said partial cancellation is possible — which is right?" The user decides which side is authoritative.
Update CONTEXT.md inline
When a term is resolved, update CONTEXT.md right there. Don't batch — capture terms as they crystallize. Use the format in [references/CONTEXT-FORMAT.md](./references/CONTEXT-FORMAT.md).
CONTEXT.md is terminology only. Do not treat it as a spec, a scratch pad, or a repository for implementation decisions.
Offer ADRs sparingly
Only offer to create an ADR when all three are true:
- Hard to reverse — the cost of changing your mind later is meaningful
- Surprising without context — a future reader will wonder "why did they do it this way?"
- Result of a real trade-off — there were genuine alternatives and you picked one for specific reasons
If any of the three is missing, skip the ADR. Use the format in [references/ADR-FORMAT.md](./references/ADR-FORMAT.md). Write it to the adr-dir key path (default .context/adr/) — see references/artifact-paths.md.
Completion Criteria
Offer to close the session when:
- Major domain entities and their relationships are named and written to
CONTEXT.md - Contested or overloaded terms from the session are resolved
- Any decisions that met the ADR gate are recorded
When these are met, summarize: agreed terms, deferred terms, ADRs written, and the next open question if one remains.
Next Step
Do not close the session until the user confirms the glossary and ADR updates are correct.
- If approved: continue with whichever skill triggered this session — an implementation or planning skill. This skill is usually used as a subroutine of another skill, not run standalone.
- If not approved: if a term is still contested, keep iterating with
grillingbefore recording the decision — do not close the session until approval is explicit.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: ntwrcht
- Source: ntwrcht/blvck-skills
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.