Core design agents and design-sprint orchestration. Stack-agnostic; pair with a stack profile (e.g. design-kit-react-nextjs).
Audit a component, page, or codebase for brand and token compliance. Uses the brand-guardian agent and reads docs/context/brand.md and docs/context/design-system.md. Invoke with /brand-audit [path-or-component-name].
Reviews a component for design system readiness. Checks HANDOFF.md completeness, all required states, dark mode, accessibility, and implementation readiness. Uses the component-reviewer agent and reads docs/context/design-system.md. Invoke with /component-review [component-path].
Pulls analytics data from the project's analytics source and writes a structured insight file. Supports hierarchical paths: /data-insights <product> for a high-level cross-domain insight, or /data-insights <product>/<domain> for a domain-specific insight. Hands off to a product designer agent to append design recommendations.
Run only Stages 1 and 2 of the design sprint (research + brief + design spec). Stops before scaffolding code. Useful when you want to align on direction before committing to a prototype.
Runs automated design QA on a rendered URL. Orchestrates Playwright capture, source analysis, and agent evaluation. Usage: /design-qa <url> [--brief <path>] [--context "description"] [--specs <path>] [--session <path>] [--repo <path>]
Use when establishing or auditing brand guidelines, ensuring token consistency, reviewing color decisions, checking visual consistency across components, or evaluating whether new work aligns with the project's brand identity. Reads brand and design-system context from paths declared in design-kit.config.json.
Use when reviewing a component for graduation from a design playground to the production design system, auditing component quality, or validating the project's design-system standards before engineering handoff. Reads design-system standards from paths declared in design-kit.config.json.
Use when pulling and interpreting analytics data to inform design decisions. Translates raw metrics into product signals and writes structured Data Summary sections to insight files. Understands module structure, the agentic progression model, and how to frame data for the design team. Reads product and persona context from paths declared in design-kit.config.json.
Use when building data visualization or dashboard prototypes. Handles chart selection, data color theory, dashboard composition, and generates production-quality chart components using the active stack profile's viz library. Reads product and persona context from paths declared in design-kit.config.json.
Orchestrator agent for Stage 3 of the design sprint. Reads the design spec at 02-design-spec.md, validates required fields, and dispatches prototype scaffolding to the active stack profile via /design-kit-{stackProfile}:prototype. Does NOT generate framework code itself.
Use when generating release notes or changelogs for components, prototypes, or DS updates. Reads git history and design-kit project STATUS.md files to produce a structured changelog.
Use when you need prompt patterns and design guidance for specific UI component categories: forms, navigation, feedback patterns, data display, and overlays.
Orchestrates the 4-stage design sprint pipeline. Stages 1-2 produce briefs and specs; Stages 3-4 dispatch to the active stack profile. Reads design-kit.config.json for stackProfile and confirmBeforeStages.
Use when exploring a design idea before producing a brief or spec. Walks the user through user-intent, constraints, success criteria, and 2-3 design approaches with trade-offs. Lighter weight than a full design sprint.
Use when reviewing code for quality, design system compliance, build correctness, and test coverage. Triggers on: "Review this code", "code review", "check code quality", "/code-review". Runs a structured 3-iteration loop until clean.
Uses power tools
Uses Bash, Write, or Edit tools
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
A Claude Code plugin marketplace for design agents and orchestration. Ships a stack-agnostic design-sprint pipeline with pluggable brand, design-system, and stack configuration.
| Plugin | Provides |
|---|---|
design-kit | 9 design agents, 8 skills, 13 commands, init scaffolding, 5 JSON Schemas, session-start hook |
design-kit-react-nextjs | 8 skills, 6 commands — React/Next.js prototype + shadcn/ui setup |
design-kit-html | 4 commands — self-contained HTML + Tailwind CDN + Alpine.js, no build step |
# In Claude Code — pick one stack profile:
# React/Next.js (full stack, shadcn/ui)
/plugin marketplace add anindhitavidia/design-agent-kit
/plugin install design-kit@design-agent-kit
/plugin install design-kit-react-nextjs@design-agent-kit
# HTML-only (no build, open in browser — good for quick prototyping)
/plugin marketplace add anindhitavidia/design-agent-kit
/plugin install design-kit@design-agent-kit
/plugin install design-kit-html@design-agent-kit
# In your repo:
/design-kit:init # sets up config, context files, and runs stack-specific setup
/design-kit:design-sprint <project-name>
/design-kit:design-sprint runs a 7-stage pipeline with human review pauses between every stage:
data-analyst + ux-designer (qualitative signals) + market-researcher produce 01-data-intent.md
1.5. Ideation (optional) — brainstorming-design skill explores problem space before locking in directionux-designer + product-designer produce 02-brief.md + 02-design-spec.md
2.5. Design Explore — design-explore skill generates 2-3 lightweight directions that challenge the brief; stack profile builds cheap DS-component sketches; user picks one direction before any prototype code is writtendesign-kit-react-nextjs:prototype)
3.5. Design Iterate — automated design-qa run + mandatory stakeholder review pause; iterates until sign-offdesign-kit-react-nextjs:handoff-prep)Each stage's artifacts are JSON-Schema validated before the next stage begins.
/design-kit:init scaffolds a design-kit.config.json at your repo root and creates context files under docs/context/:
{
"stackProfile": "react-nextjs",
"projectRoot": "design-kit/projects",
"contextPaths": {
"brand": "docs/context/brand.md",
"designSystem": "docs/context/design-system.md",
"personas": "docs/context/personas.md",
"codingRules": "docs/context/coding-rules.md"
},
"confirmBeforeStages": false
}
Fill in the context files with your brand, design system, and persona details. Agents read them at runtime.
Key config options:
| Field | Default | Description |
|---|---|---|
stackProfile | "react-nextjs" | Which stack profile plugin to dispatch Stage 3 & 4 to |
confirmBeforeStages | true | Pause for human review between every stage. Set to false only for automated/CI runs |
marketResearch | "light" | "light" = training knowledge only (token-efficient); "full" = web search enabled; "off" = skip |
Claude Code doesn't auto-update plugins. To get the latest agents, skills, and commands:
/plugin marketplace remove design-agent-kit
/plugin marketplace add anindhitavidia/design-agent-kit
/plugin install design-kit@design-agent-kit
/plugin install design-kit-react-nextjs@design-agent-kit
Your repo files (design-kit.config.json, docs/context/, DESIGN.md, etc.) are never touched by a reinstall — only the plugin cache is replaced. If a new version adds config options you want (check the CHANGELOG), add them to your design-kit.config.json manually.
A stack profile is a second Claude Code plugin that implements two required commands:
prototype — reads 02-design-spec.md, scaffolds the prototypehandoff-prep — packages the prototype for engineering handoffSee docs/architecture.md for the full contract.
design-kit)npx claudepluginhub anindhitavidia/design-agent-kit --plugin design-kitHTML stack profile for design-kit. Outputs self-contained HTML + Tailwind CDN + Alpine.js prototypes — no build step, no deployment. Open in browser directly.
React + Next.js stack profile for design-kit. Implements the prototype and handoff-prep contract commands.
Multi-model consensus engine integrating OpenAI Codex CLI, Gemini CLI, and Claude CLI for collaborative code review and problem-solving.
Ultra-compressed communication mode. Cuts ~75% of tokens while keeping full technical accuracy by speaking like a caveman.
Comprehensive UI/UX design plugin for mobile (iOS, Android, React Native) and web applications with design systems, accessibility, and modern patterns
Curate auto-memory, promote learnings to CLAUDE.md and rules, extract proven patterns into reusable skills.
Memory compression system for Claude Code - persist context across sessions
Standalone image generation plugin using Nano Banana MCP server. Generates and edits images, icons, diagrams, patterns, and visual assets via Gemini image models. No Gemini CLI dependency required.