claude-symphony 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (148) hide show
  1. package/README.md +16 -12
  2. package/bin/create.js +80 -69
  3. package/package.json +1 -1
  4. package/template/.claude/commands/benchmark.md +32 -32
  5. package/template/.claude/commands/brainstorm.md +33 -33
  6. package/template/.claude/commands/checkpoint.md +42 -42
  7. package/template/.claude/commands/codex.md +52 -52
  8. package/template/.claude/commands/collaborate.md +47 -47
  9. package/template/.claude/commands/context.md +77 -77
  10. package/template/.claude/commands/deploy.md +50 -50
  11. package/template/.claude/commands/fork.md +46 -46
  12. package/template/.claude/commands/gemini.md +43 -43
  13. package/template/.claude/commands/handoff.md +42 -42
  14. package/template/.claude/commands/implement.md +42 -42
  15. package/template/.claude/commands/init-project.md +25 -25
  16. package/template/.claude/commands/next.md +67 -67
  17. package/template/.claude/commands/planning.md +38 -38
  18. package/template/.claude/commands/qa.md +47 -47
  19. package/template/.claude/commands/refactor.md +50 -50
  20. package/template/.claude/commands/research.md +31 -31
  21. package/template/.claude/commands/restore.md +53 -53
  22. package/template/.claude/commands/run-stage.md +45 -45
  23. package/template/.claude/commands/stages.md +49 -49
  24. package/template/.claude/commands/status.md +41 -41
  25. package/template/.claude/commands/tasks.md +33 -33
  26. package/template/.claude/commands/test.md +45 -45
  27. package/template/.claude/commands/ui-ux.md +31 -31
  28. package/template/.claude/commands/validate.md +81 -81
  29. package/template/.claude/hooks/ai-selector.sh +39 -39
  30. package/template/.claude/hooks/auto-checkpoint.sh +30 -30
  31. package/template/.claude/hooks/output-validator.sh +45 -45
  32. package/template/.claude/hooks/post-stage.sh +28 -28
  33. package/template/.claude/hooks/pre-stage.sh +47 -47
  34. package/template/.claude/hooks/session-start.sh +27 -27
  35. package/template/.claude/hooks/statusline.sh +24 -24
  36. package/template/.claude/hooks/stop.sh +26 -26
  37. package/template/.claude/settings.json +32 -32
  38. package/template/.claude/skills/ai-collaboration/README.md +31 -31
  39. package/template/.claude/skills/ai-collaboration/debate.md +66 -66
  40. package/template/.claude/skills/ai-collaboration/parallel.md +34 -34
  41. package/template/.claude/skills/ai-collaboration/prompts/CLAUDE.md +59 -63
  42. package/template/.claude/skills/auto-checkpoint/README.md +46 -46
  43. package/template/.claude/skills/auto-checkpoint/prompts/CLAUDE.md +68 -72
  44. package/template/.claude/skills/auto-checkpoint/rollback.md +95 -95
  45. package/template/.claude/skills/auto-checkpoint/trigger.md +37 -37
  46. package/template/.claude/skills/context-compression/README.md +69 -69
  47. package/template/.claude/skills/context-compression/analyze.md +74 -74
  48. package/template/.claude/skills/context-compression/compress.md +103 -103
  49. package/template/.claude/skills/context-compression/prompts/compression.md +78 -78
  50. package/template/.claude/skills/output-validator/README.md +33 -33
  51. package/template/.claude/skills/output-validator/prompts/CLAUDE.md +74 -78
  52. package/template/.claude/skills/output-validator/validate.md +76 -76
  53. package/template/.claude/skills/smart-handoff/README.md +35 -35
  54. package/template/.claude/skills/smart-handoff/extract.md +42 -42
  55. package/template/.claude/skills/smart-handoff/prompts/CLAUDE.md +52 -54
  56. package/template/.claude/skills/smart-handoff/summarize.md +55 -55
  57. package/template/.claude/skills/stage-transition/README.md +50 -50
  58. package/template/.claude/skills/stage-transition/handoff-gen.md +89 -89
  59. package/template/.claude/skills/stage-transition/prompts/transition.md +74 -74
  60. package/template/.claude/skills/stage-transition/validate.md +41 -41
  61. package/template/CLAUDE.md +334 -335
  62. package/template/config/ai_benchmarking.yaml +22 -22
  63. package/template/config/ai_collaboration.yaml +18 -18
  64. package/template/config/ai_logging.yaml +50 -50
  65. package/template/config/auto_checkpoint.yaml +32 -32
  66. package/template/config/context.yaml +20 -20
  67. package/template/config/git.yaml +51 -51
  68. package/template/config/handoff_intelligence.yaml +23 -23
  69. package/template/config/mcp_fallbacks.yaml +71 -71
  70. package/template/config/memory_integration.yaml +23 -23
  71. package/template/config/model_enforcement.yaml +53 -53
  72. package/template/config/models.yaml +24 -24
  73. package/template/config/output_validation.yaml +44 -44
  74. package/template/config/pipeline.yaml +25 -25
  75. package/template/config/pipeline_forking.yaml +40 -40
  76. package/template/config/qa_logging.yaml +67 -67
  77. package/template/config/smart_rollback.yaml +48 -48
  78. package/template/config/stage_personas.yaml +154 -154
  79. package/template/config/workflow.yaml +16 -16
  80. package/template/scripts/ai-benchmark.sh +41 -41
  81. package/template/scripts/codex-wrapper.sh +32 -32
  82. package/template/scripts/context-manager.sh +136 -136
  83. package/template/scripts/create-checkpoint.sh +34 -34
  84. package/template/scripts/gemini-wrapper.sh +31 -31
  85. package/template/scripts/init-project.sh +40 -40
  86. package/template/scripts/list-stages.sh +30 -30
  87. package/template/scripts/next-stage.sh +67 -67
  88. package/template/scripts/output-validate.sh +2 -2
  89. package/template/scripts/pipeline-fork.sh +68 -68
  90. package/template/scripts/pre-run-check.sh +84 -84
  91. package/template/scripts/restore-checkpoint.sh +50 -50
  92. package/template/scripts/run-stage.sh +44 -44
  93. package/template/scripts/show-status.sh +30 -30
  94. package/template/scripts/smart-handoff.sh +70 -70
  95. package/template/stages/01-brainstorm/CLAUDE.md +70 -74
  96. package/template/stages/01-brainstorm/README.md +54 -54
  97. package/template/stages/01-brainstorm/config.yaml +18 -18
  98. package/template/stages/01-brainstorm/prompts/collaboration.md +24 -24
  99. package/template/stages/01-brainstorm/prompts/ideation.md +41 -41
  100. package/template/stages/01-brainstorm/prompts/persona.md +50 -50
  101. package/template/stages/01-brainstorm/prompts/requirements.md +55 -55
  102. package/template/stages/01-brainstorm/prompts/validation.md +28 -28
  103. package/template/stages/01-brainstorm/templates/ideas.md +47 -47
  104. package/template/stages/01-brainstorm/templates/requirements_analysis.md +61 -61
  105. package/template/stages/02-research/CLAUDE.md +72 -76
  106. package/template/stages/02-research/config.yaml +12 -12
  107. package/template/stages/02-research/prompts/collaboration.md +29 -29
  108. package/template/stages/02-research/prompts/feasibility.md +38 -38
  109. package/template/stages/02-research/prompts/market_analysis.md +29 -29
  110. package/template/stages/02-research/prompts/tech_stack.md +34 -34
  111. package/template/stages/02-research/prompts/validation.md +29 -29
  112. package/template/stages/03-planning/CLAUDE.md +88 -92
  113. package/template/stages/03-planning/config.yaml +10 -10
  114. package/template/stages/03-planning/prompts/architecture.md +43 -43
  115. package/template/stages/03-planning/prompts/collaboration.md +34 -34
  116. package/template/stages/03-planning/prompts/validation.md +34 -34
  117. package/template/stages/04-ui-ux/CLAUDE.md +68 -72
  118. package/template/stages/04-ui-ux/config.yaml +5 -5
  119. package/template/stages/04-ui-ux/prompts/collaboration.md +35 -35
  120. package/template/stages/04-ui-ux/prompts/validation.md +30 -30
  121. package/template/stages/05-task-management/CLAUDE.md +81 -85
  122. package/template/stages/05-task-management/config.yaml +17 -17
  123. package/template/stages/05-task-management/prompts/collaboration.md +30 -30
  124. package/template/stages/05-task-management/prompts/validation.md +33 -33
  125. package/template/stages/05-task-management/templates/notion_integration.md +70 -70
  126. package/template/stages/05-task-management/templates/parallel_groups.yaml +64 -64
  127. package/template/stages/05-task-management/templates/task_schema.yaml +33 -33
  128. package/template/stages/06-implementation/CLAUDE.md +117 -121
  129. package/template/stages/06-implementation/config.yaml +10 -10
  130. package/template/stages/06-implementation/prompts/collaboration.md +29 -29
  131. package/template/stages/06-implementation/prompts/validation.md +36 -36
  132. package/template/stages/07-refactoring/CLAUDE.md +120 -124
  133. package/template/stages/07-refactoring/config.yaml +11 -11
  134. package/template/stages/07-refactoring/prompts/collaboration.md +36 -36
  135. package/template/stages/07-refactoring/prompts/validation.md +40 -40
  136. package/template/stages/08-qa/CLAUDE.md +80 -84
  137. package/template/stages/08-qa/config.yaml +7 -7
  138. package/template/stages/08-qa/prompts/collaboration.md +34 -34
  139. package/template/stages/08-qa/prompts/validation.md +41 -41
  140. package/template/stages/09-testing/CLAUDE.md +86 -90
  141. package/template/stages/09-testing/config.yaml +10 -10
  142. package/template/stages/09-testing/prompts/collaboration.md +38 -38
  143. package/template/stages/09-testing/prompts/validation.md +41 -41
  144. package/template/stages/10-deployment/CLAUDE.md +86 -90
  145. package/template/stages/10-deployment/config.yaml +11 -11
  146. package/template/stages/10-deployment/prompts/collaboration.md +37 -37
  147. package/template/stages/10-deployment/prompts/validation.md +54 -54
  148. package/template/stages/10-deployment/templates/github-actions-cd.yaml +1 -1
