一键导入
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"
}