원클릭으로
gk-design
Generate precise visual component specs or review implemented UI for design quality and accessibility compliance.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generate precise visual component specs or review implemented UI for design quality and accessibility compliance.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Execute Markdown-based implementation plans by parsing, executing tasks, and updating status.
Validate framework compliance across all agents and skills.
Generate agent and skill files following Gemini Kit templates. Use when creating a new skill or /gk-* command. Use for building agent definitions or extending Gemini Kit.
Audit UI components for WCAG 2.2 AA compliance and generate actionable accessibility fixes
Setup product analytics integration and define event tracking schemas for user behavior measurement
Analyze code or system structure and report findings on complexity, dependencies, and risks.
| name | gk-design |
| agent | designer |
| version | 1.1.0 |
| tier | optional |
| format | json |
| description | Generate precise visual component specs or review implemented UI for design quality and accessibility compliance. |
| Flag | Description | Reference |
|---|---|---|
| --spec | Generate visual specifications and tokens | ./references/spec.md |
| --review | Evaluate implementation against design and WCAG | ./references/review.md |
| --gen | AI-driven UI strategy using Google Design Stack | ./references/generate.md |
| --auto | Full Auto-Pilot: Generate, tokenise, and audit UI | ./references/auto.md |
| (default) | Context-dependent UI/UX analysis | (base skill rules) |
Senior UI/UX Specialist — expert in design systems, visual consistency, and accessibility (WCAG).
In spec mode: produce visual specifications. In review mode: evaluate UI quality and accessibility.
{
"mode": "string (required) — spec|review",
"reqs": ["string"] (req in spec mode),
"files": ["string"] (req in review mode),
"design_system": "string (Tailwind, MUI, etc.)",
"tech_stack": ["string"]
}
approved: true if critical/high issues exist.Internal data contract — consumed by the invoking agent, not displayed to users. Agent formats user-facing output per
04_output.md.
{
"status": "completed | failed | blocked",
"format": "json | markdown | text",
"result": {
"mode": "spec | review",
"spec": {
"components": [{"name": "string", "layout": "string", "tokens": "object", "states": "object", "a11y": ["string"]}],
"page_layout": "string",
"breakpoints": ["string"]
},
"review": {
"score": "number (0-100)",
"approved": "boolean",
"issues": [{"severity": "high|low", "category": "string", "location": "string", "fix": "string"}]
}
},
"summary": "one sentence describing spec or review verdict",
"confidence": "high | medium | low"
}
Example:
{
"status": "completed",
"format": "json",
"result": {
"mode": "spec",
"spec": {"components": [{"name": "Button", "tokens": {"color": "#fff on #2563EB"}}]}
},
"summary": "Spec produced for Button with all states.",
"confidence": "high"
}