@@ -1,57 +1,57 @@
1
- # AI 협업 프롬프트 - Planning
1
+ # AI Collaboration Prompt - Planning
2
2
 
3
- ## 협업 모드: Debate
3
+ ## Collaboration Mode: Debate
4
4
 
5
- 스테이지에서는 **토론 모드**를 사용하여 최적의 아키텍처와 기술 스택을 결정합니다.
5
+ This stage uses **debate mode** to determine the optimal architecture and technology stack.
6
6
 
7
- ### 참여 모델
8
- - **Gemini**: 아키텍처 설계, 다이어그램 생성
9
- - **Claude**: 기술적 검증, 실현 가능성 평가
7
+ ### Participating Models
8
+ - **Gemini**: Architecture design, diagram generation
9
+ - **Claude**: Technical validation, feasibility assessment
10
10
 
11
- ### 협업 프롬프트
11
+ ### Collaboration Prompt
12
12
 
13
13
  ```
14
- /collaborate --mode debate --topic "시스템 아키텍처 결정" --rounds 3
14
+ /collaborate --mode debate --topic "system architecture decision" --rounds 3
15
15
  ```
16
16
 
17
- ### 토론 주제
17
+ ### Debate Topics
18
18
 
19
- 1. **아키텍처 패턴**: Monolith vs Microservices vs Modular Monolith
20
- 2. **기술 스택**: 프레임워크 라이브러리 선택
21
- 3. **데이터베이스**: SQL vs NoSQL vs Hybrid
19
+ 1. **Architecture Pattern**: Monolith vs Microservices vs Modular Monolith
20
+ 2. **Technology Stack**: Framework and library selection
21
+ 3. **Database**: SQL vs NoSQL vs Hybrid
22
22
 
