Issue Analysis Command
User Input
$ARGUMENTS
You MUST consider the user input before proceeding (if not empty).
Outline
Parse User Input:
- Extract task description from $ARGUMENTS
- Generate task name (2-4 words, English, hyphen-separated)
Define Problem:
- Identify current situation, problem to solve, and goals
Investigate Solutions:
- Research 2-4 approaches
- Analyze pros/cons of each approach
- Evaluate based on coding principles
Final Selection:
- Choose the most appropriate approach
- Clarify rejection reasons
Generate Questions:
- Select maximum 3 unclear items only
- Use reasonable defaults + Assumptions for the rest
Write Documents (Dual Language):
- Create
docs/work/WORK-{task-name}/analysis.ko.md (Korean - for user reference)
- Create
docs/work/WORK-{task-name}/analysis.md (English - for agent consumption)
Key Rules
📝 Documentation Language
CRITICAL: You must generate TWO versions of all documents:
- Korean version (
analysis.ko.md): For user reference - written in Korean
- English version (
analysis.md): For agent consumption - written in English
Both versions must contain identical structure and information, only the language differs.
🎯 Balanced Analysis Principles
- Problem Definition: Include concrete scenarios rather than abstract descriptions
- Solution Approach: Consider both user perspective and technical feasibility
- Implementation Method: Keep core changes concise, specify new dependencies
- Completion Criteria: Separate feature verification and technical implementation
🎭 Anti-Bias Rules (CRITICAL)
Core Principle: Be honest. Don't hide what exists, don't invent what doesn't.
Analyze First, Conclude Later
- Complete ALL approach analysis BEFORE making any selection
Write What's True
- If A has 5 pros and B has 1, write exactly that (no forced balance)
- If side effects exist, state them; if none, say so (no hiding, no inventing)
- When rejecting an approach, acknowledge what you're giving up
Neutral Language
- Forbidden: "simply", "obviously", "clearly", "just", "merely"
- Use: "may", "could", "potentially"
✅ Must Do
- Conclusion first (Executive Summary)
- Include concrete scenarios (Problem Definition) - 1-4 cases depending on issue
- Explain user impact (Solution Approach) - How will it be used?
- Evaluate technical feasibility (Solution Approach) - Why is it suitable?
- Evaluate solutions based on coding principles
- Concise bullet points
- NEEDS CLARIFICATION maximum 3
- Use reasonable defaults
❌ Must Not Do
- Verbose explanations
- Duplicate content
- Only abstract problem definitions (without concrete examples)
- Excessive technical details (going into implementation level)
- Missing user perspective (talking only about technology)
- Solutions that conflict with coding principles
- Infinite questions
- Listing obvious things (e.g., React state, JSON schema)
Document Template
Files to create:
docs/work/WORK-{task-name}/analysis.ko.md (Korean version)
docs/work/WORK-{task-name}/analysis.md (English version)
# [Task Name] - Analysis Result
## 🎯 Conclusion (TL;DR)
**Selected Approach**: [Approach Name]
**Key Reason**: [Why this approach was chosen - 1-2 sentences]
---
## 📋 Problem Definition
**Concrete Scenarios** (as needed):
- [Case 1: What problem occurs in what situation]
- [Case 2: Another specific situation]
**Current Problem**: [What is inconvenient or impossible]
**Goal**: [What this task aims to achieve]
---
## 📦 Scope
**Included**:
- [Scope Item 1]
- [Scope Item 2]
**Excluded**:
- [What to explicitly exclude]
---
## 🔍 Solution Investigation
### Approach 1: [Name]
**Method**:
- [How to solve - including user impact and technical method]
**Pros**:
- [List ALL genuine pros]
**Cons**:
- [List ALL genuine cons]
**Side Effects/Risks** (if any):
- [What negative consequences may occur]
### Approach 2: [Name]
[Same structure]
---
## ✅ Final Selection
**Adopted**: Approach N
**Trade-offs Accepted** (if any):
- [Benefit from other approaches that won't be available]
**Known Risks** (if any):
- [What could go wrong]
**Selection Reason**:
- [Why this approach is most suitable]
**Rejected Approaches** (include what you're losing):
- Approach X: [Rejection reason] — Would have provided: [lost benefit]
---
## 🛠️ Implementation Method
**Core Changes**:
- [Change Item 1]
- [Change Item 2]
**New Dependencies**: [None / Name]
---
## 🎯 Completion Criteria
**Feature Verification**:
- [ ] [Scenario 1 verification]
- [ ] [Existing feature regression test]
**Technical Implementation**:
- [ ] [Core change implementation]
- [ ] [Unit test writing]
---
## ❓ Needs Confirmation
**Current Assumptions**:
- [Assumption 1]: [Default value]
**If Needed**:
- [Items needing additional confirmation - maximum 3]
---
## 🔍 Objectivity Self-Check
- [ ] Wrote what's true (no hiding, no inventing)
- [ ] Rejected approaches' lost benefits acknowledged
- [ ] Used neutral language ("may/could", not "will/obviously")
Execution
Now start the task according to the guidelines above.
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: workflow-analyze-43description: Analyze issue and generate analysis.md with solution approaches. Use when starting a new task or feature to thoroughly analyze the problem and compare solution options. Use when this capability is needed.4---56# Issue Analysis Command78## User Input910```text11$ARGUMENTS12```1314You **MUST** consider the user input before proceeding (if not empty).1516---1718## Outline19201. **Parse User Input**:21 - Extract task description from $ARGUMENTS22 - Generate task name (2-4 words, English, hyphen-separated)23242. **Define Problem**:25 - Identify current situation, problem to solve, and goals26273. **Investigate Solutions**:28 - Research 2-4 approaches29 - Analyze pros/cons of each approach30 - Evaluate based on coding principles31324. **Final Selection**:33 - Choose the most appropriate approach34 - Clarify rejection reasons35365. **Generate Questions**:37 - Select **maximum 3** unclear items only38 - Use reasonable defaults + Assumptions for the rest39406. **Write Documents** (Dual Language):41 - Create `docs/work/WORK-{task-name}/analysis.ko.md` (Korean - for user reference)42 - Create `docs/work/WORK-{task-name}/analysis.md` (English - for agent consumption)4344---4546## Key Rules4748### 📝 Documentation Language4950**CRITICAL**: You must generate **TWO versions** of all documents:51521. **Korean version** (`analysis.ko.md`): For user reference - written in Korean532. **English version** (`analysis.md`): For agent consumption - written in English5455**Both versions must contain identical structure and information**, only the language differs.5657### 🎯 Balanced Analysis Principles58591. **Problem Definition**: Include concrete scenarios rather than abstract descriptions602. **Solution Approach**: Consider both user perspective and technical feasibility613. **Implementation Method**: Keep core changes concise, specify new dependencies624. **Completion Criteria**: Separate feature verification and technical implementation6364### 🎭 Anti-Bias Rules (CRITICAL)6566**Core Principle: Be honest. Don't hide what exists, don't invent what doesn't.**67681. **Analyze First, Conclude Later**69 - Complete ALL approach analysis BEFORE making any selection70712. **Write What's True**72 - If A has 5 pros and B has 1, write exactly that (no forced balance)73 - If side effects exist, state them; if none, say so (no hiding, no inventing)74 - When rejecting an approach, acknowledge what you're giving up75763. **Neutral Language**77 - Forbidden: "simply", "obviously", "clearly", "just", "merely"78 - Use: "may", "could", "potentially"7980### ✅ Must Do8182- Conclusion first (Executive Summary)83- **Include concrete scenarios** (Problem Definition) - 1-4 cases depending on issue84- **Explain user impact** (Solution Approach) - How will it be used?85- **Evaluate technical feasibility** (Solution Approach) - Why is it suitable?86- Evaluate solutions based on coding principles87- Concise bullet points88- **NEEDS CLARIFICATION maximum 3**89- Use reasonable defaults9091### ❌ Must Not Do9293- Verbose explanations94- Duplicate content95- **Only abstract problem definitions** (without concrete examples)96- **Excessive technical details** (going into implementation level)97- **Missing user perspective** (talking only about technology)98- Solutions that conflict with coding principles99- Infinite questions100- **Listing obvious things** (e.g., React state, JSON schema)101102---103104## Document Template105106Files to create:107108- `docs/work/WORK-{task-name}/analysis.ko.md` (Korean version)109- `docs/work/WORK-{task-name}/analysis.md` (English version)110111```markdown112# [Task Name] - Analysis Result113114## 🎯 Conclusion (TL;DR)115116**Selected Approach**: [Approach Name]117**Key Reason**: [Why this approach was chosen - 1-2 sentences]118119---120121## 📋 Problem Definition122123**Concrete Scenarios** (as needed):124125- [Case 1: What problem occurs in what situation]126- [Case 2: Another specific situation]127128**Current Problem**: [What is inconvenient or impossible]129**Goal**: [What this task aims to achieve]130131---132133## 📦 Scope134135**Included**:136137- [Scope Item 1]138- [Scope Item 2]139140**Excluded**:141142- [What to explicitly exclude]143144---145146## 🔍 Solution Investigation147148### Approach 1: [Name]149150**Method**:151152- [How to solve - including user impact and technical method]153154**Pros**:155156- [List ALL genuine pros]157158**Cons**:159160- [List ALL genuine cons]161162**Side Effects/Risks** (if any):163164- [What negative consequences may occur]165166### Approach 2: [Name]167168[Same structure]169170---171172## ✅ Final Selection173174**Adopted**: Approach N175176**Trade-offs Accepted** (if any):177178- [Benefit from other approaches that won't be available]179180**Known Risks** (if any):181182- [What could go wrong]183184**Selection Reason**:185186- [Why this approach is most suitable]187188**Rejected Approaches** (include what you're losing):189190- Approach X: [Rejection reason] — Would have provided: [lost benefit]191192---193194## 🛠️ Implementation Method195196**Core Changes**:197198- [Change Item 1]199- [Change Item 2]200201**New Dependencies**: [None / Name]202203---204205## 🎯 Completion Criteria206207**Feature Verification**:208209- [ ] [Scenario 1 verification]210- [ ] [Existing feature regression test]211212**Technical Implementation**:213214- [ ] [Core change implementation]215- [ ] [Unit test writing]216217---218219## ❓ Needs Confirmation220221**Current Assumptions**:222223- [Assumption 1]: [Default value]224225**If Needed**:226227- [Items needing additional confirmation - maximum 3]228229---230231## 🔍 Objectivity Self-Check232233- [ ] Wrote what's true (no hiding, no inventing)234- [ ] Rejected approaches' lost benefits acknowledged235- [ ] Used neutral language ("may/could", not "will/obviously")236```237238---239240## Execution241242Now start the task according to the guidelines above.243244---245> Converted and distributed by [TomeVault](https://tomevault.io/claim/kubrickcode) — claim your Tome and manage your conversions.246<!-- tomevault:4.0:skill_md:2026-04-12 -->