Getting it into your agent
This one installs as part of its plugin. Adding the marketplace and installing the plugin brings it with everything else the plugin ships.
/plugin marketplace add sentasity/cadence/plugin install cadenceWrote 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/skills/sentasity/cadence/c-design)<a href="https://agentmods.dev/skills/sentasity/cadence/c-design"><img src="https://agentmods.dev/badge/skills/sentasity/cadence/c-design.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.1 | $0.00109 | $0.03756 |
| Opus 5 | $0.00055 | $0.01878 |
| Sonnet 5 | $0.00022 | $0.00751 |
| Haiku 4.5 | $0.00011 | $0.00376 |
Grade A, and why
c-design 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 6d 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 — 119 lines — stays where its author put it; the contents beside it link to each section on GitHub.
/c-design
You materialize a design folder from the 00-overview.md stub. You write one child doc at a time, pause for user review, and loop back to amend the overview if a child doc surfaces inconsistencies.
Entry contract
Requires: the design artifact for {yyyy-mm-dd-slug} exists — check via skills/_shared/storage-resolution.md (artifact_exists) — and its 00-overview, read via read_artifact, carries status: draft and a populated Doc index; do not assume a <paths.designs>/…/00-overview.md file path.
Refuses when: overview missing, status ≠ draft, empty doc index, or the stub carries an "Open questions" block (Invariant 1 violation — stub was written prematurely).
Folder layout (every design)
<paths.designs>/
{yyyy-mm-dd-slug}/
00-overview.md
00a-plain-english.md
01-<topic>.md, 02-…
95-visual-contract.md # opt-in
mockups/01-<slug>.html, 02-… # with 95; default location, see mockups.dir
97-infrastructure-inventory.md # opt-in
98-architecture-diagrams.md # opt-in
99-out-of-scope.md
Reserved slots: 00-overview, 00a-plain-english, 95-visual-contract, 97-infrastructure-inventory, 98-architecture-diagrams, 99-out-of-scope. Refuse to scaffold conflicting names (a conflicting 95-* name included). Each slot is materialized per skills/_shared/storage-resolution.md (write_doc), which the layer maps to a <slot>.md file on the filesystem backend and to a titled sub-page on the notion backend; the folder layout above is the filesystem view only.
Frontmatter
See skills/_shared/frontmatter.md. Design overview carries lifecycle; child docs carry only title:.
Writing flow
- Read the stub via
skills/_shared/storage-resolution.md(read_artifact). List the proposed doc index. When the overview describes significant user-facing UI/UX work and the doc index lacks95-visual-contract, offer the slot in the same confirmation (see Visual contract and mockups); when significance is genuinely unclear, ask; a mostly-backend design with an incidental UI touch gets no offer. Confirm with user: "Write00a-plain-english.mdnext, then01-<x>,02-<y>. Sound right?" Then ask the generation-mode question (see Generation mode). Config values (authoring.*) come from runningnode "${CLAUDE_PLUGIN_ROOT}/scripts/resolve-config.js"(contract inskills/_shared/config-resolution.md; never read config files directly). - Write child docs per chosen mode. Each doc is written to its reserved slot per
skills/_shared/storage-resolution.md(write_doc); do not open or path-compute a<paths.designs>/…/<slot>.mdfile.- All-at-once: dispatch one fresh generator agent per technical child doc in parallel (up to
authoring.max_parallel). Every generator prompt names the resolved storage backend and the matching syntax reference:skills/_shared/obsidian-format.mdalways, plusskills/_shared/notion-translation.mdwhen the backend is notion (so generators author callouts as native<callout>blocks, not obsidian syntax). After all complete, dispatchcadence-doc-consistencyonce over the set for a consistency sweep (see Generation mode). Then generate00a-plain-english.mdlast. - One-by-one: write one child doc, then proceed to step 3.
- Inline: the main session writes every technical child doc itself, sequentially, via write_doc — no generator sub-agents, no per-doc pause, no
cadence-doc-consistencysweep (a single author holds the whole context; Invariant 2 still applies in full). Then generate00a-plain-english.mdlast and continue at step 8.
- All-at-once: dispatch one fresh generator agent per technical child doc in parallel (up to
- Pause after each doc (one-by-one mode only). "
<filename>written. Review and tell me to continue, revise, or stop." Never auto-write the next file in this mode. In all-at-once mode, thecadence-doc-consistencysweep is the single pause point after parallel generation. - Invariant 2 — consistency re-litigation. While drafting any child doc, if a question surfaces that contradicts or refines a decision in the overview or sibling, STOP writing. Surface the conflict. Ask the user to resolve. On resolution: amend overview's decisions log, amend affected siblings, update
updated:on overview, then resume. - OOS additions during design. Any decision-not-to-do lands in
99-out-of-scope.mdimmediately with rationale + wikilink. Never deferred. 00a-plain-english.mdis written last. Sections (in order): What this feature does in one paragraph → The normal cycle → What the user sees → What can go wrong → How we'll know it's working → Lifecycle diagram → TL;DR. Length target: 400-700 lines for complex designs.- 97 / 98. Filled when the doc index includes them. 97 lists every piece of infra (existing + new), one line each, citing files/services. 98 holds dense mermaid diagrams; lighter narrative diagrams live in 00a per convention.
- Resolve cross-references. After every doc in the artifact exists, call
skills/_shared/storage-resolution.md(resolve_links) once over the artifact to turn[[…]]wikilinks into Notion page mentions. Backend-neutral: a no-op on the filesystem backend, the mention second pass on notion (seeskills/_shared/notion-translation.md). - Self-review pass (see below). Read the written docs back via
skills/_shared/storage-resolution.md(read_artifact) and run a final pass over the whole artifact. - Flip status to
in-reviewperskills/_shared/storage-resolution.md(set_status), which also bumpsupdated:. Print: "Design ready for review. Walk through it and tell me when to mark itapproved." - Status
approved. User-driven only. User says "approved" → flip status perskills/_shared/storage-resolution.md(set_status); when the design has a95-visual-contractslot, rewrite its freeze record fromfrozen: nonetofrozen: NN(the latest version) via write_doc in the same moment: an approved design with a 95 slot always names a frozen version, the invariant/c-planrelies on. Post-approval mockup changes are design drift under the existing drift rules, never a silent new version. Then print: "Run/c-planto write the implementation plan."
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.
- 6d ago First seen · 119 lines · 0 tokens per session scan A c66079a85530
c-design is a skill published in the GitHub repository sentasity/cadence (1 stars, last pushed 11d ago), licensed MIT. It adds 109 tokens to every session and 3,756 once invoked, about $0.0005 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-31.
Other skills, from other repositories
fidelity-gate
Build a UI against a frozen visual reference without drift - an inventory extracted before any code, a relics list, and a gate that MEASURES computed styles on a fixture carrying the reference's own data. Use when a mockup, design spec or screenshot is the contract.
figma-fetch
Extract frame/component structure and all visible text from a Figma design URL. Use whenever a prompt or a fetched issue contains a figma.com/design or figma.com/file link.
design
Create a doc-as-code design package from a PRD or SPEC. Conditionally generates C4 diagrams (Context/Container/Component), sequence diagrams, ER diagram + Data Dictionary, OpenAPI 3.0, AsyncAPI 3.0, ADRs, domain glossary, state diagrams, and deployment view as Mermaid-rendered Markdown files. Use when PM mentions…
self-improve
Self-improve this skills repo — surface and (safely) apply quality improvements across four parallel read-only lenses (Clarity, Leanness, Coverage, Ergonomics). Sibling of /self-audit — audit fixes rule violations, improve raises quality where no rule is broken. Local meta-skill, independent of the /task: pipeline.
self-audit
Self-audit this skills repo against CLAUDE.md invariants, the artifact contract, and README/CLAUDE.md/docs sync via three parallel read-only subagents. Local meta-skill — independent of the /task: pipeline.
designer
Settle the look before the pixels — audience and context first, then the base and the delta, taste settled by looking at real states, accessibility as the floor, one design language committed to DESIGN.md as tokens with roles. A command the user types, for work with an interface someone will see; standalone, no other…