23
- ### 토론 형식
23
+ ### Debate Format
24
24
 
25
- | 라운드 | Gemini | Claude |
26
- |--------|--------|--------|
27
- | 1 | 제안 | 반론/대안 |
28
- | 2 | 보완 | 검증/평가 |
29
- | 3 | 최종안 | 합의/확인 |
25
+ | Round | Gemini | Claude |
26
+ |-------|--------|--------|
27
+ | 1 | Proposal | Counterargument/Alternative |
28
+ | 2 | Refinement | Validation/Evaluation |
29
+ | 3 | Final proposal | Consensus/Confirmation |
30
30
 
31
- ### 파이프라인 분기 트리거
31
+ ### Pipeline Fork Trigger
32
32
 
33
- 아키텍처 대안이 2 이상 유효할 경우:
33
+ If 2 or more architecture alternatives are valid:
34
34
  ```
35
- /fork create --reason "아키텍처 대안 탐색" --direction "monolith"
36
- /fork create --reason "아키텍처 대안 탐색" --direction "microservices"
35
+ /fork create --reason "architecture alternative exploration" --direction "monolith"
36
+ /fork create --reason "architecture alternative exploration" --direction "microservices"
37
37
  ```
38
38
 
39
- ### 출력 형식
39
+ ### Output Format
40
40
 
