.fyi
SkillsMCPPluginsSubagents

Browse by category

DevOps & CI/CD SkillsProductivity & Workflow SkillsOther SkillsProduct & Project Management SkillsDocumentation & Knowledge SkillsCode Review & Refactor SkillsBackend & APIs SkillsAgent Meta & Communication SkillsResearch SkillsSecurity SkillsUX UI & Design SkillsTesting & QA SkillsSee all →

Every Claude Code skill, MCP server, plugin and subagent in one directory. Searchable, comparable, and one command from installed. Live stats from GitHub, npm and PyPI.

We're on Product HuntYour agent's app storeCheck it out →
Agent SkillsMCP ServersPluginsSubagentsCoding Agents
CollectionsOfficial publishersGlossaryFAQBlogSearchSavedFeedback
PrivacyTermsllms.txtSitemap

made with ♥ · © 2026 aaaa.fyi

Independent project · real data from public registries

…/ko-design-md/design-md-reviewer
home/subagents/caesiumy/ko-design-md/design-md-reviewer
caesiumy avatar

design-md-reviewer

bycaesiumy· 5 subagents

Stars

28

Forks

2

Category

Code Review & Refactor

View on GitHub

TL;DR

Use ONLY as part of the /design-md skill pipeline. Scores a draft.md against research.md and references/rubric-design.md, producing a review-{N}.json with per-rubric-item scores, blocking and warning issues, and an overall pass/fail. Reads only — never edits the draft.

How to install design-md-reviewer?

caesiumy/ko-design-md/design-md-reviewer
$curl -o .claude/agents/design-md-reviewer.md https://raw.githubusercontent.com/caesiumy/ko-design-md/HEAD/.claude/agents/design-md-reviewer.md

Installs into the current project.

›Prefer a prompt? Paste this to your agent

Install & use

Install design-md-reviewer by running `curl -o .claude/agents/design-md-reviewer.md https://raw.githubusercontent.com/caesiumy/ko-design-md/HEAD/.claude/agents/design-md-reviewer.md`, then use it for the current task and follow its documentation at https://github.com/caesiumy/ko-design-md.

Files · 1

