agent-11: Command for Claude Code

.claude/commands/design-review.md

design-review is a command for Claude Code from TheWayWithin/agent-11. It costs 25 tokens per session (1,268 once invoked), scanned A, original, MIT.

A command that reviews pending code changes for interface quality. It examines visual consistency, user flows, accessibility, responsive behavior, performance, and maintainability in the current branch.

In plain words
What is it for?
Use it before merging interface changes to assess layout, interaction design, accessibility, responsiveness, performance, and component reuse.
Why use it?
It provides a structured review of UI changes instead of checking only whether the code works. It can reveal issues affecting different screen sizes, input methods, or users with disabilities.

Command for Claude Code

Written for Claude Code: allowed-tools in frontmatter. Also seen: names the NotebookEdit tool.

This is TheWayWithin/agent-11's own configuration. It tells Claude Code how to work on agent-11 itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything agent-11 configures →

Reuse

Borrowing it

Nothing to install: this file belongs to TheWayWithin/agent-11. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/TheWayWithin/agent-11/main/.claude/commands/design-review.md
Clone the repo
git clone --depth 1 https://github.com/TheWayWithin/agent-11

Made for: Claude Code.

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 design-review

README.md
[![agentmods](https://agentmods.dev/badge/commands/thewaywithin/agent-11/design-review.svg)](https://agentmods.dev/commands/thewaywithin/agent-11/design-review)
Your own site
<a href="https://agentmods.dev/commands/thewaywithin/agent-11/design-review"><img src="https://agentmods.dev/badge/commands/thewaywithin/agent-11/design-review.svg" alt="Measured on agentmods" height="20"></a>
Per session 25 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,268 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe.
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.1 $0.00025 $0.01268
Opus 5 $0.00013 $0.00634
Sonnet 5 $0.00005 $0.00254
Haiku 4.5 $0.00003 $0.00127

Measured 2d ago against content hash 770517ad8be6, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

design-review 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 2d 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.

Origin

Copies of this mod

4 near-identical copies found in the catalogue:

.claude/commands/design-review.md · 135 lines

How it starts

The opening of the file, as written. The whole thing — 135 lines — stays where its author put it; the contents beside it link to each section on GitHub.

DESIGN REVIEW PROTOCOL ACTIVATION 🎨

You are executing a comprehensive design review using world-class standards from companies like Stripe, Airbnb, and Linear. Your mission is to ensure UI/UX excellence through systematic evaluation.

OPERATIONAL CONTEXT

GIT STATUS:

!`git status`

FILES MODIFIED:

!`git diff --name-only origin/HEAD...`

COMMITS:

!`git log --no-decorate --oneline -10 origin/HEAD...`

DIFF CONTENT:

!`git diff --merge-base origin/HEAD`

MISSION PARAMETERS

Review the complete diff above containing all UI/UX changes. Execute the comprehensive design review protocol to assess:

  • Visual Consistency: Design system compliance, typography, spacing
  • User Experience: Interaction patterns, user flows, conversion optimization
  • Accessibility: WCAG AA+ compliance, keyboard navigation, screen readers
  • Responsive Design: Mobile-first, cross-device compatibility
  • Performance: Load times, animations, resource optimization
  • Code Quality: Component reuse, design token usage, maintainability

EXECUTION DIRECTIVE

  1. Deploy @design-review agent with full systematic protocol
  2. Apply project standards from /field-manual/ui-doctrine.md if available
  3. Use live environment for interactive testing (provide URL if needed)
  4. Execute all 7 phases of the design review protocol systematically
  5. Classify findings by severity: [BLOCKER], [HIGH-PRIORITY], [MEDIUM-PRIORITY], [NITPICK]
  6. Follow "Problems Over Prescriptions" communication approach
  7. Provide visual evidence via screenshots for all issues

REVIEW PHASES TO EXECUTE

Phase 0: Preparation (5 min)

  • Analyze PR motivation and testing notes
  • Set up Playwright environment
  • Configure initial viewport (1440x900)

Phase 1: Interaction & User Flow (15 min)

  • Test primary user flows
  • Validate all interactive states
  • Check micro-interactions and animations
  • Assess perceived performance

Phase 2: Responsiveness Testing (10 min)

  • Desktop (1440px) with screenshot
  • Tablet (768px) layout adaptation
  • Mobile (375px) touch optimization
  • Breakpoint transition verification

Read the full file on GitHub · 135 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. 2d ago First seen · 135 lines · 25 tokens per session scan A 770517ad8be6

Subscribe to this mod's changes

design-review is a command published in the GitHub repository TheWayWithin/agent-11 (15 stars, last pushed 14d ago), licensed MIT. It adds 25 tokens to every session and 1,268 once invoked, about $0.0001 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-09-04.

Related

Other commands, from other repositories

design-import

Scaffolds React components from a Claude Design handoff bundle and stops at files on disk: no stories, no tests, no pull request. Use when handed a claude.ai/design URL or a local bundle file; when that same scaffold should carry on through test generation, browser verification and an opened PR, run /ork:design-ship…

yonatangross/orchestkit · 74 tokens

design-ship

One-shot pipeline turning a claude.ai/design link into a pull request: scaffold via /ork:design-import, stories and specs via /ork:cover, browser verification via /ork:expect, then open the PR. Use when a design link should come back as a PR with no intermediate steps; if all you need is the components written to…

yonatangross/orchestkit · 84 tokens

critique

Design lens critique covering visual hierarchy, clarity, and anti-slop patterns — produces a findings table, no code edits unless asked. Use when the user wants a design review, says "what's wrong with this UI", or needs a second opinion before a handoff or presentation.

educlopez/ui-craft · 56 tokens

audit

A project review command that checks both the user interface and the code. It can inspect design rules, accessibility, performance, security, and code quality at different levels of depth.

jiushiwon/wg-skills · 0 tokens

revisar

Peer review estricto de código con análisis de rendimiento, arquitectura, seguridad y cumplimiento. Usa cuando el usuario dice "revisar código", "code review", "peer review", "revisame este archivo", "review my code", "analizar código", "revisar PR", "revisar feature". Incluye análisis de performance, security OWASP…

doncheli/don-cheli-sdd · 82 tokens

dev-assess

Spawn 3 senior developer subagents in parallel, each assessing the target from a different engineering perspective. Experts are dynamically selected based on the target material's technical domains. Triangulate their findings into an interactive HTML artifact with convergence/divergence analysis.

eddiebelaval/squire · 0 tokens