41
41
  ```markdown
42
- ## AI 토론 결과
42
+ ## AI Debate Results
43
43
 
44
- ### 주제: [아키텍처 결정]
44
+ ### Topic: [Architecture Decision]
45
45
 
46
- ### 라운드 1
47
- - **Gemini**: [제안]
48
- - **Claude**: [반론/대안]
46
+ ### Round 1
47
+ - **Gemini**: [Proposal]
48
+ - **Claude**: [Counterargument/Alternative]
49
49
 
50
- ### 라운드 2
51
- - **Gemini**: [보완]
52
- - **Claude**: [검증]
50
+ ### Round 2
51
+ - **Gemini**: [Refinement]
52
+ - **Claude**: [Validation]
53
53
 
54
- ### 최종 결론
55
- - [합의된 아키텍처]
56
- - [근거]
54
+ ### Final Conclusion
55
+ - [Agreed architecture]
56
+ - [Rationale]
57
57
  ```
@@ -1,59 +1,59 @@
1
- # 산출물 검증 프롬프트 - Planning
1
+ # Output Validation Prompt - Planning
2
2
 
3
- ## 검증 대상
3
+ ## Validation Targets
4
4
 
5
- | 산출물 | 필수 조건 | 검증 방법 |
6
- |--------|----------|----------|
7
- | `architecture.md` | 다이어그램 4 | 구조 확인 |
8
- | `tech_stack.md` | 버전/의존성 명시 | 항목 확인 |
9
- | `project_plan.md` | 마일스톤 3개+ | 수량 확인 |
10
- | `implementation.yaml` | 구현 규칙 정의 | 스키마 검증 |
11
- | `HANDOFF.md` | 다음 단계 지침 | 항목 확인 |
5
+ | Output | Required Conditions | Validation Method |
6
+ |--------|---------------------|-------------------|
7
+ | `architecture.md` | 4 types of diagrams | Structure verification |
8
+ | `tech_stack.md` | Version/dependency specified | Item verification |
9
+ | `project_plan.md` | 3+ milestones | Count verification |
10
+ | `implementation.yaml` | Implementation rules defined | Schema validation |
11
+ | `HANDOFF.md` | Next step instructions | Item verification |
12
12
 
13
- ## 검증 명령
13
+ ## Validation Command
14
14
 
15
15
  ```bash
16
16
  /validate --stage 03-planning
17
17
  ```
18
18
 
19
- ## 품질 기준
19
+ ## Quality Criteria
20
20
 
21
21
  ### architecture.md
22
- - [ ] 시스템 컨텍스트 다이어그램
23
- - [ ] 컨테이너 다이어그램
24
- - [ ] 컴포넌트 다이어그램
25
- - [ ] 시퀀스 다이어그램 (핵심 플로우)
26
- - [ ] 데이터 흐름 설명
22
+ - [ ] System context diagram
23
+ - [ ] Container diagram
24
+ - [ ] Component diagram
25
+ - [ ] Sequence diagram (core flows)
26
+ - [ ] Data flow description
27
27
 
