coherent-design-method AGENTS.md

coherent-design-method AGENTS.md is an instructions file for Codex, OpenCode from skovtun/coherent-design-method. It costs 603 tokens per session, scanned A, original, MIT.

Project instructions for Coherent Design Method, a codebase organized as several related packages in one repository. They describe its structure, development process, tests, and required checks.

In plain words
What is it for?
Use them when modifying the CLI, core package, documentation, or related configuration. They guide builds, tests, linting, type checks, regression tests, and package boundaries.
Why use it?
They give a coding agent project-specific rules, so it knows where code belongs and which checks must pass before changes are committed. The test process follows TDD: write a failing test, make it pass, then improve the code.

Instructions file for CodexOpenCode

Install

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.

agentmods
npx agentmods add instructions/skovtun/coherent-design-method/agents-md
Clone the repo
git clone --depth 1 https://github.com/skovtun/coherent-design-method

Made for: Codex, OpenCode.

Wrote 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.

agentmods badge for coherent-design-method AGENTS.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/skovtun/coherent-design-method/agents-md.svg)](https://agentmods.dev/instructions/skovtun/coherent-design-method/agents-md)
Your own site
<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>
Per session 603 This file is loaded in full into every session.
When invoked 603 The same file — it is already loaded in full.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

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.

ModelPer sessionOnce 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

Measured 4d ago against content hash 67ab8eb64281, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

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.

AGENTS.md · 70 lines

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

  1. Write a failing test (RED)
  2. Implement the fix (GREEN)
  3. Refactor if needed (REFACTOR)
  4. 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.tsfoo.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 chat in .coherent/backups/

Error handling rules

  • Every CLI command must have a top-level try/catch
  • Never swallow errors silently (no empty catch {})
  • Use ora spinners — always .fail() or .warn() on error (never leave running)
  • API rate limits: maxRetries: 1 to fail fast

Common AI generation bugs to guard against

  • &lt; / &gt; / &amp; 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

Read the full file on GitHub · 70 lines

Changes

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.

  1. 4d ago First seen · 70 lines · 603 tokens per session scan A 67ab8eb64281

Subscribe to this mod's changes

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.

Related

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.

southleft/story-ui · 4,542 tokens

project_rules CLAUDE.md

Claude Code instructions for acidvegas/project_rules, covering ai behavior, ai response optimization, examples, directory structure and file headings.

acidvegas/project_rules · 4,004 tokens

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.

southleft/figma-console-mcp · 415 tokens

starwind-ui AGENTS.md

Instructions for starwind-ui/starwind-ui, covering agents.md, project shape, useful commands and contribution conventions.

starwind-ui/starwind-ui · 701 tokens

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).

Ocean-Industries-Concept-Lab/openbridge-webcomponents · 4,714 tokens

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.

Ocean-Industries-Concept-Lab/openbridge-webcomponents · 510 tokens