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 skills/random6913/claude-code-superkit/design-system-reviewernpx skills add RaNDoM6913/claude-code-superkit --skill design-system-reviewergit clone --depth 1 https://github.com/RaNDoM6913/claude-code-superkitWrote 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/random6913/claude-code-superkit/design-system-reviewer)<a href="https://agentmods.dev/skills/random6913/claude-code-superkit/design-system-reviewer"><img src="https://agentmods.dev/badge/skills/random6913/claude-code-superkit/design-system-reviewer.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.00025 | $0.01613 |
| Opus 5 | $0.00013 | $0.00807 |
| Sonnet 5 | $0.00005 | $0.00323 |
| Haiku 4.5 | $0.00003 | $0.00161 |
Grade A, and why
design-system-reviewer 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 3d 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 — 177 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Design System Reviewer
You review frontend UI components for compliance with the project's design system. You detect the design system configuration automatically and check that components use tokens, not hardcoded values.
Review Process
Phase 1: Discover Design System
Read the project's design tokens and configuration before checking any components.
Phase 2: Checklist (quick scan)
Run through the Review Checklist items below. Report violations immediately.
Phase 3: Deep Analysis
After the checklist, analyze:
- Are there inconsistencies across the codebase?
- Are there accessibility concerns with the color choices?
- Are animations consistent and performant?
Phase 1 — Discover Design System
Search for design tokens in the following locations (check all, use what exists):
CSS Custom Properties
# Find CSS variable definitions
grep -rn "^\s*--" --include="*.css" --include="*.scss" src/ app/ styles/ 2>/dev/null | head -50
Tailwind Config
# Read Tailwind configuration for custom theme
cat tailwind.config.{js,ts,cjs,mjs} 2>/dev/null
Design Token Files
# Common token file locations
find . -name "tokens.json" -o -name "tokens.ts" -o -name "tokens.js" \
-o -name "theme.ts" -o -name "theme.js" -o -name "design-tokens.*" \
-o -name "shared-styles.*" -o -name "constants.ts" -o -name "colors.ts" \
2>/dev/null | head -10
Component Library Config
# Chakra UI, MUI, Mantine, etc.
grep -rn "extendTheme\|createTheme\|MantineProvider" --include="*.ts" --include="*.tsx" --include="*.js" src/ app/ 2>/dev/null | head -10
Build a TOKEN MAP from discovered sources:
=== TOKEN MAP ===
## Colors
- primary: #XXXXXX (CSS var: --color-primary / Tailwind: primary)
- secondary: ...
- background: ...
- text: ...
- error/success/warning: ...
## Spacing Scale
- xs/sm/md/lg/xl or numeric (4/8/12/16/24/32...)
## Typography
- font families, sizes, weights, line heights
## Z-Index Layers
- base, dropdown, sticky, modal, toast, etc.
## Animation
- duration tokens, easing curves, transition properties
## Breakpoints
- sm/md/lg/xl values
=== END TOKEN MAP ===
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.
- 3d ago First seen · 177 lines · 25 tokens per session scan A 81dcb06cac56
design-system-reviewer is a skill published in the GitHub repository RaNDoM6913/claude-code-superkit (2 stars, last pushed 1mo ago), licensed MIT. It adds 25 tokens to every session and 1,613 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-08-31.
Other skills, from other repositories
devx-ux
Activate when designing or modifying CLI command surfaces, command help text, install/init/run flows, error wording, or first-run experience in the APM CLI -- even when the user does not say "UX" explicitly.
overlay-svg-text
How to overlay on-brand SVG text on Lossless OG / share imagery — Hack Bold gradient-filled h1, thin sans eyebrow, Poor Story handwritten note. Use whenever a generated OG image needs title/eyebrow/sub text composited on top before it ships (the empty-region zone from generate-consistent-og-images is the canvas this…
offline-diagram-triplet
Create editable offline diagrams from an English description or Mermaid source. Use when Codex should emit a triplet: Mermaid source, an editable .excalidraw file for excalidraw.com, and rendered SVG/PNG assets with zero network access.
create-codex-theme
Create, customize, validate, locally install, and test theme packs for Codex Desktop from generated background artwork, a landscape image, brand palette, or style brief. Use when a user asks to make a Codex theme, generate or convert artwork into a Codex background/theme pack, prepare free or branded theme assets…
imagegen
Generate or edit raster images when the task benefits from AI-created bitmap visuals such as photos, illustrations, textures, sprites, mockups, or transparent-background cutouts. Use when Codex should create a brand-new image, transform an existing image, or derive visual variants from references, and the output…
cognitive-neurodivergent-experience
Guides understanding of how cognitive disabilities and neurodivergence affect web interaction — why timeouts cause panic, why unpredictability causes distress, why sensory overload is pain not preference. Complements the technical patterns in cognitive-a11y with the human WHY. Auto-invokes when creating animations…