Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add instructions/skovtun/coherent-design-method/agents-mdgit clone --depth 1 https://github.com/skovtun/coherent-design-methodWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/instructions/skovtun/coherent-design-method/agents-md)<a href="https://agentmods.dev/instructions/skovtun/coherent-design-method/agents-md"><img src="https://agentmods.dev/badge/instructions/skovtun/coherent-design-method/agents-md.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00603 | $0.00603 |
| Opus 5 | $0.00302 | $0.00302 |
| Sonnet 5 | $0.00121 | $0.00121 |
| Haiku 4.5 | $0.00060 | $0.00060 |
Grade A, and why
coherent-design-method AGENTS.md scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.
AGENTS.md — Coherent Design Method
How AI agents should work with this codebase.
Project Structure
packages/
cli/ # @getcoherent/cli — CLI tool (coherent init/chat/preview/export)
core/ # @getcoherent/core — Generators, types, managers
docs/ # Case studies, documentation
.bmad-core/ # BMAD agent templates and checklists
.cursor/rules/ # Cursor AI rules (BMAD agents, UI generation)
Development Workflow
Before coding
- Write a failing test (RED)
- Implement the fix (GREEN)
- Refactor if needed (REFACTOR)
- Run
pnpm test— must be all green before commit
Commands
pnpm build # Build all packages
pnpm test # Run all tests (vitest)
pnpm lint # ESLint
pnpm typecheck # TypeScript strict check
Testing
- Tests live next to source:
foo.ts→foo.test.ts - Framework: vitest
- Every bug fix MUST have a regression test
- Run tests before every commit
CI Pipeline
Build → Lint → Typecheck → Test (all must pass)
Architecture Decisions
Packages
- core: Pure logic — generators, schemas, managers. No side effects, no I/O prompts.
- cli: User-facing — commands, AI providers, file I/O, spinners.
Key patterns
- Zod schemas validate all AI-generated data with
.transform()for auto-correction autoFixCode()post-processes generated TSX to fix common AI mistakes- Shared components are extracted from pages and registered in
design-system.config.ts - Backups are created after every
coherent chatin.coherent/backups/
Error handling rules
- Every CLI command must have a top-level try/catch
- Never swallow errors silently (no empty
catch {}) - Use
oraspinners — always.fail()or.warn()on error (never leave running) - API rate limits:
maxRetries: 1to fail fast
Common AI generation bugs to guard against
</>/&HTML entities in JavaScript code- Non-existent lucide-react icon names (validate against package exports)
- Routes without leading
/(auto-fix in Zod schema) - Dynamic routes
[id]in navigation links (filter out) - Missing
"use client"when hooks are used
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 70 lines · 603 tokens per session scan A 67ab8eb64281
coherent-design-method AGENTS.md is an instructions file published in the GitHub repository skovtun/coherent-design-method (21 stars, last pushed 1mo ago), licensed MIT. It adds 603 tokens to every session, about $0.0030 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other instructions, from other repositories
story-ui CLAUDE.md
Instructions for southleft/story-ui, covering story ui - ai assistant project guide, what is story ui?, core value proposition, quick reference and important files.
project_rules CLAUDE.md
Claude Code instructions for acidvegas/project_rules, covering ai behavior, ai response optimization, examples, directory structure and file headings.
figma-console-mcp CLAUDE.md
Claude Code instructions for southleft/figma-console-mcp, covering figma console mcp, build & test, release process, known issues and architecture.
starwind-ui AGENTS.md
Instructions for starwind-ui/starwind-ui, covering agents.md, project shape, useful commands and contribution conventions.
openbridge-webcomponents line-area-charts.instructions.md
Instructions for Ocean-Industries-Concept-Lab/openbridge-webcomponents, covering line/area charts & gauge trend, architecture overview, key principle: logic in base class, subclasses stay thin, base class architecture and line graph (non-filled).
openbridge-webcomponents integration-systems.instructions.md
Instructions for Ocean-Industries-Concept-Lab/openbridge-webcomponents, covering integration system components, obc-integration-button is the shared primitive, conventions and icon-heavy stories.