28
28
  ### tech_stack.md
29
- - [ ] 프론트엔드 스택 명시
30
- - [ ] 백엔드 스택 명시
31
- - [ ] 데이터베이스 선택
32
- - [ ] 버전 의존성 정의
33
- - [ ] 선택 근거 문서화
29
+ - [ ] Frontend stack specified
30
+ - [ ] Backend stack specified
31
+ - [ ] Database selection
32
+ - [ ] Version and dependency definition
33
+ - [ ] Selection rationale documented
34
34
 
35
35
  ### project_plan.md
36
- - [ ] 마일스톤 3 이상
37
- - [ ] 마일스톤별 산출물
38
- - [ ] 스프린트 계획
39
- - [ ] 리소스 할당
36
+ - [ ] 3+ milestones
37
+ - [ ] Deliverables per milestone
38
+ - [ ] Sprint plan
39
+ - [ ] Resource allocation
40
40
 
41
41
  ### implementation.yaml
42
- - [ ] 컴포넌트 타입 정의
43
- - [ ] 스타일링 방식 정의
44
- - [ ] 상태 관리 패턴 정의
45
- - [ ] 네이밍 규칙 정의
46
- - [ ] 폴더 구조 정의
42
+ - [ ] Component type definition
43
+ - [ ] Styling approach definition
44
+ - [ ] State management pattern definition
45
+ - [ ] Naming convention definition
46
+ - [ ] Folder structure definition
47
47
 
48
- ## 자동 검증 스크립트
48
+ ## Automated Validation Script
49
49
 
50
50
  ```bash
51
- # 다이어그램 확인 (mermaid 블록)
51
+ # Check diagram count (mermaid blocks)
52
52
  grep -c "```mermaid" outputs/architecture.md
53
53
 
54
- # implementation.yaml 유효성
54
+ # implementation.yaml validity
55
55
  yq eval '.' outputs/implementation.yaml
56
56
 
57
- # 마일스톤 확인
57
+ # Check milestone count
58
58
  grep -c "^## Milestone" outputs/project_plan.md