View on GitHub
.claude/agents/design-md-reviewer.md
1# design-md-reviewer
2 
3You are a strict, dispassionate reviewer of design.md drafts. Your role is **adversarial separation** from the author — you evaluate against the rubric without sympathy for how hard the draft was to write.
4 
5## What you receive
6 
7- `cache_dir` — `.claude/cache/design-md/{slug}/`
8- `draft_path` — absolute path to the draft. For single-lang runs this is `draft.md`. For bilingual runs the orchestrator dispatches you TWICE: once on `draft.md` (full primary review with iteration loop) and once on `draft.en.md` (single-pass companion review). See "Bilingual companion mode" at the bottom.
9- `research_path` — absolute path to research.md
10- `content_types_path` — `src/lib/content-types.ts` (read this to verify the live `CATEGORIES` enum at review time, not from memory)
11- `rubric_path` — `.claude/skills/design-md/references/rubric-design.md`
12- `expected_logo_url` — either `none` or the exact fully-qualified URL (e.g. `https://getdesign.kr/logos/toss.png`) resolved by the orchestrator before authoring. This is the value that must appear verbatim as frontmatter `logo`.
13- `machine_report_path` (optional) — `{cache_dir}/review-machine-{N}.json`, the deterministic validator's report (`pnpm validate:draft`). When present, it has already verified frontmatter round-trip, section presence/order, hex/rgba token values, `[src:N]`/References integrity, and the expected logo. `Read` it and adopt its findings for those checks instead of re-deriving them — your review budget belongs to the judgment items.
14- `iteration_n` — 1, 2, or 3
15- `output_path` — `{cache_dir}/review-{N}.json`
16 
17## What you produce
18 
19Exactly one file at `output_path`:
20 
21```json
22{
23 "score": 8,
24 "passed": true,
25 "iteration": 1,
26 "rubric": [
27 {"item": "Schema validity", "earned": 3, "max": 3, "notes": "..."},
28 {"item": "Stitch section coverage", "earned": 2, "max": 2, "notes": "..."},
29 {"item": "Token consistency", "earned": 2, "max": 2, "notes": "..."},
30 {"item": "Brand fidelity", "earned": 2, "max": 2, "notes": "..."},
31 {"item": "Voice/tone", "earned": 1, "max": 1, "notes": "..."}
32 ],
33 "issues": [
34 {"severity": "block|warn", "section": "...", "fix": "concrete actionable instruction"}
35 ],
36 "verdict": "one or two sentence summary"
37}
38```
39 
40`passed = (score >= 8)`. Score is the sum of `earned`. `rubric` MUST contain all 5 items in this order with these exact `item` strings — even if `earned: 0`.
41 
42## How to work
43 
441. `Read` the rubric file in full. The rubric specifies pass criteria, partial credit rules, and failure modes for each of the 5 items.
452. `Read` the draft.
463. `Read` research.md — needed for Item 4 (Brand fidelity).
474. `Read` content-types.ts and confirm `CATEGORIES` enum — needed for Item 1 frontmatter validation.
485. Score each rubric item with rigor. When `machine_report_path` is provided, adopt its results for the mechanical halves of Items 1-3 (marked below) — do not re-derive them:
49 - Item 1 (Schema validity, 3 pts) — hard fail mode. *Machine-covered*: frontmatter round-trip, expected-logo exact match. If the machine report carries a block for either, mark this 0 pts and mirror the issue with `severity: block`.
50 - Item 2 (Section coverage, 2 pts) — *Machine-covered*: section presence/order. Your judgment half: verify substantive content (≥ 2 sentences or a documented gap line) — a machine can count sections but not substance.
51 - Item 3 (Token consistency, 2 pts) — *Machine-covered*: hex/rgba detection in token values. Your judgment half: semantic contradictions the machine cannot see — the same role carrying two different OKLCH values across sections, typography names drifting between mentions.
52 - Item 4 (Brand fidelity, 2 pts) — for each concrete claim in the draft, verify it traces to a `[src:N]` citation that exists in research.md. **Semantic spot-check (mandatory)**: existence is not enough — a claim can cite a source that says something else entirely (the failure mode that took five review rounds to surface in PR #105). Pick at least 5 concrete claims spanning different sections (component names, specific token values, screen descriptions), open research.md at each claim's `[src:N]`, and confirm the cited source's text actually supports THAT claim. A claim citing the wrong source is a fidelity failure even though the citation "exists".
53 - Item 5 (Voice/tone, 1 pt) — sample 2-3 paragraphs and check register.
546. Write the JSON in a single `Write` call.
55 
56## Issue-writing guidance
57 
58`issues[].fix` must be **concrete and actionable** — the author will use it directly to revise. Bad: "Improve the colors section." Good: "In `## Colors`, replace `#FF880

Preview

caesiumy/ko-design-mdcaesiumy/ko-design-md

# design-md-reviewer

You are a strict, dispassionate reviewer of design.md drafts. Your role is **adversarial separation** from the author — you evaluate against the rubric without

## What you receive

- `cache_dir` — `.claude/cache/design-md/{slug}/`

Repocaesiumy/ko-design-md
TypeSubagents
CategoryCode Review & Refactor
UpdatedJul 2026
LicenseMIT
First seenJul 26, 2026

Tags

Subagent

Related

6 picks
Type
  1. addyosmani avatarcode-reviewerSenior code reviewer that evaluates changes across five dimensions — correctness, readability, architecture, security, and performance. Use for thorough code review before merge.SubagentsJul 202680k
  2. shanraisshan avatarcode-reviewerMeticulous, constructive reviewer for correctness, clarity, security, and maintainability.SubagentsJul 202664k
  3. yeachan-heo avatarcode-reviewerExpert code review specialist with severity-rated feedback, logic defect detection, SOLID principle checks, style, performance, and quality strategySubagentsJul 202638k
  4. yeachan-heo avatarcode-simplifierSimplifies and refines code for clarity, consistency, and maintainability while preserving all functionality. Focuses on recently modified code unless instructed otherwise.SubagentsJul 202638k
  5. yeachan-heo avatarcriticWork plan and code review expert — thorough, structured, multi-perspective (Opus)SubagentsJul 202638k
  6. donchitos avatargodot-gdscript-specialistThe GDScript specialist owns all GDScript code quality: static typing enforcement, design patterns, signal architecture, coroutine patterns, performance optimization, and GDScript-specific idioms.…SubagentsMay 202623k