Home / chinkan / rustfox · .agents/skills/domain-modeling/SKILL.md · GitHub

domain-modeling skillA

This file is byte-identical to the first copy the registry indexed, one of 7 copies on public GitHub. Same content hash, same audit grade.

domain-modeling is agent-read markdown (skill) from chinkan/rustfox: Build and sharpen a project's domain model. Use when discussing codebase terminology, writing or editing a CONTEXT.md, or recording or editing an ADR..

Indexed from public GitHub and served as immutable, content-addressed versions. Install it pinned to an exact SHA-256 with the mdr CLI, and every file is verified against the hash recorded here before it reaches your agent. The deterministic audit below grades the latest version, and the same file always earns the same grade.

What the file says

# Domain Modeling

Actively build and sharpen the project's domain model as you design. This is the *active* discipline: challenging terms, inventing edge-case scenarios, and writing the glossary and decisions down the moment they crystallise. (Merely *reading* `CONTEXT.md` for vocabulary is not this skill: that's a one-line habit any skill can do. This skill is for when you're changing the model, not just consuming it.)

## File structure

Most repos have a single context:

```
/
├── CONTEXT.md
├── docs/
│   └── 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
├── docs/
│   └── adr/                          ← system-wide decisions
├── src/
│   ├── ordering/
│   │   ├── CONTEXT.md
│   │   └── docs/adr/                 ← context-specific decisions
│   └── billing/
│       ├── CONTEXT.md
│       └── docs/adr/
```
…

Read the whole file at its exact version.

How to install

Latest version
mdr add chinkan/rustfox/domain-modeling@git:20260922.53f91f6
Exact content
mdr add chinkan/rustfox/domain-modeling@sha256:327a2b50620e2fd7

Pin to a label to follow the author's releases, or to a sha256 to freeze the exact bytes forever. Either way the resolved hash is written to mdr.lock, and mdr install reproduces it on any machine.

Badge

mdr badge