59
59
  ```
@@ -1,88 +1,84 @@
1
1
  # Stage 04: UI/UX Planning
2
2
 
3
- 사용자 인터페이스 경험 설계 단계
3
+ User interface and experience design stage
4
4
 
5
- ## 🎭 페르소나: User Experience Designer
5
+ ## Persona: User Experience Designer
6
6
 
7
- > 당신은 User Experience Designer입니다.
8
- > 항상 사용자 관점에서 생각하고, 직관적인 경험을 설계하세요.
9
- > 모든 사용자가 쉽게 사용할 있도록 접근성을 고려하세요.
7
+ > You are a User Experience Designer.
8
+ > Always think from the user's perspective and design intuitive experiences.
9
+ > Consider accessibility so all users can use it easily.
10
10
 
11
- ### 특성
12
- - 사용자 공감
13
- - 시각적 사고
14
- - 인터랙션 설계
15
- - 접근성 고려
11
+ ### Characteristics
12
+ - User empathy
13
+ - Visual thinking
14
+ - Interaction design
15
+ - Accessibility consideration
16
16
 
17
- ### 권장 행동
18
- - 사용자 시나리오 기반
19
- - 직관적 인터페이스
20
- - 일관된 디자인 시스템
21
- - 접근성 고려
17
+ ### Recommended Actions
18
+ - User scenario-based
19
+ - Intuitive interface
20
+ - Consistent design system
21
+ - Accessibility consideration
22
22
 
23
- ### 지양 행동
24
- - 기술 중심 사고
25
- - 복잡한 인터랙션
26
- - 사용자 무시
23
+ ### Actions to Avoid
24
+ - Technology-centric thinking
25
+ - Complex interactions
26
+ - Ignoring users
27
27
 
28
- ### AI 설정
29
- - **Temperature**: 0.7 (창의적 설계)
30
- - **사용자 집중도**: High
28
+ ### AI Settings
29
+ - **Temperature**: 0.7 (creative design)
30
+ - **User focus**: High
31
31
 
32
- ## 실행 모델
33
- - **Primary**: Gemini (창의적 UI 설계)
32
+ ## Execution Model
33
+ - **Primary**: Gemini (creative UI design)
34
34
  - **Mode**: Plan Mode
35
35
 
36
- ## 목표
37
- 1. 와이어프레임 설계
38
- 2. 사용자 플로우 정의
39
- 3. 디자인 시스템 기초 수립
40
- 4. 컴포넌트 라이브러리 정의
36
+ ## Goals
37
+ 1. Wireframe design
38
+ 2. User flow definition
39
+ 3. Establish design system foundation
40
+ 4. Define component library
41
41
 
42
- ## 입력 파일
42
+ ## Input Files
43
43
  - `../01-brainstorm/outputs/requirements_analysis.md`
44
44
  - `../03-planning/outputs/architecture.md`
45
45
  - `../03-planning/HANDOFF.md`
46
46
 
47
- ## 출력 파일
48
- - `outputs/wireframes.md` - 와이어프레임 (ASCII/Mermaid)
49
- - `outputs/user_flows.md` - 사용자 플로우
50
- - `outputs/design_system.md` - 디자인 시스템
51
- - `HANDOFF.md` - 다음 스테이지 인계 문서
52
-
53
- ## 워크플로우
54
-
55
- ### 1. 정보 아키텍처
56
- - 화면 구조 정의
57
- - 네비게이션 설계
58
- - 콘텐츠 계층
59
-
60
- ### 2. 와이어프레임
61
- - 주요 화면 와이어프레임
62
- - 반응형 고려사항
63
- - 상호작용 정의
64
-
65
- ### 3. 사용자 플로우
66
- - 핵심 사용자 여정
67
- - 엣지 케이스 처리
68
- - 에러 상태
69
-
70
- ### 4. 디자인 시스템
71
- - 색상 팔레트
72
- - 타이포그래피
73
- - 스페이싱 시스템
74
- - 컴포넌트 목록
75
-
76
- ## 완료 조건
77
- - [ ] 주요 화면 와이어프레임 (5개 이상)
78
- - [ ] 핵심 사용자 플로우 3개 이상
79
- - [ ] 디자인 시스템 기초 정의
80
- - [ ] 컴포넌트 목록 작성
81
- - [ ] HANDOFF.md 생성
82
-
83
- ## 다음 스테이지
84
- → **05-task-management**: 태스크 분해 스프린트 계획
85
-
86
-
87
-
88
-
47
+ ## Output Files
48
+ - `outputs/wireframes.md` - Wireframes (ASCII/Mermaid)
49
+ - `outputs/user_flows.md` - User flows
50
+ - `outputs/design_system.md` - Design system
51
+ - `HANDOFF.md` - Handoff document for next stage
52
+
53
+ ## Workflow
54
+
55
+ ### 1. Information Architecture
56
+ - Define screen structure
57
+ - Navigation design
58
+ - Content hierarchy
59
+
60
+ ### 2. Wireframes
61
+ - Main screen wireframes
62
+ - Responsive considerations
63
+ - Interaction definitions
64
+
65
+ ### 3. User Flows
66
+ - Core user journeys
67
+ - Edge case handling
68
+ - Error states
69
+
70
+ ### 4. Design System
71
+ - Color palette
72
+ - Typography
73
+ - Spacing system
74
+ - Component list
75
+
76
+ ## Completion Criteria
77
+ - [ ] Main screen wireframes (5+)
78
+ - [ ] 3+ core user flows
79
+ - [ ] Design system foundation definition
80
+ - [ ] Component list creation
81
+ - [ ] Generate HANDOFF.md
82
+
83
+ ## Next Stage
84
+ → **05-task-management**: Task breakdown and sprint planning
@@ -3,7 +3,7 @@
3
3
  stage:
4
4
  id: "04-ui-ux"
5
5
  name: "UI/UX Planning"
6
- description: "사용자 인터페이스 경험 설계"
6
+ description: "User interface and experience design"
7
7
 
8
8
  models:
9
9
  primary: "gemini"
@@ -44,10 +44,10 @@ prompts:
44
44
 
45
45
  completion:
46
46
  checklist:
47
- - "주요 화면 와이어프레임 5개 이상"
48
- - "핵심 사용자 플로우 3개 이상"
49
- - "디자인 시스템 기초 정의"
50
- - "컴포넌트 목록 작성"
47
+ - "5+ main screen wireframes"
48
+ - "3+ core user flows"
49
+ - "Design system foundation definition"
50
+ - "Component list creation"
51
51
 
52
52
  transition:
53
53
  next_stage: "05-task-management"
@@ -1,56 +1,56 @@
1
- # AI 협업 프롬프트 - UI/UX Planning
1
+ # AI Collaboration Prompt - UI/UX Planning
2
2
 
3
- ## 협업 모드: Debate + Parallel
3
+ ## Collaboration Mode: Debate + Parallel
4
4
 
5
- 스테이지에서는 **토론 모드**로 UX 방향성을 결정하고, **병렬 모드**로 세부 설계를 진행합니다.
5
+ This stage uses **debate mode** to determine UX direction, then **parallel mode** for detailed design.
6
6
 
7
- ### 참여 모델
8
- - **Gemini**: 창의적 UI 설계, 와이어프레임 생성
9
- - **Claude**: 사용성 검토, 접근성 평가
7
+ ### Participating Models
8
+ - **Gemini**: Creative UI design, wireframe generation
9
+ - **Claude**: Usability review, accessibility assessment
10
10
 
11
- ### 협업 프롬프트
11
+ ### Collaboration Prompt
12
12
 
13
13
  ```
