Use when you have a written implementation plan to execute in a separate session with review checkpoints
npx skills add 30eggis/claude-frontend-skills --skill "spec-it-automation"
Install specific skill from multi-skill repository
# Description
Frontend spec generator (Full Auto mode). Maximum automation with minimal approval. Best for large projects.
# SKILL.md
name: spec-it-automation
description: "Frontend spec generator (Full Auto mode). Maximum automation with minimal approval. Best for large projects."
allowed-tools: Read, Write, Edit, Bash, Task, AskUserQuestion
argument-hint: "[--resume
permissionMode: bypassPermissions
spec-it-automation: Full Auto Mode
Transform PRD/vibe-coding into frontend specifications with maximum automation and minimal user intervention.
Auto-Execute: After spec generation, automatically proceeds to spec-it-execute for implementation.
Rules
See shared/output-rules.md and shared/context-rules.md.
Workflow
[Auto: Requirements → Divergent → Multi-Critic → Chapter Plan]
↓
[Auto: UI Architecture + Component Discovery]
↓
[Auto: Critical Review]
↓
[IF ambiguity: User Question]
↓
[Auto: Test Spec → Assembly]
↓
★ Final Approval (only user interaction for spec)
↓
[Auto: spec-it-execute (Phase 0-9)]
↓
★ Implementation Complete
Phase 0: Init
Step 0.0: Design Style Selection
# Design Trends 2026 Integration
DESIGN_TRENDS_PATH = $HOME/.claude/plugins/marketplaces/claude-frontend-skills/skills/design-trends-2026
AskUserQuestion(
questions: [{
question: "어떤 디자인 스타일을 적용하시겠습니까? (2026 Design Trends 기반)",
header: "Design Style",
options: [
{label: "Minimal (Recommended)", description: "깔끔한 SaaS: 밝은 테마, 미니멀 카드"},
{label: "Immersive", description: "다크 테마: 그라데이션 카드, 네온 포인트"},
{label: "Organic", description: "유기적: Glassmorphism, 부드러운 곡선"},
{label: "Custom", description: "직접 트렌드 선택"},
{label: "Custom File", description: "직접 스타일 파일 경로 지정"}
]
}]
)
IF "Custom":
AskUserQuestion(
questions: [{
question: "적용할 디자인 트렌드를 선택하세요",
header: "Trends",
multiSelect: true,
options: [
{label: "Dark Mode+", description: "어두운 테마"},
{label: "Light Skeuomorphism", description: "부드러운 그림자"},
{label: "Glassmorphism", description: "반투명 blur"},
{label: "Micro-Animations", description: "의미있는 모션"},
{label: "3D Visuals", description: "3D 아이콘"},
{label: "Gamification", description: "Progress, 배지"}
]
}]
)
IF "Custom File":
# User provides custom style file path via "Other" option
# Expected: Path to a directory containing:
# - references/trends-summary.md
# - references/component-patterns.md
# - templates/*.md (navigation, card, form, dashboard templates)
customPath = userInput
IF NOT exists(customPath + "/references/trends-summary.md"):
Output: "경고: trends-summary.md를 찾을 수 없습니다. 기본 스타일을 사용합니다."
DESIGN_TRENDS_PATH = default
ELSE:
DESIGN_TRENDS_PATH = customPath
_meta.customDesignPath = customPath
_meta.designStyle = selectedStyle
_meta.designTrends = selectedTrends
_meta.designTrendsPath = DESIGN_TRENDS_PATH
Step 0.1: Session Init
# Generate session and get SESSION_DIR
# IMPORTANT: workDir is the current working directory where tmp/ folder will be created
result = Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/session-init.sh "" {uiMode} "$(pwd)"
# Parse output to get SESSION_DIR (full absolute path)
# Output format: SESSION_ID:xxx, SESSION_DIR:/path/to/tmp/xxx
sessionId = extract SESSION_ID from result
sessionDir = extract SESSION_DIR from result # CRITICAL: Use this in all status-update calls
→ Auto-launches dashboard
Step 0.R: Resume
IF --resume in args:
Read: .spec-it/{sessionId}/plan/_meta.json
GOTO: _meta.currentStep
Phase 1: Design Brainstorming (Auto)
Step 1.1: Requirements
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-start design-interviewer
Task(design-interviewer, opus):
Output: 00-requirements/requirements.md
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete design-interviewer
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/meta-checkpoint.sh {sessionDir} 1.1
Step 1.2: Divergent Thinking
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-start divergent-thinker
Task(divergent-thinker, sonnet):
Output: 01-chapters/alternatives/*.md, _index.md
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete divergent-thinker "" 1.2
Step 1.3: Multi-Critic Debate (Parallel)
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-start "critic-logic,critic-feasibility,critic-frontend"
Task(critic-logic, sonnet, parallel):
Output: 01-chapters/critique-logic.md
Task(critic-feasibility, sonnet, parallel):
Output: 01-chapters/critique-feasibility.md
Task(critic-frontend, sonnet, parallel):
Output: 01-chapters/critique-frontend.md
WAIT for all 3
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete "critic-logic,critic-feasibility,critic-frontend"
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-start critic-moderator
Task(critic-moderator, opus):
- Synthesize 3 critiques
- Resolve conflicts
- Output: 01-chapters/critique-final.md
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete critic-moderator "" 1.3
Step 1.4: Chapter Plan
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-start chapter-planner
Task(chapter-planner, opus):
Output: 01-chapters/chapter-plan-final.md
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete chapter-planner "" 1.4
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} phase-complete 1 2 "2.1"
Phase 2: UI + Components (Auto)
Step 2.1: UI Architecture
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-start ui-architect
Task(ui-architect, sonnet):
prompt: "
Role: ui-architect
=== YAML UI FRAME REFERENCE (MUST READ) ===
Read: skills/shared/references/yaml-ui-frame/01-basic-structure.md
Read: skills/shared/references/yaml-ui-frame/02-grid-definition.md
=== DESIGN REFERENCE ===
Read: {_meta.designTrendsPath}/references/trends-summary.md
Read: {_meta.designTrendsPath}/references/component-patterns.md
Design Style: {_meta.designStyle}
Output: screen-list.md, layouts/layout-system.yaml
"
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/planners/screen-planner.sh {sessionId}
FOR each batch (4 screens):
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/executors/batch-runner.sh {sessionId} wireframe {i}
Task(ui-architect, sonnet, parallel x4):
prompt: "
Role: ui-architect
=== YAML UI FRAME REFERENCE (MUST READ) ===
Read: skills/shared/references/yaml-ui-frame/03-components.md
Read: skills/shared/references/yaml-ui-frame/07-design-direction.md
=== DESIGN REFERENCE ===
Read: {_meta.designTrendsPath}/references/trends-summary.md
Read: {_meta.designTrendsPath}/references/component-patterns.md
Design Style: {_meta.designStyle}
=== OUTPUT FORMAT (YAML) ===
Use template: assets/templates/UI_WIREFRAME_TEMPLATE.yaml
Output file: wireframes/{screen}.yaml
=== CRITICAL RULES ===
- NEVER use ASCII box characters
- Use grid.areas for layout (CSS Grid syntax)
- Include testId for all interactive elements
"
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete ui-architect "" 2.1
Step 2.2: Component Discovery + Build
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-start component-auditor
Task(component-auditor, haiku, parallel):
Output: 03-components/inventory.md, gap-analysis.md
WAIT
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete component-auditor
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/planners/component-planner.sh {sessionId}
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-start "component-builder,component-migrator"
Task(component-builder, sonnet, parallel):
Output: 03-components/new/spec-{component}.md
Task(component-migrator, sonnet, parallel):
Output: 03-components/migrations/migration-plan.md
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete "component-builder,component-migrator" "" 2.2
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} phase-complete 2 3 "3.1"
Phase 3: Critical Review (Auto)
Step 3.1: Parallel Review
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-start "critical-reviewer,ambiguity-detector"
Task(critical-reviewer, opus, parallel):
Output: 04-review/scenarios/, ia-review.md, exceptions/
Task(ambiguity-detector, opus, parallel):
Output: 04-review/ambiguities.md
WAIT for both
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete "critical-reviewer,ambiguity-detector" "" 3.1
Step 3.2: Ambiguity Resolution
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/phase-dispatcher.sh {sessionDir} ambiguity
IF DISPATCH:user-question:
Read: 04-review/ambiguities.md
Extract "Must Resolve" items
AskUserQuestion: "Resolve these ambiguities"
(dynamic options based on ambiguities)
Write: 04-review/ambiguities-resolved.md
ELSE:
Auto-proceed
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete ambiguity-resolver "" 3.2
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} phase-complete 3 4 "4.1"
Phase 4: Test Specification (Auto)
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-start "persona-architect,test-spec-writer"
Task(persona-architect, sonnet, parallel):
Output: 05-tests/personas/
Task(test-spec-writer, sonnet, parallel):
Output: 05-tests/scenarios/, components/, coverage-map.md
WAIT for both
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete "persona-architect,test-spec-writer" "" 4.1
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} phase-complete 4 5 "5.1"
Phase 5: Final Assembly (Auto)
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-start spec-assembler
Task(spec-assembler, haiku):
Output:
- 06-final/final-spec.md
- 06-final/dev-tasks.md
- 06-final/SPEC-SUMMARY.md
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} agent-complete spec-assembler "" 5.1
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} phase-complete 5 6 "6.1"
Phase 6: Final Approval & Auto-Execute
Read: 06-final/SPEC-SUMMARY.md
AskUserQuestion: "Spec complete. Ready to start implementation?"
Options: [
{label: "Proceed to Execute (Recommended)", description: "Auto-start implementation"},
{label: "Review First", description: "I'll review the spec, then manually run /spec-it-execute"},
{label: "Spec Only", description: "Don't execute, keep spec files"}
]
IF "Proceed to Execute" OR "Proceed":
Output: "Starting implementation with spec-it-execute..."
# Auto-invoke spec-it-execute (specs are in tmp/)
Skill(spec-it-execute, "tmp")
ELIF "Review First":
Output: "
Spec saved. To execute later:
/spec-it-execute tmp
"
ELSE ("Spec Only"):
AskUserQuestion: "Handle tmp folder?"
Options: [Archive, Keep, Delete]
IF Archive: mv tmp archive/specs-{sessionId}
IF Delete: rm -rf tmp
Bash: $HOME/.claude/plugins/marketplaces/claude-frontend-skills/scripts/core/status-update.sh {sessionDir} complete
Phase 7: Execute (Auto-invoked)
When auto-execute is selected, spec-it-execute handles:
| Phase | Description |
|---|---|
| 0 | Initialize session |
| 1 | Load specs |
| 2 | Plan execution |
| 3 | Implement code (batched parallel) |
| 4 | QA loop (build/type/lint/test) |
| 5 | Spec-mirror verification |
| 6 | Unit tests (95% coverage target) |
| 7 | E2E tests (100% pass target) |
| 8 | Code & security review |
| 9 | Complete |
See spec-it-execute/SKILL.md for full details.
Output Structure
.spec-it/{sessionId}/plan/
├── _meta.json, _status.json
tmp/
├── 00-requirements/
├── 01-chapters/
│ ├── alternatives/
│ ├── critique-logic.md, critique-feasibility.md, critique-frontend.md
│ ├── critique-final.md
│ └── chapter-plan-final.md
├── 02-screens/
│ ├── screen-list.md, layouts/
│ └── wireframes/ (YAML)
├── 03-components/inventory.md, gap-analysis.md, new/, migrations/
├── 04-review/scenarios/, exceptions/, ambiguities.md
├── 05-tests/personas/, scenarios/, coverage-map.md
└── 06-final/final-spec.md, dev-tasks.md, SPEC-SUMMARY.md
Agents
| Agent | Model | Purpose |
|---|---|---|
| design-interviewer | opus | Requirements |
| divergent-thinker | sonnet | Alternatives |
| critic-logic | sonnet | Logic validation |
| critic-feasibility | sonnet | Feasibility check |
| critic-frontend | sonnet | Frontend review |
| critic-moderator | opus | Synthesize critiques |
| chapter-planner | opus | Plan chapters |
| ui-architect | sonnet | Wireframes |
| component-auditor | haiku | Scan components |
| component-builder | sonnet | Build specs |
| component-migrator | sonnet | Migration plan |
| critical-reviewer | opus | Scenario review |
| ambiguity-detector | opus | Find ambiguities |
| persona-architect | sonnet | Personas |
| test-spec-writer | sonnet | Test specs |
| spec-assembler | haiku | Final assembly |
Progress Tracking
Spec Generation (Phase 1-6)
| Phase | Steps | Progress |
|---|---|---|
| 1 | 1.1-1.4 | 0-16% |
| 2 | 2.1-2.2 | 17-33% |
| 3 | 3.1-3.2 | 34-50% |
| 4 | 4.1 | 51-66% |
| 5 | 5.1 | 67-83% |
| 6 | 6.1 | 84-100% |
Implementation (Phase 7 - spec-it-execute)
| Execute Phase | Progress |
|---|---|
| LOAD | 0-10% |
| PLAN | 10-20% |
| EXECUTE | 20-50% |
| QA | 50-60% |
| SPEC-MIRROR | 60-70% |
| UNIT-TEST | 70-80% |
| SCENARIO-TEST | 80-90% |
| VALIDATE | 90-95% |
| COMPLETE | 100% |
Resume
/frontend-skills:spec-it-automation --resume {sessionId}
# Supported AI Coding Agents
This skill is compatible with the SKILL.md standard and works with all major AI coding agents:
Learn more about the SKILL.md standard and how to use these skills with your preferred AI coding agent.