[![mdr](https://markdownregistry.com/badge/art_3zs7xm4u2leqo3av.svg)](https://markdownregistry.com/a/art_3zs7xm4u2leqo3av)

1 badge views in 30 days

Versions

versioncommittedcommitsizeaudit
git:20260922.53f91f6 latest2026-09-22 53f91f6 3,331 BA view · diff
git:20260714.d9bd5ab2026-07-14 d9bd5ab 3,427 BA view

Audit of the latest version

A  17 of 17 checks passed. Deterministic, no model, same answer every run.
  • pass: Frontmatter block present
  • pass: Frontmatter declares a name
  • pass: Frontmatter declares a description
  • pass: Size between 200 bytes and 200 KB (3331 bytes)
  • pass: No zero-width or bidi control characters
  • pass: No instruction hidden inside an HTML comment
  • pass: No link to an exfiltration or paste host
  • pass: No credential-shaped string
  • pass: No instruction to send local credentials anywhere
  • pass: No text hidden with inline styles
  • pass: No prompt-injection phrasing
  • pass: No curl or wget piped into a shell
  • pass: No recursive delete of root, home or parent
  • pass: No instruction to read or print local credentials
  • pass: No base64 blob over 200 characters
  • pass: No link to a raw IP address
  • pass: No script tag

Source

GitHub

chinkan/rustfox · 9 stars · license MIT · pushed 2026-09-24 · branch main

API

GET https://markdownregistry.com/api/v1/artifacts/art_3zs7xm4u2leqo3av
GET https://markdownregistry.com/api/v1/resolve?ref=chinkan/rustfox/domain-modeling
GET https://markdownregistry.com/api/v1/blob/327a2b50620e2fd70abc6893cd6965e76b20f8d0adb0dc2c8d5eb3845efb643e

Your agent does the legwork. You hear about the deals worth your word. Hand yours the standing instructions at modelranch.com and it joins the network that reads files like this one.

More from chinkan/rustfox

ask-matt skill
chinkan/rustfox · .agents/skills/ask-matt/SKILL.md · Ask which skill or flow fits your situation. A router over the skills in this repo.
git:20260922.53f91f6 · audit A · 9 stars
brainstorming skill
chinkan/rustfox · .agents/skills/brainstorming/SKILL.md · You MUST use this before any creative work - creating features, building components, adding functionality, or modifying…
git:20260408.ae338c2 · audit A · 9 stars
cavecrew skill
chinkan/rustfox · .agents/skills/cavecrew/SKILL.md · Decision guide for delegating to caveman-style subagents. Tells the main thread WHEN to spawn `cavecrew-investigator`…
git:20260804.a62331b · audit A · 9 stars
caveman-commit skill
chinkan/rustfox · .agents/skills/caveman-commit/SKILL.md · Ultra-compressed commit message generator. Cuts noise from commit messages while preserving intent and reasoning…
git:20260804.0abefec · audit A · 9 stars
caveman-compress skill
chinkan/rustfox · .agents/skills/caveman-compress/SKILL.md · Compress natural language memory files (CLAUDE.md, todos, preferences) into caveman format to save input tokens…
git:20260804.0abefec · audit A · 9 stars
caveman-help skill
chinkan/rustfox · .agents/skills/caveman-help/SKILL.md · Quick-reference card for all caveman modes, skills, and commands. One-shot display, not a persistent mode. Trigger…
git:20260804.0abefec · audit A · 9 stars
caveman-review skill
chinkan/rustfox · .agents/skills/caveman-review/SKILL.md · Ultra-compressed code review comments. Cuts noise from PR feedback while preserving the actionable signal. Each comment…
git:20260804.0abefec · audit A · 9 stars
caveman-stats skill
chinkan/rustfox · .agents/skills/caveman-stats/SKILL.md · Show real token usage and estimated savings for the current session. Reads directly from the Claude Code session log —…
git:20260804.0abefec · audit A · 9 stars
caveman skill
chinkan/rustfox · .agents/skills/caveman/SKILL.md · Ultra-compressed communication mode. Cuts output tokens 65% (measured) by speaking like caveman while keeping full…
git:20260804.0abefec · audit A · 9 stars
code-review skill
chinkan/rustfox · .agents/skills/code-review/SKILL.md · Review the changes since a fixed point (commit, branch, tag, or merge-base) along two axes: Standards (does the code…
git:20260922.53f91f6 · audit A · 9 stars
codebase-design skill
chinkan/rustfox · .agents/skills/codebase-design/SKILL.md · Shared vocabulary for designing deep modules. Use when the user wants to design or improve a module's interface, find…
git:20260922.53f91f6 · audit A · 9 stars
design-an-interface skill
chinkan/rustfox · .agents/skills/design-an-interface/SKILL.md · Generate multiple radically different interface designs for a module using parallel sub-agents. Use when user wants to…
git:20260714.d9bd5ab · audit A · 9 stars

Every file in chinkan/rustfox

Other files named domain-modeling

domain-modeling skill
rohitg00/pro-workflow · skills/domain-modeling/SKILL.md · Build the project's shared language and bounded contexts before writing code, so names stay consistent and the agent…
git:20260718.7f7209d · audit A · 2,879 stars
domain-modeling skill
mxyhi/ok-skills · domain-modeling/SKILL.md · Build and sharpen a project's domain model. Use when discussing codebase terminology, writing or editing a CONTEXT.md…
git:20260831.e7f2564 · audit A · 490 stars
domain-modeling skill
asymmetric-al/core · .agents/skills/domain-modeling/SKILL.md · Build and sharpen a project's domain model. Use when the user wants to pin down domain terminology or a ubiquitous…
git:20260709.5ee8b28 · audit A · 383 stars
domain-modeling skill
romiluz13/cc10x · plugins/cc10x/skills/domain-modeling/SKILL.md · Actively build and sharpen a project's domain model — challenge terms against the glossary, sharpen fuzzy language…
git:20260715.7de3f82 · audit A · 164 stars
domain-modeling skill
outlinedriven/outline-driven-development · .devin/skills/domain-modeling/SKILL.md · Use when pinning down domain terminology, maintaining the domain model, or when a term conflicts or needs sharpening.
git:20260905.1f63894 · audit A · 54 stars
domain-modeling skill
akillness/jeo-skills · .agent-skills/domain-modeling/SKILL.md · Build and sharpen a project's domain model. Use when discussing codebase terminology, writing or editing a CONTEXT.md…
v1.0 · audit A · 47 stars
domain-modeling skill
etr/groundwork · skills/domain-modeling/SKILL.md · Use when designing a product or feature and the project lacks shared, agreed terminology - builds and maintains a pure…
git:20260622.3609064 · audit A · 42 stars
domain-modeling skill
outlinedriven/odin-claude-plugin · plugins/odin-knowledge/skills/domain-modeling/SKILL.md · Use when pinning down domain terminology, maintaining the domain model, or when a term conflicts or needs sharpening.
git:20260904.2014e73 · audit A · 38 stars

Browse by kind, by grade A, or by owner.