14
- # UX 방향 토론
15
- /collaborate --mode debate --topic "사용자 경험 방향성" --rounds 2
14
+ # UX Direction Debate
15
+ /collaborate --mode debate --topic "user experience direction" --rounds 2
16
16
 
17
- # 병렬 설계
18
- /collaborate --mode parallel --models gemini,claude --task "UI 컴포넌트 설계"
17
+ # Parallel Design
18
+ /collaborate --mode parallel --models gemini,claude --task "UI component design"
19
19
  ```
20
20
 
21
- ### 토론 주제
21
+ ### Debate Topics
22
22
 
23
- 1. **인터랙션 패턴**: 전통적 vs 혁신적
24
- 2. **정보 아키텍처**: 평면 vs 계층
25
- 3. **디자인 시스템**: 기존 사용 vs 커스텀
23
+ 1. **Interaction Patterns**: Traditional vs Innovative
24
+ 2. **Information Architecture**: Flat vs Hierarchical
25
+ 3. **Design System**: Existing vs Custom
26
26
 
27
- ### 작업 분담
27
+ ### Task Distribution
28
28
 
29
- | AI | 담당 영역 | 출력 |
30
- |----|----------|------|
31
- | Gemini | 와이어프레임, 시각 설계 | wireframes.md |
32
- | Claude | 사용자 플로우, 접근성 검토 | user_flows.md |
29
+ | AI | Responsibility | Output |
30
+ |----|----------------|--------|
31
+ | Gemini | Wireframes, visual design | wireframes.md |
32
+ | Claude | User flows, accessibility review | user_flows.md |
33
33
 
34
- ### 디자인 검토 체크리스트
34
+ ### Design Review Checklist
35
35
 
36
- - [ ] 사용자 시나리오 기반 설계
37
- - [ ] 반응형 고려
38
- - [ ] 접근성 (WCAG 2.1)
39
- - [ ] 일관된 디자인 언어
36
+ - [ ] User scenario-based design
37
+ - [ ] Responsive considerations
38
+ - [ ] Accessibility (WCAG 2.1)
39
+ - [ ] Consistent design language
40
40
 
41
- ### 출력 형식
41
+ ### Output Format
42
42
 
43
43
  ```markdown
44
- ## AI 협업 결과
44
+ ## AI Collaboration Results
45
45
 
46
- ### Gemini 설계
47
- - 와이어프레임 (ASCII/Mermaid)
48
- - 색상/타이포그래피 제안
46
+ ### Gemini Design
47
+ - Wireframes (ASCII/Mermaid)
48
+ - Color/typography suggestions
49
49
 
50
- ### Claude 검토
51
- - 사용성 평가
52
- - 접근성 개선점
50
+ ### Claude Review
51
+ - Usability assessment
52
+ - Accessibility improvements
53
53
 
54
- ### 통합 디자인 시스템
55
- - [최종 컴포넌트 목록]
54
+ ### Integrated Design System
55
+ - [Final component list]
56
56
  ```
@@ -1,54 +1,54 @@
1
- # 산출물 검증 프롬프트 - UI/UX Planning
1
+ # Output Validation Prompt - UI/UX Planning
2
2
 
3
- ## 검증 대상
3
+ ## Validation Targets
4
4
 
5
- | 산출물 | 필수 조건 | 검증 방법 |
6
- |--------|----------|----------|
7
- | `wireframes.md` | 주요 화면 5개+ | 수량 확인 |
8
- | `user_flows.md` | 핵심 플로우 3개+ | 수량 확인 |
9
- | `design_system.md` | 색상/타이포/스페이싱 | 구조 확인 |
10
- | `HANDOFF.md` | 컴포넌트 목록 | 항목 확인 |
5
+ | Output | Required Conditions | Validation Method |
6
+ |--------|---------------------|-------------------|
7
+ | `wireframes.md` | 5+ main screens | Count verification |
8
+ | `user_flows.md` | 3+ core flows | Count verification |
9
+ | `design_system.md` | Color/typography/spacing | Structure verification |
10
+ | `HANDOFF.md` | Component list | Item verification |
11
11
 
12
- ## 검증 명령
12
+ ## Validation Command
13
13
 
14
14
  ```bash
15
15
  /validate --stage 04-ui-ux
16
16
  ```
17
17
 
18
- ## 품질 기준
18
+ ## Quality Criteria
19
19
 
20
20
  ### wireframes.md
21
- - [ ] 주요 화면 5개 이상
22
- - [ ] 화면 설명
23
- - [ ] 반응형 breakpoint 고려
24
- - [ ] 상호작용 설명
21
+ - [ ] 5+ main screens
22
+ - [ ] Description for each screen
23
+ - [ ] Responsive breakpoint considerations
24
+ - [ ] Interaction descriptions
25
25
 
26
26
  ### user_flows.md
27
- - [ ] 핵심 사용자 플로우 3개 이상
28
- - [ ] 플로우 다이어그램
29
- - [ ] 엣지 케이스 처리
30
- - [ ] 에러 상태 정의
27
+ - [ ] 3+ core user flows
28
+ - [ ] Diagram for each flow
29
+ - [ ] Edge case handling
30
+ - [ ] Error state definitions
31
31
 
32
32
  ### design_system.md
33
- - [ ] 색상 팔레트 (Primary, Secondary, Neutral)
34
- - [ ] 타이포그래피 스케일
35
- - [ ] 스페이싱 시스템
36
- - [ ] 컴포넌트 목록 변형
33
+ - [ ] Color palette (Primary, Secondary, Neutral)
34
+ - [ ] Typography scale
35
+ - [ ] Spacing system
36
+ - [ ] Component list and variants
37
37
 
38
38
  ### HANDOFF.md
39
- - [ ] 구현할 컴포넌트 목록
40
- - [ ] 우선순위 지정
41
- - [ ] 기술적 고려사항
39
+ - [ ] Components to implement list
40
+ - [ ] Priority assignments
41
+ - [ ] Technical considerations
42
42
 
43
- ## 자동 검증 스크립트
43
+ ## Automated Validation Script
44
44
 
45
45
  ```bash
46
- # 와이어프레임 확인
46
+ # Check wireframe count
47
47
  grep -c "^### " outputs/wireframes.md
48
48
 
49
- # 사용자 플로우 확인
49
+ # Check user flow count
50
50
  grep -c "^## Flow" outputs/user_flows.md
51
51
 
52
- # 디자인 시스템 섹션 확인
53
- grep -E "^## (색상|Color|타이포|Typography|스페이싱|Spacing)" outputs/design_system.md
52
+ # Check design system sections
53
+ grep -E "^## (Color|Typography|Spacing)" outputs/design_system.md
54
54
  ```