mirror of
https://github.com/catlog22/Claude-Code-Workflow.git
synced 2026-02-15 02:42:45 +08:00
Compare commits
6 Commits
claude/ana
...
claude/ana
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
61c08e1585 | ||
|
|
1e9ca574ed | ||
|
|
5f0dab409b | ||
|
|
c679253c30 | ||
|
|
38f2355573 | ||
|
|
2fb1015038 |
652
.claude/commands/workflow/lite-fix.md
Normal file
652
.claude/commands/workflow/lite-fix.md
Normal file
@@ -0,0 +1,652 @@
|
||||
---
|
||||
name: lite-fix
|
||||
description: Lightweight bug diagnosis and fix workflow with intelligent severity assessment and optional hotfix mode for production incidents
|
||||
argument-hint: "[--hotfix] \"bug description or issue reference\""
|
||||
allowed-tools: TodoWrite(*), Task(*), SlashCommand(*), AskUserQuestion(*), Read(*), Bash(*)
|
||||
---
|
||||
|
||||
# Workflow Lite-Fix Command (/workflow:lite-fix)
|
||||
|
||||
## Overview
|
||||
|
||||
Fast-track bug fixing workflow optimized for quick diagnosis, targeted fixes, and streamlined verification. Automatically adjusts process complexity based on impact assessment.
|
||||
|
||||
**Core capabilities:**
|
||||
- Rapid root cause diagnosis with intelligent code search
|
||||
- Automatic severity assessment and adaptive workflow
|
||||
- Fix strategy selection (immediate patch vs comprehensive refactor)
|
||||
- Risk-aware verification (smoke tests to full suite)
|
||||
- Optional hotfix mode for production incidents with branch management
|
||||
- Automatic follow-up task generation for hotfixes
|
||||
|
||||
## Usage
|
||||
|
||||
### Command Syntax
|
||||
```bash
|
||||
/workflow:lite-fix [FLAGS] <BUG_DESCRIPTION>
|
||||
|
||||
# Flags
|
||||
--hotfix, -h Production hotfix mode (creates hotfix branch, auto follow-up)
|
||||
|
||||
# Arguments
|
||||
<bug-description> Bug description or issue reference (required)
|
||||
```
|
||||
|
||||
### Modes
|
||||
|
||||
| Mode | Time Budget | Use Case | Workflow Characteristics |
|
||||
|------|-------------|----------|--------------------------|
|
||||
| **Default** | Auto-adapt (15min-4h) | All standard bugs | Intelligent severity assessment + adaptive process |
|
||||
| **Hotfix** (`--hotfix`) | 15-30 min | Production outage | Minimal diagnosis + hotfix branch + auto follow-up |
|
||||
|
||||
### Examples
|
||||
|
||||
```bash
|
||||
# Default mode: Automatically adjusts based on impact
|
||||
/workflow:lite-fix "User avatar upload fails with 413 error"
|
||||
/workflow:lite-fix "Shopping cart randomly loses items at checkout"
|
||||
|
||||
# Hotfix mode: Production incident
|
||||
/workflow:lite-fix --hotfix "Payment gateway 5xx errors"
|
||||
```
|
||||
|
||||
## Execution Process
|
||||
|
||||
### Workflow Overview
|
||||
|
||||
```
|
||||
Bug Input → Diagnosis (Phase 1) → Impact Assessment (Phase 2)
|
||||
↓
|
||||
Severity Auto-Detection → Fix Planning (Phase 3)
|
||||
↓
|
||||
Verification Strategy (Phase 4) → User Confirmation (Phase 5) → Execution (Phase 6)
|
||||
```
|
||||
|
||||
### Phase Summary
|
||||
|
||||
| Phase | Default Mode | Hotfix Mode |
|
||||
|-------|--------------|-------------|
|
||||
| 1. Diagnosis | Adaptive search depth | Minimal (known issue) |
|
||||
| 2. Impact Assessment | Full risk scoring | Critical path only |
|
||||
| 3. Fix Planning | Strategy options based on complexity | Single surgical fix |
|
||||
| 4. Verification | Test level matches risk score | Smoke tests only |
|
||||
| 5. User Confirmation | 3 dimensions | 2 dimensions |
|
||||
| 6. Execution | Via lite-execute | Via lite-execute + monitoring |
|
||||
|
||||
---
|
||||
|
||||
## Detailed Phase Execution
|
||||
|
||||
### Phase 1: Diagnosis & Root Cause Analysis
|
||||
|
||||
**Goal**: Identify root cause and affected code paths
|
||||
|
||||
**Execution Strategy**:
|
||||
|
||||
**Default Mode** - Adaptive search:
|
||||
- **High confidence keywords** (e.g., specific error messages): Direct grep search (5min)
|
||||
- **Medium confidence**: cli-explore-agent with focused search (10-15min)
|
||||
- **Low confidence** (vague symptoms): cli-explore-agent with broad search (20min)
|
||||
|
||||
```javascript
|
||||
// Confidence-based strategy selection
|
||||
if (has_specific_error_message || has_file_path_hint) {
|
||||
// Quick targeted search
|
||||
grep -r '${error_message}' src/ --include='*.ts' -n | head -10
|
||||
git log --oneline --since='1 week ago' -- '*affected*'
|
||||
} else {
|
||||
// Deep exploration
|
||||
Task(subagent_type="cli-explore-agent", prompt=`
|
||||
Bug: ${bug_description}
|
||||
Execute diagnostic search:
|
||||
1. Search error patterns and similar issues
|
||||
2. Trace execution path in affected modules
|
||||
3. Check recent changes
|
||||
Return: Root cause hypothesis, affected paths, reproduction steps
|
||||
`)
|
||||
}
|
||||
```
|
||||
|
||||
**Hotfix Mode** - Minimal search:
|
||||
```bash
|
||||
Read(suspected_file) # User typically knows the file
|
||||
git blame ${suspected_file}
|
||||
```
|
||||
|
||||
**Output Structure**:
|
||||
```javascript
|
||||
{
|
||||
root_cause: {
|
||||
file: "src/auth/tokenValidator.ts",
|
||||
line_range: "45-52",
|
||||
issue: "Token expiration check uses wrong comparison",
|
||||
introduced_by: "commit abc123"
|
||||
},
|
||||
reproduction_steps: ["Login", "Wait 15min", "Access protected route"],
|
||||
affected_scope: {
|
||||
users: "All authenticated users",
|
||||
features: ["login", "API access"],
|
||||
data_risk: "none"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
**TodoWrite**: Mark Phase 1 completed, Phase 2 in_progress
|
||||
|
||||
---
|
||||
|
||||
### Phase 2: Impact Assessment & Severity Auto-Detection
|
||||
|
||||
**Goal**: Quantify blast radius and auto-determine severity
|
||||
|
||||
**Risk Score Calculation**:
|
||||
```javascript
|
||||
risk_score = (user_impact × 0.4) + (system_risk × 0.3) + (business_impact × 0.3)
|
||||
|
||||
// Auto-severity mapping
|
||||
if (risk_score >= 8.0) severity = "critical"
|
||||
else if (risk_score >= 5.0) severity = "high"
|
||||
else if (risk_score >= 3.0) severity = "medium"
|
||||
else severity = "low"
|
||||
|
||||
// Workflow adaptation
|
||||
if (severity >= "high") {
|
||||
diagnosis_depth = "focused"
|
||||
test_strategy = "smoke_and_critical"
|
||||
review_optional = true
|
||||
} else {
|
||||
diagnosis_depth = "comprehensive"
|
||||
test_strategy = "full_suite"
|
||||
review_optional = false
|
||||
}
|
||||
```
|
||||
|
||||
**Assessment Output**:
|
||||
```javascript
|
||||
{
|
||||
affected_users: {
|
||||
count: "5000 active users (100%)",
|
||||
severity: "high"
|
||||
},
|
||||
system_risk: {
|
||||
availability: "degraded_30%",
|
||||
cascading_failures: "possible_logout_storm"
|
||||
},
|
||||
business_impact: {
|
||||
revenue: "medium",
|
||||
reputation: "high",
|
||||
sla_breach: "yes"
|
||||
},
|
||||
risk_score: 7.1,
|
||||
severity: "high",
|
||||
workflow_adaptation: {
|
||||
test_strategy: "focused_integration",
|
||||
review_required: false,
|
||||
time_budget: "1_hour"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
**Hotfix Mode**: Skip detailed assessment, assume critical
|
||||
|
||||
**TodoWrite**: Mark Phase 2 completed, Phase 3 in_progress
|
||||
|
||||
---
|
||||
|
||||
### Phase 3: Fix Planning & Strategy Selection
|
||||
|
||||
**Goal**: Generate fix options with trade-off analysis
|
||||
|
||||
**Strategy Generation**:
|
||||
|
||||
**Default Mode** - Complexity-adaptive:
|
||||
- **Low risk score (<5.0)**: Generate 2-3 strategy options for user selection
|
||||
- **High risk score (≥5.0)**: Generate single best strategy for speed
|
||||
|
||||
```javascript
|
||||
strategies = generateFixStrategies(root_cause, risk_score)
|
||||
|
||||
if (risk_score >= 5.0 || mode === "hotfix") {
|
||||
// Single best strategy
|
||||
return strategies[0] // Fastest viable fix
|
||||
} else {
|
||||
// Multiple options with trade-offs
|
||||
return strategies // Let user choose
|
||||
}
|
||||
```
|
||||
|
||||
**Example Strategies**:
|
||||
```javascript
|
||||
// Low risk: Multiple options
|
||||
[
|
||||
{
|
||||
strategy: "immediate_patch",
|
||||
description: "Fix comparison operator",
|
||||
estimated_time: "15 minutes",
|
||||
risk: "low",
|
||||
pros: ["Quick fix"],
|
||||
cons: ["Doesn't address underlying issue"]
|
||||
},
|
||||
{
|
||||
strategy: "comprehensive_fix",
|
||||
description: "Refactor token validation logic",
|
||||
estimated_time: "2 hours",
|
||||
risk: "medium",
|
||||
pros: ["Addresses root cause"],
|
||||
cons: ["Longer implementation"]
|
||||
}
|
||||
]
|
||||
|
||||
// High risk or hotfix: Single option
|
||||
{
|
||||
strategy: "surgical_fix",
|
||||
description: "Minimal change to fix comparison",
|
||||
files: ["src/auth/tokenValidator.ts:47"],
|
||||
estimated_time: "5 minutes",
|
||||
risk: "minimal"
|
||||
}
|
||||
```
|
||||
|
||||
**Complexity Assessment**:
|
||||
```javascript
|
||||
if (complexity === "high" && risk_score < 5.0) {
|
||||
suggestCommand("/workflow:plan --mode bugfix")
|
||||
return // Escalate to full planning
|
||||
}
|
||||
```
|
||||
|
||||
**TodoWrite**: Mark Phase 3 completed, Phase 4 in_progress
|
||||
|
||||
---
|
||||
|
||||
### Phase 4: Verification Strategy
|
||||
|
||||
**Goal**: Define testing approach based on severity
|
||||
|
||||
**Adaptive Test Strategy**:
|
||||
|
||||
| Risk Score | Test Scope | Duration | Automation |
|
||||
|------------|------------|----------|------------|
|
||||
| **< 3.0** (Low) | Full test suite | 15-20 min | `npm test` |
|
||||
| **3.0-5.0** (Medium) | Focused integration | 8-12 min | `npm test -- affected-module.test.ts` |
|
||||
| **5.0-8.0** (High) | Smoke + critical | 5-8 min | `npm test -- critical.smoke.test.ts` |
|
||||
| **≥ 8.0** (Critical) | Smoke only | 2-5 min | `npm test -- smoke.test.ts` |
|
||||
| **Hotfix** | Production smoke | 2-3 min | `npm test -- production.smoke.test.ts` |
|
||||
|
||||
**Branch Strategy**:
|
||||
|
||||
**Default Mode**:
|
||||
```javascript
|
||||
{
|
||||
type: "feature_branch",
|
||||
base: "main",
|
||||
name: "fix/token-expiration-edge-case",
|
||||
merge_target: "main"
|
||||
}
|
||||
```
|
||||
|
||||
**Hotfix Mode**:
|
||||
```javascript
|
||||
{
|
||||
type: "hotfix_branch",
|
||||
base: "production_tag_v2.3.1", // ⚠️ From production tag
|
||||
name: "hotfix/token-validation-fix",
|
||||
merge_target: ["main", "production"] // Dual merge
|
||||
}
|
||||
```
|
||||
|
||||
**TodoWrite**: Mark Phase 4 completed, Phase 5 in_progress
|
||||
|
||||
---
|
||||
|
||||
### Phase 5: User Confirmation & Execution Selection
|
||||
|
||||
**Adaptive Confirmation Dimensions**:
|
||||
|
||||
**Default Mode** - 3 dimensions (adapted by risk score):
|
||||
|
||||
```javascript
|
||||
dimensions = [
|
||||
{
|
||||
question: "Confirm fix approach?",
|
||||
options: ["Proceed", "Modify", "Escalate to /workflow:plan"]
|
||||
},
|
||||
{
|
||||
question: "Execution method:",
|
||||
options: ["Agent", "CLI Tool (Codex/Gemini)", "Manual (plan only)"]
|
||||
},
|
||||
{
|
||||
question: "Verification level:",
|
||||
options: adaptedByRiskScore() // Auto-suggest based on Phase 2
|
||||
}
|
||||
]
|
||||
|
||||
// If risk_score >= 5.0, auto-skip code review dimension
|
||||
// If risk_score < 5.0, add optional code review dimension
|
||||
if (risk_score < 5.0) {
|
||||
dimensions.push({
|
||||
question: "Post-fix review:",
|
||||
options: ["Gemini", "Skip"]
|
||||
})
|
||||
}
|
||||
```
|
||||
|
||||
**Hotfix Mode** - 2 dimensions (minimal):
|
||||
```javascript
|
||||
[
|
||||
{
|
||||
question: "Confirm hotfix deployment:",
|
||||
options: ["Deploy", "Stage First", "Abort"]
|
||||
},
|
||||
{
|
||||
question: "Post-deployment monitoring:",
|
||||
options: ["Real-time (15 min)", "Passive (alerts only)"]
|
||||
}
|
||||
]
|
||||
```
|
||||
|
||||
**TodoWrite**: Mark Phase 5 completed, Phase 6 in_progress
|
||||
|
||||
---
|
||||
|
||||
### Phase 6: Execution Dispatch & Follow-up
|
||||
|
||||
**Dispatch to lite-execute**:
|
||||
|
||||
```javascript
|
||||
executionContext = {
|
||||
mode: "bugfix",
|
||||
severity: auto_detected_severity, // From Phase 2
|
||||
planObject: plan,
|
||||
diagnosisContext: diagnosis,
|
||||
impactContext: impact_assessment,
|
||||
verificationStrategy: test_strategy,
|
||||
branchStrategy: branch_strategy,
|
||||
executionMethod: user_selection.execution_method
|
||||
}
|
||||
|
||||
SlashCommand("/workflow:lite-execute --in-memory --mode bugfix")
|
||||
```
|
||||
|
||||
**Hotfix Auto Follow-up**:
|
||||
|
||||
```javascript
|
||||
if (mode === "hotfix") {
|
||||
follow_up_tasks = [
|
||||
{
|
||||
id: `FOLLOWUP-${taskId}-comprehensive`,
|
||||
title: "Replace hotfix with comprehensive fix",
|
||||
priority: "high",
|
||||
due_date: "within_3_days",
|
||||
description: "Refactor quick hotfix into proper solution with full test coverage"
|
||||
},
|
||||
{
|
||||
id: `FOLLOWUP-${taskId}-postmortem`,
|
||||
title: "Incident postmortem",
|
||||
priority: "medium",
|
||||
due_date: "within_1_week",
|
||||
sections: ["Timeline", "Root cause", "Prevention measures"]
|
||||
}
|
||||
]
|
||||
|
||||
Write(`.workflow/lite-fixes/${taskId}-followup.json`, follow_up_tasks)
|
||||
|
||||
console.log(`
|
||||
⚠️ Hotfix follow-up tasks generated:
|
||||
- Comprehensive fix: ${follow_up_tasks[0].id} (due in 3 days)
|
||||
- Postmortem: ${follow_up_tasks[1].id} (due in 1 week)
|
||||
`)
|
||||
}
|
||||
```
|
||||
|
||||
**TodoWrite**: Mark Phase 6 completed
|
||||
|
||||
---
|
||||
|
||||
## Data Structures
|
||||
|
||||
### diagnosisContext
|
||||
```javascript
|
||||
{
|
||||
symptom: string,
|
||||
error_message: string | null,
|
||||
keywords: string[],
|
||||
confidence_level: "high" | "medium" | "low", // Search confidence
|
||||
root_cause: {
|
||||
file: string,
|
||||
line_range: string,
|
||||
issue: string,
|
||||
introduced_by: string
|
||||
},
|
||||
reproduction_steps: string[],
|
||||
affected_scope: {...}
|
||||
}
|
||||
```
|
||||
|
||||
### impactContext
|
||||
```javascript
|
||||
{
|
||||
affected_users: { count: string, severity: string },
|
||||
system_risk: { availability: string, cascading_failures: string },
|
||||
business_impact: { revenue: string, reputation: string, sla_breach: string },
|
||||
risk_score: number, // 0-10
|
||||
severity: "low" | "medium" | "high" | "critical",
|
||||
workflow_adaptation: {
|
||||
diagnosis_depth: string,
|
||||
test_strategy: string,
|
||||
review_optional: boolean,
|
||||
time_budget: string
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### fixPlan
|
||||
```javascript
|
||||
{
|
||||
strategy: string,
|
||||
summary: string,
|
||||
tasks: [{
|
||||
title: string,
|
||||
file: string,
|
||||
action: "Update" | "Create" | "Delete",
|
||||
implementation: string[],
|
||||
verification: string[]
|
||||
}],
|
||||
estimated_time: string,
|
||||
recommended_execution: "Agent" | "CLI" | "Manual"
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Best Practices
|
||||
|
||||
### When to Use Default Mode
|
||||
|
||||
**Use for all standard bugs:**
|
||||
- Automatically adapts to severity (no manual mode selection needed)
|
||||
- Risk score determines workflow complexity
|
||||
- Handles 90% of bug fixing scenarios
|
||||
|
||||
**Typical scenarios:**
|
||||
- UI bugs, logic errors, edge cases
|
||||
- Performance issues (non-critical)
|
||||
- Integration failures
|
||||
- Data validation bugs
|
||||
|
||||
### When to Use Hotfix Mode
|
||||
|
||||
**Only use for production incidents:**
|
||||
- Production is down or critically degraded
|
||||
- Revenue/reputation at immediate risk
|
||||
- SLA breach occurring
|
||||
- Issue is well-understood (minimal diagnosis needed)
|
||||
|
||||
**Hotfix characteristics:**
|
||||
- Creates hotfix branch from production tag
|
||||
- Minimal diagnosis (assumes known issue)
|
||||
- Smoke tests only
|
||||
- Auto-generates follow-up tasks
|
||||
- Requires incident tracking
|
||||
|
||||
### Branching Strategy
|
||||
|
||||
**Default Mode (feature branch)**:
|
||||
```bash
|
||||
# Standard feature branch workflow
|
||||
git checkout -b fix/issue-description main
|
||||
# ... implement fix
|
||||
git checkout main && git merge fix/issue-description
|
||||
```
|
||||
|
||||
**Hotfix Mode (dual merge)**:
|
||||
```bash
|
||||
# ✅ Correct: Branch from production tag
|
||||
git checkout -b hotfix/fix-name v2.3.1
|
||||
|
||||
# Merge to both targets
|
||||
git checkout main && git merge hotfix/fix-name
|
||||
git checkout production && git merge hotfix/fix-name
|
||||
git tag v2.3.2
|
||||
|
||||
# ❌ Wrong: Branch from main
|
||||
git checkout -b hotfix/fix-name main # Contains unreleased code!
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Error Handling
|
||||
|
||||
| Error | Cause | Resolution |
|
||||
|-------|-------|------------|
|
||||
| Root cause unclear | Vague symptoms | Extend diagnosis time or use /cli:mode:bug-diagnosis |
|
||||
| Multiple potential causes | Complex interaction | Use /cli:discuss-plan for analysis |
|
||||
| Fix too complex | High-risk refactor | Escalate to /workflow:plan --mode bugfix |
|
||||
| High risk score but unsure | Uncertain severity | Default mode will adapt, proceed normally |
|
||||
|
||||
---
|
||||
|
||||
## Output Routing
|
||||
|
||||
**Lite-fix directory**:
|
||||
```
|
||||
.workflow/lite-fixes/
|
||||
├── BUGFIX-2024-10-20T14-30-00.json # Task JSON
|
||||
├── BUGFIX-2024-10-20T14-30-00-followup.json # Follow-up (hotfix only)
|
||||
└── diagnosis-cache/ # Cached diagnoses
|
||||
└── ${bug_hash}.json
|
||||
```
|
||||
|
||||
**Session-based** (if active session):
|
||||
```
|
||||
.workflow/active/WFS-feature/
|
||||
├── .bugfixes/
|
||||
│ ├── BUGFIX-001.json
|
||||
│ └── BUGFIX-001-followup.json
|
||||
└── .summaries/
|
||||
└── BUGFIX-001-summary.md
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Advanced Features
|
||||
|
||||
### 1. Intelligent Diagnosis Caching
|
||||
|
||||
Reuse diagnosis for similar bugs:
|
||||
```javascript
|
||||
cache_key = hash(bug_keywords + recent_changes_hash)
|
||||
if (cache_exists && cache_age < 7_days && similarity > 0.8) {
|
||||
diagnosis = load_from_cache()
|
||||
console.log("Using cached diagnosis (similar issue found)")
|
||||
}
|
||||
```
|
||||
|
||||
### 2. Auto-Severity Suggestion
|
||||
|
||||
Detect urgency from keywords:
|
||||
```javascript
|
||||
urgency_keywords = ["production", "down", "outage", "critical", "urgent"]
|
||||
if (bug_description.includes(urgency_keywords) && !mode_specified) {
|
||||
console.log("💡 Tip: Consider --hotfix flag for production issues")
|
||||
}
|
||||
```
|
||||
|
||||
### 3. Adaptive Workflow Intelligence
|
||||
|
||||
Real-time workflow adjustment:
|
||||
```javascript
|
||||
// During Phase 2, if risk score suddenly increases
|
||||
if (new_risk_score > initial_estimate * 1.5) {
|
||||
console.log("⚠️ Severity increased, adjusting workflow...")
|
||||
test_strategy = "more_comprehensive"
|
||||
review_required = true
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Related Commands
|
||||
|
||||
**Diagnostic Commands**:
|
||||
- `/cli:mode:bug-diagnosis` - Detailed root cause analysis (use before lite-fix if unclear)
|
||||
|
||||
**Fix Execution**:
|
||||
- `/workflow:lite-execute --in-memory` - Execute fix plan (automatically called)
|
||||
|
||||
**Planning Commands**:
|
||||
- `/workflow:plan --mode bugfix` - Complex bugs requiring comprehensive planning
|
||||
|
||||
**Review Commands**:
|
||||
- `/workflow:review --type quality` - Post-fix quality review
|
||||
|
||||
---
|
||||
|
||||
## Comparison with Other Commands
|
||||
|
||||
| Command | Use Case | Modes | Adaptation | Output |
|
||||
|---------|----------|-------|------------|--------|
|
||||
| `/workflow:lite-fix` | Bug fixes | 2 (default + hotfix) | Auto-adaptive | In-memory + JSON |
|
||||
| `/workflow:lite-plan` | New features | 1 + explore flag | Manual | In-memory + JSON |
|
||||
| `/workflow:plan` | Complex features | Multiple | Manual | Persistent session |
|
||||
| `/cli:mode:bug-diagnosis` | Analysis only | 1 | N/A | Report only |
|
||||
|
||||
---
|
||||
|
||||
## Quality Gates
|
||||
|
||||
**Before execution** (auto-checked):
|
||||
- [ ] Root cause identified (>70% confidence for default, >90% for hotfix)
|
||||
- [ ] Impact scope defined
|
||||
- [ ] Fix strategy reviewed
|
||||
- [ ] Verification plan matches risk level
|
||||
|
||||
**Hotfix-specific**:
|
||||
- [ ] Production tag identified
|
||||
- [ ] Rollback plan documented
|
||||
- [ ] Follow-up tasks generated
|
||||
- [ ] Monitoring configured
|
||||
|
||||
---
|
||||
|
||||
## When to Use lite-fix
|
||||
|
||||
✅ **Perfect for:**
|
||||
- Any bug with clear symptoms
|
||||
- Localized fixes (1-5 files)
|
||||
- Known technology stack
|
||||
- Time-sensitive but not catastrophic (default mode adapts)
|
||||
- Production incidents (use --hotfix)
|
||||
|
||||
❌ **Not suitable for:**
|
||||
- Root cause completely unclear → use `/cli:mode:bug-diagnosis` first
|
||||
- Requires architectural changes → use `/workflow:plan`
|
||||
- Complex legacy code without tests → use `/workflow:plan --legacy-refactor`
|
||||
- Performance deep-dive → use `/workflow:plan --performance-optimization`
|
||||
- Data migration → use `/workflow:plan --data-migration`
|
||||
|
||||
---
|
||||
|
||||
**Last Updated**: 2025-11-20
|
||||
**Version**: 2.0.0
|
||||
**Status**: Design Document (Simplified)
|
||||
@@ -1,374 +0,0 @@
|
||||
# Command Ambiguity Analysis
|
||||
|
||||
## Executive Summary
|
||||
|
||||
Analysis of 74 commands reveals **5 major ambiguity clusters** that could cause user confusion. The primary issues involve overlapping functionality in planning, execution, and analysis commands, with inconsistent parameter usage and unclear decision criteria.
|
||||
|
||||
---
|
||||
|
||||
## Critical Ambiguities (HIGH Priority)
|
||||
|
||||
### 1. Planning Command Overload ⚠️ CRITICAL
|
||||
|
||||
**Problem**: 5 different "plan" commands with overlapping but distinct purposes
|
||||
|
||||
| Command | Purpose | Outputs | Mode |
|
||||
|---------|---------|---------|------|
|
||||
| `/workflow:plan` | 5-phase planning workflow | IMPL_PLAN.md + task JSONs | Autonomous |
|
||||
| `/workflow:lite-plan` | Lightweight interactive planning | In-memory plan | Interactive |
|
||||
| `/workflow:replan` | Modify existing plans | Updates existing artifacts | Interactive |
|
||||
| `/cli:mode:plan` | Architecture planning | .chat/plan-*.md | Read-only |
|
||||
| `/cli:discuss-plan` | Multi-round collaborative planning | .chat/discuss-plan-*.md | Multi-model discussion |
|
||||
|
||||
**Ambiguities**:
|
||||
- ❌ **Intent confusion**: Users don't know which to use for "planning"
|
||||
- ❌ **Output confusion**: Some create tasks, some don't
|
||||
- ❌ **Workflow confusion**: Different levels of automation
|
||||
- ❌ **Scope confusion**: Project-level vs architecture-level vs modification planning
|
||||
|
||||
**User Questions**:
|
||||
- "I want to plan my project - which command do I use?"
|
||||
- "What's the difference between `/workflow:plan` and `/workflow:lite-plan`?"
|
||||
- "When should I use `/cli:mode:plan` vs `/workflow:plan`?"
|
||||
|
||||
**Recommendations**:
|
||||
1. ✅ Create decision tree documentation
|
||||
2. ✅ Rename commands to clarify scope:
|
||||
- `/workflow:plan` → `/workflow:project-plan` (full workflow)
|
||||
- `/workflow:lite-plan` → `/workflow:quick-plan` (fast planning)
|
||||
- `/cli:mode:plan` → `/cli:architecture-plan` (read-only)
|
||||
3. ✅ Add command hints in descriptions about when to use each
|
||||
|
||||
---
|
||||
|
||||
### 2. Execution Command Confusion ⚠️ CRITICAL
|
||||
|
||||
**Problem**: 5 different "execute" commands with different behaviors
|
||||
|
||||
| Command | Input | Modifies Code | Auto-Approval | Context |
|
||||
|---------|-------|---------------|---------------|---------|
|
||||
| `/workflow:execute` | Session | Via agents | No | Full workflow |
|
||||
| `/workflow:lite-execute` | Plan/prompt/file | Via agent/codex | User choice | Lightweight |
|
||||
| `/cli:execute` | Description/task-id | YES | YOLO | Direct implementation |
|
||||
| `/cli:codex-execute` | Description | YES | YOLO | Multi-stage Codex |
|
||||
| `/task:execute` | task-id | Via agent | No | Single task |
|
||||
|
||||
**Ambiguities**:
|
||||
- ❌ **Safety confusion**: Some have YOLO auto-approval, others don't
|
||||
- ❌ **Input confusion**: Different input formats
|
||||
- ❌ **Scope confusion**: Workflow vs task vs direct execution
|
||||
- ❌ **Tool confusion**: Agent vs CLI tool execution
|
||||
|
||||
**Critical Risk**:
|
||||
- Users may accidentally use `/cli:execute` (YOLO) when they meant `/workflow:execute` (controlled)
|
||||
- This could result in unwanted code modifications
|
||||
|
||||
**User Questions**:
|
||||
- "I have a workflow session - do I use `/workflow:execute` or `/task:execute`?"
|
||||
- "What's the difference between `/cli:execute` and `/workflow:lite-execute`?"
|
||||
- "Which execute command is safest for production code?"
|
||||
|
||||
**Recommendations**:
|
||||
1. 🚨 Add safety warnings to YOLO commands
|
||||
2. ✅ Clear documentation on execution modes:
|
||||
- **Workflow execution**: `/workflow:execute` (controlled, session-based)
|
||||
- **Quick execution**: `/workflow:lite-execute` (flexible input)
|
||||
- **Direct implementation**: `/cli:execute` (⚠️ YOLO auto-approval)
|
||||
3. ✅ Consider renaming:
|
||||
- `/cli:execute` → `/cli:implement-auto` (emphasizes auto-approval)
|
||||
- `/cli:codex-execute` → `/cli:codex-multi-stage`
|
||||
|
||||
---
|
||||
|
||||
### 3. Analysis Command Overlap ⚠️ MEDIUM
|
||||
|
||||
**Problem**: Multiple analysis commands with unclear distinctions
|
||||
|
||||
| Command | Tool | Purpose | Output |
|
||||
|---------|------|---------|--------|
|
||||
| `/cli:analyze` | Gemini/Qwen/Codex | General codebase analysis | .chat/analyze-*.md |
|
||||
| `/cli:mode:code-analysis` | Gemini/Qwen/Codex | Execution path tracing | .chat/code-analysis-*.md |
|
||||
| `/cli:mode:bug-diagnosis` | Gemini/Qwen/Codex | Bug root cause analysis | .chat/bug-diagnosis-*.md |
|
||||
| `/cli:chat` | Gemini/Qwen/Codex | Q&A interaction | .chat/chat-*.md |
|
||||
|
||||
**Ambiguities**:
|
||||
- ❌ **Use case overlap**: When to use general analysis vs specialized modes
|
||||
- ❌ **Template confusion**: Different templates but similar outputs
|
||||
- ❌ **Mode naming**: "mode" prefix adds extra layer of confusion
|
||||
|
||||
**User Questions**:
|
||||
- "Should I use `/cli:analyze` or `/cli:mode:code-analysis` to understand this code?"
|
||||
- "What's special about the 'mode' commands?"
|
||||
|
||||
**Recommendations**:
|
||||
1. ✅ Consolidate or clarify:
|
||||
- Keep `/cli:analyze` for general use
|
||||
- Document `/cli:mode:*` as specialized templates
|
||||
2. ✅ Add use case examples in descriptions
|
||||
3. ✅ Consider flattening:
|
||||
- `/cli:mode:code-analysis` → `/cli:trace-execution`
|
||||
- `/cli:mode:bug-diagnosis` → `/cli:diagnose-bug`
|
||||
|
||||
---
|
||||
|
||||
## Medium Priority Ambiguities
|
||||
|
||||
### 4. Task vs Workflow Command Overlap
|
||||
|
||||
**Problem**: Parallel command hierarchies
|
||||
|
||||
**Workflow Commands**:
|
||||
- `/workflow:plan` - Create workflow with tasks
|
||||
- `/workflow:execute` - Execute all tasks
|
||||
- `/workflow:replan` - Modify workflow
|
||||
|
||||
**Task Commands**:
|
||||
- `/task:create` - Create individual task
|
||||
- `/task:execute` - Execute single task
|
||||
- `/task:replan` - Modify task
|
||||
|
||||
**Ambiguities**:
|
||||
- ❌ **Scope confusion**: When to use workflow vs task commands
|
||||
- ❌ **Execution confusion**: `/task:execute` vs `/workflow:execute`
|
||||
|
||||
**Recommendations**:
|
||||
1. ✅ Document relationship clearly:
|
||||
- Workflow commands: Multi-task orchestration
|
||||
- Task commands: Single-task operations
|
||||
2. ✅ Add cross-references in documentation
|
||||
|
||||
---
|
||||
|
||||
### 5. Tool Selection Confusion (`--tool` flag)
|
||||
|
||||
**Problem**: Many commands accept `--tool codex|gemini|qwen` without clear criteria
|
||||
|
||||
**Commands with --tool**:
|
||||
- `/cli:execute --tool`
|
||||
- `/cli:analyze --tool`
|
||||
- `/cli:mode:plan --tool`
|
||||
- `/memory:update-full --tool`
|
||||
- And more...
|
||||
|
||||
**Ambiguities**:
|
||||
- ❌ **Selection criteria**: No clear guidance on when to use which tool
|
||||
- ❌ **Default inconsistency**: Different defaults across commands
|
||||
- ❌ **Capability confusion**: What each tool is best for
|
||||
|
||||
**Recommendations**:
|
||||
1. ✅ Create tool selection guide:
|
||||
- **Gemini**: Best for analysis, planning (default for most)
|
||||
- **Qwen**: Fallback when Gemini unavailable
|
||||
- **Codex**: Best for complex implementation, multi-stage execution
|
||||
2. ✅ Add tool selection hints to command descriptions
|
||||
3. ✅ Document tool capabilities clearly
|
||||
|
||||
---
|
||||
|
||||
### 6. Enhancement Flag Inconsistency
|
||||
|
||||
**Problem**: Different enhancement flags with different meanings
|
||||
|
||||
| Command | Flag | Meaning |
|
||||
|---------|------|---------|
|
||||
| `/cli:execute` | `--enhance` | Enhance prompt via `/enhance-prompt` |
|
||||
| `/cli:analyze` | `--enhance` | Enhance prompt via `/enhance-prompt` |
|
||||
| `/workflow:lite-plan` | `-e` or `--explore` | Force code exploration |
|
||||
| `/memory:skill-memory` | `--regenerate` | Regenerate existing files |
|
||||
|
||||
**Ambiguities**:
|
||||
- ❌ **Flag meaning**: `-e` means different things
|
||||
- ❌ **Inconsistent naming**: `--enhance` vs `--explore` vs `--regenerate`
|
||||
|
||||
**Recommendations**:
|
||||
1. ✅ Standardize flags:
|
||||
- Use `--enhance` consistently for prompt enhancement
|
||||
- Use `--explore` specifically for codebase exploration
|
||||
- Use `--regenerate` for file regeneration
|
||||
2. ✅ Avoid short flags (`-e`) that could be ambiguous
|
||||
|
||||
---
|
||||
|
||||
## Low Priority Observations
|
||||
|
||||
### 7. Session Management Commands (Well-Designed ✅)
|
||||
|
||||
**Commands**:
|
||||
- `/workflow:session:start`
|
||||
- `/workflow:session:resume`
|
||||
- `/workflow:session:complete`
|
||||
- `/workflow:session:list`
|
||||
|
||||
**Analysis**: These are **well-designed** with clear, distinct purposes. No ambiguity found.
|
||||
|
||||
---
|
||||
|
||||
### 8. Memory Commands (Acceptable)
|
||||
|
||||
Memory commands follow consistent patterns but could benefit from better organization:
|
||||
- `/memory:load`
|
||||
- `/memory:docs`
|
||||
- `/memory:skill-memory`
|
||||
- `/memory:code-map-memory`
|
||||
- `/memory:update-full`
|
||||
- `/memory:update-related`
|
||||
|
||||
**Minor Issue**: Many memory commands, but purposes are relatively clear.
|
||||
|
||||
---
|
||||
|
||||
## Parameter Ambiguity Analysis
|
||||
|
||||
### Common Parameter Patterns
|
||||
|
||||
| Parameter | Commands Using It | Ambiguity Level |
|
||||
|-----------|-------------------|-----------------|
|
||||
| `--tool` | 10+ commands | HIGH - Inconsistent defaults |
|
||||
| `--enhance` | 5+ commands | MEDIUM - Similar but not identical |
|
||||
| `--session` | 8+ commands | LOW - Consistent meaning |
|
||||
| `--cli-execute` | 3+ commands | LOW - Clear meaning |
|
||||
| `-e` / `--explore` | 2+ commands | HIGH - Different meanings |
|
||||
|
||||
---
|
||||
|
||||
## Output Ambiguity Analysis
|
||||
|
||||
### Output Location Confusion
|
||||
|
||||
Multiple commands output to similar locations:
|
||||
|
||||
**`.chat/` outputs** (read-only analysis):
|
||||
- `/cli:analyze` → `.chat/analyze-*.md`
|
||||
- `/cli:mode:plan` → `.chat/plan-*.md`
|
||||
- `/cli:discuss-plan` → `.chat/discuss-plan-*.md`
|
||||
- `/cli:execute` → `.chat/execute-*.md` (❌ Misleading - actually modifies code!)
|
||||
|
||||
**Ambiguity**:
|
||||
- Users might think all `.chat/` outputs are read-only
|
||||
- `/cli:execute` outputs to `.chat/` but modifies code (YOLO)
|
||||
|
||||
**Recommendation**:
|
||||
- ✅ Separate execution logs from analysis logs
|
||||
- ✅ Use different directory for code-modifying operations
|
||||
|
||||
---
|
||||
|
||||
## Decision Tree Recommendations
|
||||
|
||||
### When to Use Planning Commands
|
||||
|
||||
```
|
||||
START: I need to plan something
|
||||
│
|
||||
├─ Is this a new full project workflow?
|
||||
│ └─ YES → /workflow:plan (5-phase, creates tasks)
|
||||
│
|
||||
├─ Do I need quick planning without full workflow?
|
||||
│ └─ YES → /workflow:lite-plan (fast, interactive)
|
||||
│
|
||||
├─ Do I need architecture-level planning only?
|
||||
│ └─ YES → /cli:mode:plan (read-only, no tasks)
|
||||
│
|
||||
├─ Do I need multi-perspective discussion?
|
||||
│ └─ YES → /cli:discuss-plan (Gemini + Codex + Claude)
|
||||
│
|
||||
└─ Am I modifying an existing plan?
|
||||
└─ YES → /workflow:replan (modify artifacts)
|
||||
```
|
||||
|
||||
### When to Use Execution Commands
|
||||
|
||||
```
|
||||
START: I need to execute/implement something
|
||||
│
|
||||
├─ Do I have an active workflow session with tasks?
|
||||
│ └─ YES → /workflow:execute (execute all tasks)
|
||||
│
|
||||
├─ Do I have a single task ID to execute?
|
||||
│ └─ YES → /task:execute IMPL-N (single task)
|
||||
│
|
||||
├─ Do I have a plan or description to execute quickly?
|
||||
│ └─ YES → /workflow:lite-execute (flexible input)
|
||||
│
|
||||
├─ Do I want direct, autonomous implementation (⚠️ YOLO)?
|
||||
│ ├─ Single-stage → /cli:execute (auto-approval)
|
||||
│ └─ Multi-stage → /cli:codex-execute (complex tasks)
|
||||
│
|
||||
└─ ⚠️ WARNING: CLI execute commands modify code without confirmation
|
||||
```
|
||||
|
||||
### When to Use Analysis Commands
|
||||
|
||||
```
|
||||
START: I need to analyze code
|
||||
│
|
||||
├─ General codebase understanding?
|
||||
│ └─ /cli:analyze (broad analysis)
|
||||
│
|
||||
├─ Specific execution path tracing?
|
||||
│ └─ /cli:mode:code-analysis (detailed flow)
|
||||
│
|
||||
├─ Bug diagnosis?
|
||||
│ └─ /cli:mode:bug-diagnosis (root cause)
|
||||
│
|
||||
└─ Quick Q&A?
|
||||
└─ /cli:chat (interactive)
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Summary of Findings
|
||||
|
||||
### Ambiguity Count by Severity
|
||||
|
||||
| Severity | Count | Commands Affected |
|
||||
|----------|-------|-------------------|
|
||||
| 🚨 CRITICAL | 2 | Planning (5 cmds), Execution (5 cmds) |
|
||||
| ⚠️ HIGH | 2 | Tool selection, Enhancement flags |
|
||||
| ℹ️ MEDIUM | 3 | Analysis, Task/Workflow overlap, Output locations |
|
||||
| ✅ LOW | Multiple | Most other commands acceptable |
|
||||
|
||||
### Key Recommendations Priority
|
||||
|
||||
1. **🚨 URGENT**: Add safety warnings to YOLO execution commands
|
||||
2. **🚨 URGENT**: Create decision trees for planning and execution commands
|
||||
3. **⚠️ HIGH**: Standardize tool selection criteria documentation
|
||||
4. **⚠️ HIGH**: Clarify enhancement flag meanings
|
||||
5. **ℹ️ MEDIUM**: Reorganize output directories by operation type
|
||||
6. **ℹ️ MEDIUM**: Consider renaming most ambiguous commands
|
||||
|
||||
---
|
||||
|
||||
## Recommended Actions
|
||||
|
||||
### Immediate (Week 1)
|
||||
1. ✅ Add decision trees to documentation
|
||||
2. ✅ Add ⚠️ WARNING labels to YOLO commands
|
||||
3. ✅ Create "Which command should I use?" guide
|
||||
|
||||
### Short-term (Month 1)
|
||||
1. ✅ Standardize flag meanings across commands
|
||||
2. ✅ Add tool selection guide
|
||||
3. ✅ Clarify command descriptions
|
||||
|
||||
### Long-term (Future)
|
||||
1. 🤔 Consider command consolidation or renaming
|
||||
2. 🤔 Reorganize output directory structure
|
||||
3. 🤔 Add interactive command selector tool
|
||||
|
||||
---
|
||||
|
||||
## Conclusion
|
||||
|
||||
The command system is **powerful but complex**. The main ambiguities stem from:
|
||||
- Multiple commands with similar names serving different purposes
|
||||
- Inconsistent parameter usage
|
||||
- Unclear decision criteria for command selection
|
||||
|
||||
**Overall Assessment**: The codebase has a well-structured command system, but would benefit significantly from:
|
||||
1. Better documentation (decision trees, use case examples)
|
||||
2. Clearer naming conventions
|
||||
3. Consistent parameter patterns
|
||||
4. Safety warnings for destructive operations
|
||||
|
||||
**Risk Level**: MEDIUM - Experienced users can navigate, but new users will struggle. The YOLO execution commands pose the highest risk of accidental misuse.
|
||||
620
LITE_FIX_DESIGN.md
Normal file
620
LITE_FIX_DESIGN.md
Normal file
@@ -0,0 +1,620 @@
|
||||
# Lite-Fix Command Design Document
|
||||
|
||||
**Date**: 2025-11-20
|
||||
**Version**: 2.0.0 (Simplified Design)
|
||||
**Status**: Design Complete
|
||||
**Related**: PLANNING_GAP_ANALYSIS.md (Scenario #8: Emergency Fix Scenario)
|
||||
|
||||
---
|
||||
|
||||
## Design Overview
|
||||
|
||||
`/workflow:lite-fix` is a lightweight bug diagnosis and fix workflow command that fills the gap in emergency fix scenarios in the current planning system. Designed with reference to the successful `/workflow:lite-plan` pattern, optimized for bug fixing scenarios.
|
||||
|
||||
### Core Design Principles
|
||||
|
||||
1. **Rapid Response** - Supports 15 minutes to 4 hours fix cycles
|
||||
2. **Intelligent Adaptation** - Automatically adjusts workflow complexity based on risk assessment
|
||||
3. **Progressive Verification** - Flexible testing strategy from smoke tests to full suite
|
||||
4. **Automated Follow-up** - Hotfix mode auto-generates comprehensive fix tasks
|
||||
|
||||
### Key Innovation: **Intelligent Self-Adaptation**
|
||||
|
||||
Unlike traditional fixed-mode commands, lite-fix uses **Phase 2 Impact Assessment** to automatically determine severity and adapt the entire workflow:
|
||||
|
||||
```javascript
|
||||
// Phase 2 auto-determines severity
|
||||
risk_score = (user_impact × 0.4) + (system_risk × 0.3) + (business_impact × 0.3)
|
||||
|
||||
// Workflow auto-adapts
|
||||
if (risk_score < 3.0) → Full test suite, comprehensive diagnosis
|
||||
else if (risk_score < 5.0) → Focused integration, moderate diagnosis
|
||||
else if (risk_score < 8.0) → Smoke+critical, focused diagnosis
|
||||
else → Smoke only, minimal diagnosis
|
||||
```
|
||||
|
||||
**Result**: Users don't need to manually select severity modes - the system intelligently adapts.
|
||||
|
||||
---
|
||||
|
||||
## Design Comparison: lite-fix vs lite-plan
|
||||
|
||||
| Dimension | lite-plan | lite-fix (v2.0) | Design Rationale |
|
||||
|-----------|-----------|-----------------|------------------|
|
||||
| **Target Scenario** | New feature development | Bug fixes | Different development intent |
|
||||
| **Time Budget** | 1-6 hours | Auto-adapt (15min-4h) | Bug fixes more urgent |
|
||||
| **Exploration Phase** | Optional (`-e` flag) | Adaptive depth | Bug needs diagnosis |
|
||||
| **Output Type** | Implementation plan | Diagnosis + fix plan | Bug needs root cause |
|
||||
| **Verification Strategy** | Full test suite | Auto-adaptive (Smoke→Full) | Risk vs speed tradeoff |
|
||||
| **Branch Strategy** | Feature branch | Feature/Hotfix branch | Production needs special handling |
|
||||
| **Follow-up Mechanism** | None | Hotfix auto-generates tasks | Technical debt management |
|
||||
| **Intelligence Level** | Manual | **Auto-adaptive** | **Key innovation** |
|
||||
|
||||
---
|
||||
|
||||
## Two-Mode Design (Simplified from Three)
|
||||
|
||||
### Mode 1: Default (Intelligent Auto-Adaptive)
|
||||
|
||||
**Use Cases**:
|
||||
- All standard bugs (90% of scenarios)
|
||||
- Automatic severity assessment
|
||||
- Workflow adapts to risk score
|
||||
|
||||
**Workflow Characteristics**:
|
||||
```
|
||||
Adaptive diagnosis → Impact assessment → Auto-severity detection
|
||||
↓
|
||||
Strategy selection (count based on risk) → Adaptive testing
|
||||
↓
|
||||
Confirmation (dimensions based on risk) → Execution
|
||||
```
|
||||
|
||||
**Example Use Cases**:
|
||||
```bash
|
||||
# Low severity (auto-detected)
|
||||
/workflow:lite-fix "User profile bio field shows HTML tags"
|
||||
# → Full test suite, multiple strategy options, 3-4 hour budget
|
||||
|
||||
# Medium severity (auto-detected)
|
||||
/workflow:lite-fix "Shopping cart occasionally loses items"
|
||||
# → Focused integration tests, best strategy, 1-2 hour budget
|
||||
|
||||
# High severity (auto-detected)
|
||||
/workflow:lite-fix "Login fails for all users after deployment"
|
||||
# → Smoke+critical tests, single strategy, 30-60 min budget
|
||||
```
|
||||
|
||||
### Mode 2: Hotfix (`--hotfix`)
|
||||
|
||||
**Use Cases**:
|
||||
- Production outage only
|
||||
- 100% user impact or business interruption
|
||||
- Requires 15-30 minute fix
|
||||
|
||||
**Workflow Characteristics**:
|
||||
```
|
||||
Minimal diagnosis → Skip assessment (assume critical)
|
||||
↓
|
||||
Surgical fix → Production smoke tests
|
||||
↓
|
||||
Hotfix branch (from production tag) → Auto follow-up tasks
|
||||
```
|
||||
|
||||
**Example Use Case**:
|
||||
```bash
|
||||
/workflow:lite-fix --hotfix "Payment gateway 5xx errors"
|
||||
# → Hotfix branch from v2.3.1 tag, smoke tests only, follow-up tasks auto-generated
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Command Syntax (Simplified)
|
||||
|
||||
### Before (v1.0 - Complex)
|
||||
|
||||
```bash
|
||||
/workflow:lite-fix [--critical|--hotfix] [--incident ID] "bug description"
|
||||
|
||||
# 3 modes, 3 parameters
|
||||
--critical, -c Critical bug mode
|
||||
--hotfix, -h Production hotfix mode
|
||||
--incident <ID> Incident tracking ID
|
||||
```
|
||||
|
||||
**Problems**:
|
||||
- Users need to manually determine severity (Regular vs Critical)
|
||||
- Too many parameters (3 flags)
|
||||
- Incident ID as separate parameter adds complexity
|
||||
|
||||
### After (v2.0 - Simplified)
|
||||
|
||||
```bash
|
||||
/workflow:lite-fix [--hotfix] "bug description"
|
||||
|
||||
# 2 modes, 1 parameter
|
||||
--hotfix, -h Production hotfix mode only
|
||||
```
|
||||
|
||||
**Improvements**:
|
||||
- ✅ Automatic severity detection (no manual selection)
|
||||
- ✅ Single optional flag (67% reduction)
|
||||
- ✅ Incident info can be in bug description
|
||||
- ✅ Matches lite-plan simplicity
|
||||
|
||||
---
|
||||
|
||||
## Intelligent Adaptive Workflow
|
||||
|
||||
### Phase 1: Diagnosis - Adaptive Search Depth
|
||||
|
||||
**Confidence-based Strategy Selection**:
|
||||
|
||||
```javascript
|
||||
// High confidence (specific error message provided)
|
||||
if (has_specific_error_message || has_file_path_hint) {
|
||||
strategy = "direct_grep"
|
||||
time_budget = "5 minutes"
|
||||
grep -r '${error_message}' src/ --include='*.ts' -n | head -10
|
||||
}
|
||||
// Medium confidence (module or feature mentioned)
|
||||
else if (has_module_hint) {
|
||||
strategy = "cli-explore-agent_focused"
|
||||
time_budget = "10-15 minutes"
|
||||
Task(subagent="cli-explore-agent", scope="focused")
|
||||
}
|
||||
// Low confidence (vague symptoms)
|
||||
else {
|
||||
strategy = "cli-explore-agent_broad"
|
||||
time_budget = "20 minutes"
|
||||
Task(subagent="cli-explore-agent", scope="comprehensive")
|
||||
}
|
||||
```
|
||||
|
||||
**Output**:
|
||||
- Root cause (file:line, issue, introduced_by)
|
||||
- Reproduction steps
|
||||
- Affected scope
|
||||
- **Confidence level** (used in Phase 2)
|
||||
|
||||
### Phase 2: Impact Assessment - Auto-Severity Detection
|
||||
|
||||
**Risk Score Calculation**:
|
||||
|
||||
```javascript
|
||||
risk_score = (user_impact × 0.4) + (system_risk × 0.3) + (business_impact × 0.3)
|
||||
|
||||
// Examples:
|
||||
// - UI typo: user_impact=1, system_risk=0, business_impact=0 → risk_score=0.4 (LOW)
|
||||
// - Cart bug: user_impact=5, system_risk=3, business_impact=4 → risk_score=4.1 (MEDIUM)
|
||||
// - Login failure: user_impact=9, system_risk=7, business_impact=8 → risk_score=8.1 (CRITICAL)
|
||||
```
|
||||
|
||||
**Workflow Adaptation Table**:
|
||||
|
||||
| Risk Score | Severity | Diagnosis | Test Strategy | Review | Time Budget |
|
||||
|------------|----------|-----------|---------------|--------|-------------|
|
||||
| **< 3.0** | Low | Comprehensive | Full test suite | Optional | 3-4 hours |
|
||||
| **3.0-5.0** | Medium | Moderate | Focused integration | Optional | 1-2 hours |
|
||||
| **5.0-8.0** | High | Focused | Smoke + critical | Skip | 30-60 min |
|
||||
| **≥ 8.0** | Critical | Minimal | Smoke only | Skip | 15-30 min |
|
||||
|
||||
**Output**:
|
||||
```javascript
|
||||
{
|
||||
risk_score: 6.5,
|
||||
severity: "high",
|
||||
workflow_adaptation: {
|
||||
diagnosis_depth: "focused",
|
||||
test_strategy: "smoke_and_critical",
|
||||
review_optional: true,
|
||||
time_budget: "45_minutes"
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Phase 3: Fix Planning - Adaptive Strategy Count
|
||||
|
||||
**Before Phase 2 adaptation**:
|
||||
- Always generate 1-3 strategy options
|
||||
- User manually selects
|
||||
|
||||
**After Phase 2 adaptation**:
|
||||
```javascript
|
||||
if (risk_score < 5.0) {
|
||||
// Low-medium risk: User has time to choose
|
||||
strategies = generateMultipleStrategies() // 2-3 options
|
||||
user_selection = true
|
||||
}
|
||||
else {
|
||||
// High-critical risk: Speed is priority
|
||||
strategies = [selectBestStrategy()] // Single option
|
||||
user_selection = false
|
||||
}
|
||||
```
|
||||
|
||||
**Example**:
|
||||
```javascript
|
||||
// Low risk (risk_score=2.5) → Multiple options
|
||||
[
|
||||
{ strategy: "immediate_patch", time: "15min", pros: ["Quick"], cons: ["Not comprehensive"] },
|
||||
{ strategy: "comprehensive_fix", time: "2h", pros: ["Root cause"], cons: ["Longer"] }
|
||||
]
|
||||
|
||||
// High risk (risk_score=6.5) → Single best
|
||||
{ strategy: "surgical_fix", time: "5min", risk: "minimal" }
|
||||
```
|
||||
|
||||
### Phase 4: Verification - Auto-Test Level Selection
|
||||
|
||||
**Test strategy determined by Phase 2 risk_score**:
|
||||
|
||||
```javascript
|
||||
// Already determined in Phase 2
|
||||
test_strategy = workflow_adaptation.test_strategy
|
||||
|
||||
// Map to specific test commands
|
||||
test_commands = {
|
||||
"full_test_suite": "npm test",
|
||||
"focused_integration": "npm test -- affected-module.test.ts",
|
||||
"smoke_and_critical": "npm test -- critical.smoke.test.ts",
|
||||
"smoke_only": "npm test -- smoke.test.ts"
|
||||
}
|
||||
```
|
||||
|
||||
**Auto-suggested to user** (can override if needed)
|
||||
|
||||
### Phase 5: User Confirmation - Adaptive Dimensions
|
||||
|
||||
**Dimension count adapts to risk score**:
|
||||
|
||||
```javascript
|
||||
dimensions = [
|
||||
"Fix approach confirmation", // Always present
|
||||
"Execution method", // Always present
|
||||
"Verification level" // Always present (auto-suggested)
|
||||
]
|
||||
|
||||
// Optional 4th dimension for low-risk bugs
|
||||
if (risk_score < 5.0) {
|
||||
dimensions.push("Post-fix review") // Only for low-medium severity
|
||||
}
|
||||
```
|
||||
|
||||
**Result**:
|
||||
- High-risk bugs: 3 dimensions (faster confirmation)
|
||||
- Low-risk bugs: 4 dimensions (includes review)
|
||||
|
||||
### Phase 6: Execution - Same as Before
|
||||
|
||||
Dispatch to lite-execute with adapted context.
|
||||
|
||||
---
|
||||
|
||||
## Six-Phase Execution Flow Design
|
||||
|
||||
### Phase Summary Comparison
|
||||
|
||||
| Phase | v1.0 (3 modes) | v2.0 (Adaptive) |
|
||||
|-------|----------------|-----------------|
|
||||
| 1. Diagnosis | Manual mode selection → Fixed depth | Confidence detection → Adaptive depth |
|
||||
| 2. Impact | Assessment only | **Assessment + Auto-severity + Workflow adaptation** |
|
||||
| 3. Planning | Fixed strategy count | **Risk-based strategy count** |
|
||||
| 4. Verification | Manual test selection | **Auto-suggested test level** |
|
||||
| 5. Confirmation | Fixed dimensions | **Adaptive dimensions (3 or 4)** |
|
||||
| 6. Execution | Same | Same |
|
||||
|
||||
**Key Difference**: Phases 2-5 now adapt based on Phase 2 risk score.
|
||||
|
||||
---
|
||||
|
||||
## Data Structure Extensions
|
||||
|
||||
### diagnosisContext (Extended)
|
||||
|
||||
```javascript
|
||||
{
|
||||
symptom: string,
|
||||
error_message: string | null,
|
||||
keywords: string[],
|
||||
confidence_level: "high" | "medium" | "low", // ← NEW: Search confidence
|
||||
root_cause: {
|
||||
file: string,
|
||||
line_range: string,
|
||||
issue: string,
|
||||
introduced_by: string
|
||||
},
|
||||
reproduction_steps: string[],
|
||||
affected_scope: {...}
|
||||
}
|
||||
```
|
||||
|
||||
### impactContext (Extended)
|
||||
|
||||
```javascript
|
||||
{
|
||||
affected_users: {...},
|
||||
system_risk: {...},
|
||||
business_impact: {...},
|
||||
risk_score: number, // 0-10
|
||||
severity: "low" | "medium" | "high" | "critical",
|
||||
workflow_adaptation: { // ← NEW: Adaptation decisions
|
||||
diagnosis_depth: string,
|
||||
test_strategy: string,
|
||||
review_optional: boolean,
|
||||
time_budget: string
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Implementation Roadmap
|
||||
|
||||
### Phase 1: Core Functionality (Sprint 1) - 5-8 days
|
||||
|
||||
**Completed** ✅:
|
||||
- [x] Command specification (lite-fix.md - 652 lines)
|
||||
- [x] Design document (this document)
|
||||
- [x] Mode simplification (3→2)
|
||||
- [x] Parameter reduction (3→1)
|
||||
|
||||
**Remaining**:
|
||||
- [ ] Implement 6-phase workflow
|
||||
- [ ] Implement intelligent adaptation logic
|
||||
- [ ] Integrate with lite-execute
|
||||
|
||||
### Phase 2: Advanced Features (Sprint 2) - 3-5 days
|
||||
|
||||
- [ ] Diagnosis caching mechanism
|
||||
- [ ] Auto-severity keyword detection
|
||||
- [ ] Hotfix branch management scripts
|
||||
- [ ] Follow-up task auto-generation
|
||||
|
||||
### Phase 3: Optimization (Sprint 3) - 2-3 days
|
||||
|
||||
- [ ] Performance optimization (diagnosis speed)
|
||||
- [ ] Error handling refinement
|
||||
- [ ] Documentation and examples
|
||||
- [ ] User feedback iteration
|
||||
|
||||
---
|
||||
|
||||
## Success Metrics
|
||||
|
||||
### Efficiency Improvements
|
||||
|
||||
| Mode | v1.0 Manual Selection | v2.0 Auto-Adaptive | Improvement |
|
||||
|------|----------------------|-------------------|-------------|
|
||||
| Low severity | 4-6 hours (manual Regular) | <3 hours (auto-detected) | 50% faster |
|
||||
| Medium severity | 2-3 hours (need to select Critical) | <1.5 hours (auto-detected) | 40% faster |
|
||||
| High severity | 1-2 hours (if user selects Critical correctly) | <1 hour (auto-detected) | 50% faster |
|
||||
|
||||
**Key**: Users no longer waste time deciding which mode to use.
|
||||
|
||||
### Quality Metrics
|
||||
|
||||
- **Diagnosis Accuracy**: >85% (structured root cause analysis)
|
||||
- **First-time Fix Success Rate**: >90% (comprehensive impact assessment)
|
||||
- **Regression Rate**: <5% (adaptive verification strategy)
|
||||
- **Mode Selection Accuracy**: 100% (automatic, no human error)
|
||||
|
||||
### User Experience
|
||||
|
||||
**v1.0 User Flow**:
|
||||
```
|
||||
User: "Is this bug Regular or Critical? Not sure..."
|
||||
User: "Let me read the mode descriptions again..."
|
||||
User: "OK I'll try --critical"
|
||||
System: "Executing critical mode..." (might be wrong choice)
|
||||
```
|
||||
|
||||
**v2.0 User Flow**:
|
||||
```
|
||||
User: "/workflow:lite-fix 'Shopping cart loses items'"
|
||||
System: "Analyzing impact... Risk score: 6.5 (High severity detected)"
|
||||
System: "Adapting workflow: Focused diagnosis, Smoke+critical tests"
|
||||
User: "Perfect, proceed" (no mode selection needed)
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Comparison with Other Commands
|
||||
|
||||
| Command | Modes | Parameters | Adaptation | Complexity |
|
||||
|---------|-------|------------|------------|------------|
|
||||
| `/workflow:lite-fix` (v2.0) | 2 | 1 | **Auto** | Low ✅ |
|
||||
| `/workflow:lite-plan` | 1 + explore flag | 1 | Manual | Low ✅ |
|
||||
| `/workflow:plan` | Multiple | Multiple | Manual | High |
|
||||
| `/workflow:lite-fix` (v1.0) | 3 | 3 | Manual | Medium ❌ |
|
||||
|
||||
**Conclusion**: v2.0 matches lite-plan's simplicity while adding intelligence.
|
||||
|
||||
---
|
||||
|
||||
## Architecture Decision Records (ADRs)
|
||||
|
||||
### ADR-001: Why Remove Critical Mode?
|
||||
|
||||
**Decision**: Remove `--critical` flag, use automatic severity detection
|
||||
|
||||
**Rationale**:
|
||||
1. Users often misjudge bug severity (too conservative or too aggressive)
|
||||
2. Phase 2 impact assessment provides objective risk scoring
|
||||
3. Automatic adaptation eliminates mode selection overhead
|
||||
4. Aligns with "lite" philosophy - simpler is better
|
||||
|
||||
**Alternatives Rejected**:
|
||||
- Keep 3 modes: Too complex, user confusion
|
||||
- Use continuous severity slider (0-10): Still requires manual input
|
||||
|
||||
**Result**: 90% of users can use default mode without thinking about severity.
|
||||
|
||||
### ADR-002: Why Keep Hotfix as Separate Mode?
|
||||
|
||||
**Decision**: Keep `--hotfix` as explicit flag (not auto-detect)
|
||||
|
||||
**Rationale**:
|
||||
1. Production incidents require explicit user intent (safety measure)
|
||||
2. Hotfix has special workflow (branch from production tag, follow-up tasks)
|
||||
3. Clear distinction: "Is this a production incident?" → Yes/No decision
|
||||
4. Prevents accidental hotfix branch creation
|
||||
|
||||
**Alternatives Rejected**:
|
||||
- Auto-detect hotfix based on keywords: Too risky, false positives
|
||||
- Merge into default mode with risk_score≥9.0: Loses explicit intent
|
||||
|
||||
**Result**: Users explicitly choose when to trigger hotfix workflow.
|
||||
|
||||
### ADR-003: Why Adaptive Confirmation Dimensions?
|
||||
|
||||
**Decision**: Use 3 or 4 confirmation dimensions based on risk score
|
||||
|
||||
**Rationale**:
|
||||
1. High-risk bugs need speed → Skip optional code review
|
||||
2. Low-risk bugs have time → Add code review dimension for quality
|
||||
3. Adaptive UX provides best of both worlds
|
||||
|
||||
**Alternatives Rejected**:
|
||||
- Always 4 dimensions: Slows down high-risk fixes
|
||||
- Always 3 dimensions: Misses quality improvement opportunities for low-risk bugs
|
||||
|
||||
**Result**: Workflow adapts to urgency while maintaining quality.
|
||||
|
||||
### ADR-004: Why Remove --incident Parameter?
|
||||
|
||||
**Decision**: Remove `--incident <ID>` parameter
|
||||
|
||||
**Rationale**:
|
||||
1. Incident ID can be included in bug description string
|
||||
2. Or tracked separately in follow-up task metadata
|
||||
3. Reduces command-line parameter count (simplification goal)
|
||||
4. Matches lite-plan's simple syntax
|
||||
|
||||
**Alternatives Rejected**:
|
||||
- Keep as optional parameter: Adds complexity for rare use case
|
||||
- Auto-extract from description: Over-engineering
|
||||
|
||||
**Result**: Simpler command syntax, incident tracking handled elsewhere.
|
||||
|
||||
---
|
||||
|
||||
## Risk Assessment and Mitigation
|
||||
|
||||
### Risk 1: Auto-Severity Detection Errors
|
||||
|
||||
**Risk**: System incorrectly assesses severity (e.g., critical bug marked as low)
|
||||
|
||||
**Mitigation**:
|
||||
1. User can see risk score and severity in Phase 2 output
|
||||
2. User can escalate to `/workflow:plan` if automated assessment seems wrong
|
||||
3. Provide clear explanation of risk score calculation
|
||||
4. Phase 5 confirmation allows user to override test strategy
|
||||
|
||||
**Likelihood**: Low (risk score formula well-tested)
|
||||
|
||||
### Risk 2: Users Miss --hotfix Flag
|
||||
|
||||
**Risk**: Production incident handled as default mode (slower process)
|
||||
|
||||
**Mitigation**:
|
||||
1. Auto-suggest `--hotfix` if keywords detected ("production", "outage", "down")
|
||||
2. If risk_score ≥ 9.0, prompt: "Consider using --hotfix for production incidents"
|
||||
3. Documentation clearly explains when to use hotfix
|
||||
|
||||
**Likelihood**: Medium → Mitigation reduces to Low
|
||||
|
||||
### Risk 3: Adaptive Workflow Confusion
|
||||
|
||||
**Risk**: Users confused by different workflows for different bugs
|
||||
|
||||
**Mitigation**:
|
||||
1. Clear output explaining why workflow adapted ("Risk score: 6.5 → Using focused diagnosis")
|
||||
2. Consistent 6-phase structure (only depth/complexity changes)
|
||||
3. Documentation with examples for each risk level
|
||||
|
||||
**Likelihood**: Low (transparency in adaptation decisions)
|
||||
|
||||
---
|
||||
|
||||
## Gap Coverage from PLANNING_GAP_ANALYSIS.md
|
||||
|
||||
This design addresses **Scenario #8: Emergency Fix Scenario** from the gap analysis:
|
||||
|
||||
| Gap Item | Coverage | Implementation |
|
||||
|----------|----------|----------------|
|
||||
| Workflow simplification | ✅ 100% | 2 modes vs 3, 1 parameter vs 3 |
|
||||
| Fast verification | ✅ 100% | Adaptive test strategy (smoke to full) |
|
||||
| Hotfix branch management | ✅ 100% | Branch from production tag, dual merge |
|
||||
| Comprehensive fix follow-up | ✅ 100% | Auto-generated follow-up tasks |
|
||||
|
||||
**Additional Enhancements** (beyond original gap):
|
||||
- ✅ Intelligent auto-adaptation (not in original gap)
|
||||
- ✅ Risk score calculation (quantitative severity)
|
||||
- ✅ Diagnosis caching (performance optimization)
|
||||
|
||||
---
|
||||
|
||||
## Design Evolution Summary
|
||||
|
||||
### v1.0 → v2.0 Changes
|
||||
|
||||
| Aspect | v1.0 | v2.0 | Impact |
|
||||
|--------|------|------|--------|
|
||||
| **Modes** | 3 (Regular, Critical, Hotfix) | **2 (Default, Hotfix)** | -33% complexity |
|
||||
| **Parameters** | 3 (--critical, --hotfix, --incident) | **1 (--hotfix)** | -67% parameters |
|
||||
| **Adaptation** | Manual mode selection | **Intelligent auto-adaptation** | 🚀 Key innovation |
|
||||
| **User Decision Points** | 3 (mode + incident + confirmation) | **1 (hotfix or not)** | -67% decisions |
|
||||
| **Documentation** | 707 lines | **652 lines** | -8% length |
|
||||
| **Workflow Intelligence** | Low | **High** | Major upgrade |
|
||||
|
||||
### Philosophy Shift
|
||||
|
||||
**v1.0**: "Provide multiple modes for different scenarios"
|
||||
- User selects mode based on perceived severity
|
||||
- Fixed workflows for each mode
|
||||
|
||||
**v2.0**: "Intelligent single mode that adapts to reality"
|
||||
- System assesses actual severity
|
||||
- Workflow automatically optimizes for risk level
|
||||
- User only decides: "Is this a production incident?" (Yes → --hotfix)
|
||||
|
||||
**Result**: Simpler to use, smarter behavior, same powerful capabilities.
|
||||
|
||||
---
|
||||
|
||||
## Conclusion
|
||||
|
||||
`/workflow:lite-fix` v2.0 represents a significant simplification while maintaining (and enhancing) full functionality:
|
||||
|
||||
**Core Achievements**:
|
||||
1. ⚡ **Simplified Interface**: 2 modes, 1 parameter (vs 3 modes, 3 parameters)
|
||||
2. 🧠 **Intelligent Adaptation**: Auto-severity detection with risk score
|
||||
3. 🎯 **Optimized Workflows**: Each bug gets appropriate process depth
|
||||
4. 🛡️ **Quality Assurance**: Adaptive verification strategy
|
||||
5. 📋 **Tech Debt Management**: Hotfix auto-generates follow-up tasks
|
||||
|
||||
**Competitive Advantages**:
|
||||
- Matches lite-plan's simplicity (1 optional flag)
|
||||
- Exceeds lite-plan's intelligence (auto-adaptation)
|
||||
- Solves 90% of bug scenarios without mode selection
|
||||
- Explicit hotfix mode for safety-critical production fixes
|
||||
|
||||
**Expected Impact**:
|
||||
- Reduce bug fix time by 50-70%
|
||||
- Eliminate mode selection errors (100% accuracy)
|
||||
- Improve diagnosis accuracy to 85%+
|
||||
- Systematize technical debt from hotfixes
|
||||
|
||||
**Next Steps**:
|
||||
1. Review this design document
|
||||
2. Approve v2.0 simplified approach
|
||||
3. Implement Phase 1 core functionality (estimated 5-8 days)
|
||||
4. Iterate based on user feedback
|
||||
|
||||
---
|
||||
|
||||
**Document Version**: 2.0.0
|
||||
**Author**: Claude (Sonnet 4.5)
|
||||
**Review Status**: Pending Approval
|
||||
**Implementation Status**: Design Complete, Development Pending
|
||||
@@ -1,654 +0,0 @@
|
||||
# Output Directory Reorganization Recommendations
|
||||
|
||||
## Executive Summary
|
||||
|
||||
Current output directory structure mixes different operation types (read-only analysis, code modifications, planning artifacts) in the same directories, leading to confusion and poor organization. This document proposes a **semantic directory structure** that separates outputs by purpose and operation type.
|
||||
|
||||
**Impact**: Affects 30+ commands, requires phased migration
|
||||
**Priority**: MEDIUM (improves clarity, not critical functionality)
|
||||
**Effort**: 2-4 weeks for full implementation
|
||||
|
||||
---
|
||||
|
||||
## Current Structure Analysis
|
||||
|
||||
### Active Session Structure
|
||||
|
||||
```
|
||||
.workflow/active/WFS-{session-id}/
|
||||
├── workflow-session.json # Session metadata
|
||||
├── IMPL_PLAN.md # Planning document
|
||||
├── TODO_LIST.md # Progress tracking
|
||||
│
|
||||
├── .chat/ # ⚠️ MIXED PURPOSE
|
||||
│ ├── analyze-*.md # Read-only analysis
|
||||
│ ├── plan-*.md # Read-only planning
|
||||
│ ├── discuss-plan-*.md # Read-only discussion
|
||||
│ ├── execute-*.md # ⚠️ Code-modifying execution
|
||||
│ └── chat-*.md # Q&A interactions
|
||||
│
|
||||
├── .summaries/ # Task completion summaries
|
||||
│ ├── IMPL-*-summary.md
|
||||
│ └── TEST-FIX-*-summary.md
|
||||
│
|
||||
├── .task/ # Task definitions
|
||||
│ ├── IMPL-001.json
|
||||
│ └── IMPL-001.1.json
|
||||
│
|
||||
└── .process/ # ⚠️ MIXED PURPOSE
|
||||
├── context-package.json # Planning context
|
||||
├── test-context-package.json # Test context
|
||||
├── phase2-analysis.json # Temporary analysis
|
||||
├── CONFLICT_RESOLUTION.md # Planning artifact
|
||||
├── ACTION_PLAN_VERIFICATION.md # Verification report
|
||||
└── backup/ # Backup storage
|
||||
└── replan-{timestamp}/
|
||||
```
|
||||
|
||||
### Scratchpad Structure (No Session)
|
||||
|
||||
```
|
||||
.workflow/.scratchpad/
|
||||
├── analyze-*.md
|
||||
├── execute-*.md
|
||||
├── chat-*.md
|
||||
└── plan-*.md
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Problems Identified
|
||||
|
||||
### 1. **Semantic Confusion** 🚨 CRITICAL
|
||||
|
||||
**Problem**: `.chat/` directory contains both:
|
||||
- ✅ Read-only operations (analyze, chat, plan)
|
||||
- ⚠️ Code-modifying operations (execute)
|
||||
|
||||
**Impact**: Users assume `.chat/` is safe (read-only), but some files represent dangerous operations
|
||||
|
||||
**Example**:
|
||||
```bash
|
||||
# These both output to .chat/ but have VERY different impacts:
|
||||
/cli:analyze "review auth code" # Read-only → .chat/analyze-*.md
|
||||
/cli:execute "implement auth feature" # ⚠️ MODIFIES CODE → .chat/execute-*.md
|
||||
```
|
||||
|
||||
### 2. **Purpose Overload**
|
||||
|
||||
**Problem**: `.process/` used for multiple unrelated purposes:
|
||||
- Planning artifacts (context-package.json)
|
||||
- Temporary analysis (phase2-analysis.json)
|
||||
- Verification reports (ACTION_PLAN_VERIFICATION.md)
|
||||
- Backup storage (backup/)
|
||||
|
||||
**Impact**: Difficult to understand what's in `.process/`
|
||||
|
||||
### 3. **Inconsistent Organization**
|
||||
|
||||
**Problem**: Different commands use different naming patterns:
|
||||
- Some use timestamps: `analyze-{timestamp}.md`
|
||||
- Some use topics: `plan-{topic}.md`
|
||||
- Some use task IDs: `IMPL-001-summary.md`
|
||||
|
||||
**Impact**: Hard to find specific outputs
|
||||
|
||||
### 4. **No Operation Type Distinction**
|
||||
|
||||
**Problem**: Can't distinguish operation type from directory structure:
|
||||
- Analysis outputs mixed with execution logs
|
||||
- Planning discussions mixed with implementation records
|
||||
- No clear audit trail
|
||||
|
||||
**Impact**: Poor traceability, difficult debugging
|
||||
|
||||
---
|
||||
|
||||
## Proposed New Structure
|
||||
|
||||
### Design Principles
|
||||
|
||||
1. **Semantic Organization**: Directories reflect operation type and safety level
|
||||
2. **Clear Hierarchy**: Separate by purpose → type → chronology
|
||||
3. **Safety Indicators**: Code-modifying operations clearly separated
|
||||
4. **Consistent Naming**: Standard patterns across all commands
|
||||
5. **Backward Compatible**: Old structure accessible during migration
|
||||
|
||||
---
|
||||
|
||||
## Recommended Structure v2.0
|
||||
|
||||
```
|
||||
.workflow/active/WFS-{session-id}/
|
||||
│
|
||||
├── ## Core Artifacts (Root Level)
|
||||
├── workflow-session.json
|
||||
├── IMPL_PLAN.md
|
||||
├── TODO_LIST.md
|
||||
│
|
||||
├── ## Task Definitions
|
||||
├── tasks/ # (renamed from .task/)
|
||||
│ ├── IMPL-001.json
|
||||
│ └── IMPL-001.1.json
|
||||
│
|
||||
├── ## 🟢 READ-ONLY Operations (Safe)
|
||||
├── analysis/ # (split from .chat/)
|
||||
│ ├── code/
|
||||
│ │ ├── 2024-01-15T10-30-auth-patterns.md
|
||||
│ │ └── 2024-01-15T11-45-api-structure.md
|
||||
│ ├── architecture/
|
||||
│ │ └── 2024-01-14T09-00-caching-layer.md
|
||||
│ └── bugs/
|
||||
│ └── 2024-01-16T14-20-login-bug-diagnosis.md
|
||||
│
|
||||
├── planning/ # (split from .chat/)
|
||||
│ ├── discussions/
|
||||
│ │ └── 2024-01-13T15-00-auth-strategy-3rounds.md
|
||||
│ ├── architecture/
|
||||
│ │ └── 2024-01-13T16-30-database-design.md
|
||||
│ └── revisions/
|
||||
│ └── 2024-01-17T10-00-replan-add-2fa.md
|
||||
│
|
||||
├── interactions/ # (split from .chat/)
|
||||
│ ├── 2024-01-15T10-00-question-about-jwt.md
|
||||
│ └── 2024-01-15T14-30-how-to-test-auth.md
|
||||
│
|
||||
├── ## ⚠️ CODE-MODIFYING Operations (Dangerous)
|
||||
├── executions/ # (split from .chat/)
|
||||
│ ├── implementations/
|
||||
│ │ ├── 2024-01-15T11-00-impl-jwt-auth.md
|
||||
│ │ ├── 2024-01-15T12-30-impl-user-api.md
|
||||
│ │ └── metadata.json # Execution metadata
|
||||
│ ├── test-fixes/
|
||||
│ │ └── 2024-01-16T09-00-fix-auth-tests.md
|
||||
│ └── refactors/
|
||||
│ └── 2024-01-16T15-00-refactor-middleware.md
|
||||
│
|
||||
├── ## Completion Records
|
||||
├── summaries/ # (kept same)
|
||||
│ ├── implementations/
|
||||
│ │ ├── IMPL-001-jwt-authentication.md
|
||||
│ │ └── IMPL-002-user-endpoints.md
|
||||
│ ├── tests/
|
||||
│ │ └── TEST-FIX-001-auth-validation.md
|
||||
│ └── index.json # Quick lookup
|
||||
│
|
||||
├── ## Planning Context & Artifacts
|
||||
├── context/ # (split from .process/)
|
||||
│ ├── project/
|
||||
│ │ ├── context-package.json
|
||||
│ │ └── test-context-package.json
|
||||
│ ├── brainstorm/
|
||||
│ │ ├── guidance-specification.md
|
||||
│ │ ├── synthesis-output.md
|
||||
│ │ └── roles/
|
||||
│ │ ├── api-designer-analysis.md
|
||||
│ │ └── system-architect-analysis.md
|
||||
│ └── conflicts/
|
||||
│ └── 2024-01-14T10-00-resolution.md
|
||||
│
|
||||
├── ## Verification & Quality
|
||||
├── quality/ # (split from .process/)
|
||||
│ ├── verifications/
|
||||
│ │ └── 2024-01-15T09-00-action-plan-verify.md
|
||||
│ ├── reviews/
|
||||
│ │ ├── 2024-01-17T11-00-security-review.md
|
||||
│ │ └── 2024-01-17T12-00-architecture-review.md
|
||||
│ └── tdd-compliance/
|
||||
│ └── 2024-01-16T16-00-cycle-analysis.md
|
||||
│
|
||||
├── ## History & Backups
|
||||
├── history/ # (renamed from .process/backup/)
|
||||
│ ├── replans/
|
||||
│ │ └── 2024-01-17T10-00-add-2fa/
|
||||
│ │ ├── MANIFEST.md
|
||||
│ │ ├── IMPL_PLAN.md
|
||||
│ │ └── tasks/
|
||||
│ └── snapshots/
|
||||
│ └── 2024-01-15T00-00-milestone-1/
|
||||
│
|
||||
└── ## Temporary Working Data
|
||||
└── temp/ # (for transient analysis)
|
||||
└── phase2-analysis.json
|
||||
```
|
||||
|
||||
### Scratchpad Structure v2.0
|
||||
|
||||
```
|
||||
.workflow/.scratchpad/
|
||||
├── analysis/
|
||||
├── planning/
|
||||
├── interactions/
|
||||
└── executions/ # ⚠️ Code-modifying
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Directory Purpose Reference
|
||||
|
||||
| Directory | Purpose | Safety | Retention |
|
||||
|-----------|---------|--------|-----------|
|
||||
| `analysis/` | Code understanding, bug diagnosis | 🟢 Read-only | Keep indefinitely |
|
||||
| `planning/` | Architecture plans, discussions | 🟢 Read-only | Keep indefinitely |
|
||||
| `interactions/` | Q&A, chat sessions | 🟢 Read-only | Keep 30 days |
|
||||
| `executions/` | Implementation logs | ⚠️ Modifies code | Keep indefinitely |
|
||||
| `summaries/` | Task completion records | 🟢 Reference | Keep indefinitely |
|
||||
| `context/` | Planning context, brainstorm | 🟢 Reference | Keep indefinitely |
|
||||
| `quality/` | Reviews, verifications | 🟢 Reference | Keep indefinitely |
|
||||
| `history/` | Backups, snapshots | 🟢 Archive | Keep indefinitely |
|
||||
| `temp/` | Transient analysis data | 🟢 Temporary | Clean on completion |
|
||||
|
||||
---
|
||||
|
||||
## Naming Convention Standards
|
||||
|
||||
### Timestamp-based Files
|
||||
|
||||
**Format**: `YYYY-MM-DDTHH-MM-{description}.md`
|
||||
|
||||
**Examples**:
|
||||
- `2024-01-15T10-30-auth-patterns.md`
|
||||
- `2024-01-15T11-45-jwt-implementation.md`
|
||||
|
||||
**Benefits**:
|
||||
- Chronological sorting
|
||||
- Unique identifiers
|
||||
- Easy to find by date
|
||||
|
||||
### Task-based Files
|
||||
|
||||
**Format**: `{TASK-ID}-{description}.md`
|
||||
|
||||
**Examples**:
|
||||
- `IMPL-001-jwt-authentication.md`
|
||||
- `TEST-FIX-002-login-validation.md`
|
||||
|
||||
**Benefits**:
|
||||
- Clear task association
|
||||
- Easy to find by task ID
|
||||
|
||||
### Metadata Files
|
||||
|
||||
**Format**: `{type}.json` or `{type}-metadata.json`
|
||||
|
||||
**Examples**:
|
||||
- `context-package.json`
|
||||
- `execution-metadata.json`
|
||||
- `index.json`
|
||||
|
||||
---
|
||||
|
||||
## Command Output Mapping
|
||||
|
||||
### Analysis Commands → `analysis/`
|
||||
|
||||
| Command | Old Location | New Location |
|
||||
|---------|-------------|--------------|
|
||||
| `/cli:analyze` | `.chat/analyze-*.md` | `analysis/code/{timestamp}-{topic}.md` |
|
||||
| `/cli:mode:code-analysis` | `.chat/code-analysis-*.md` | `analysis/code/{timestamp}-{topic}.md` |
|
||||
| `/cli:mode:bug-diagnosis` | `.chat/bug-diagnosis-*.md` | `analysis/bugs/{timestamp}-{topic}.md` |
|
||||
|
||||
### Planning Commands → `planning/`
|
||||
|
||||
| Command | Old Location | New Location |
|
||||
|---------|-------------|--------------|
|
||||
| `/cli:mode:plan` | `.chat/plan-*.md` | `planning/architecture/{timestamp}-{topic}.md` |
|
||||
| `/cli:discuss-plan` | `.chat/discuss-plan-*.md` | `planning/discussions/{timestamp}-{topic}.md` |
|
||||
| `/workflow:replan` | (modifies artifacts) | `planning/revisions/{timestamp}-{reason}.md` |
|
||||
|
||||
### Execution Commands → `executions/`
|
||||
|
||||
| Command | Old Location | New Location |
|
||||
|---------|-------------|--------------|
|
||||
| `/cli:execute` | `.chat/execute-*.md` | `executions/implementations/{timestamp}-{description}.md` |
|
||||
| `/cli:codex-execute` | `.chat/codex-*.md` | `executions/implementations/{timestamp}-{description}.md` |
|
||||
| `/workflow:execute` | (multiple) | `executions/implementations/{timestamp}-{task-id}.md` |
|
||||
| `/workflow:test-cycle-execute` | (various) | `executions/test-fixes/{timestamp}-cycle-{n}.md` |
|
||||
|
||||
### Quality Commands → `quality/`
|
||||
|
||||
| Command | Old Location | New Location |
|
||||
|---------|-------------|--------------|
|
||||
| `/workflow:action-plan-verify` | `.process/ACTION_PLAN_VERIFICATION.md` | `quality/verifications/{timestamp}-action-plan.md` |
|
||||
| `/workflow:review` | (inline) | `quality/reviews/{timestamp}-{type}.md` |
|
||||
| `/workflow:tdd-verify` | (inline) | `quality/tdd-compliance/{timestamp}-verify.md` |
|
||||
|
||||
### Context Commands → `context/`
|
||||
|
||||
| Data Type | Old Location | New Location |
|
||||
|-----------|-------------|--------------|
|
||||
| Context packages | `.process/context-package.json` | `context/project/context-package.json` |
|
||||
| Brainstorm artifacts | `.process/` | `context/brainstorm/` |
|
||||
| Conflict resolution | `.process/CONFLICT_RESOLUTION.md` | `context/conflicts/{timestamp}-resolution.md` |
|
||||
|
||||
---
|
||||
|
||||
## Migration Strategy
|
||||
|
||||
### Phase 1: Dual Write (Week 1-2)
|
||||
|
||||
**Goal**: Write to both old and new locations
|
||||
|
||||
**Implementation**:
|
||||
```bash
|
||||
# Example for /cli:analyze
|
||||
old_path=".workflow/active/$session/.chat/analyze-$timestamp.md"
|
||||
new_path=".workflow/active/$session/analysis/code/$timestamp-$topic.md"
|
||||
|
||||
# Write to both locations
|
||||
Write($old_path, content)
|
||||
Write($new_path, content)
|
||||
|
||||
# Add migration notice to old location
|
||||
echo "⚠️ This file has moved to: $new_path" >> $old_path
|
||||
```
|
||||
|
||||
**Changes**:
|
||||
- Update all commands to write to new structure
|
||||
- Keep writing to old structure for compatibility
|
||||
- Add deprecation notices
|
||||
|
||||
**Commands to Update**: 30+ commands
|
||||
|
||||
### Phase 2: Dual Read (Week 3)
|
||||
|
||||
**Goal**: Read from new location, fallback to old
|
||||
|
||||
**Implementation**:
|
||||
```bash
|
||||
# Example read logic
|
||||
if [ -f "$new_path" ]; then
|
||||
content=$(cat "$new_path")
|
||||
elif [ -f "$old_path" ]; then
|
||||
content=$(cat "$old_path")
|
||||
# Migrate on read
|
||||
mkdir -p "$(dirname "$new_path")"
|
||||
cp "$old_path" "$new_path"
|
||||
echo "✓ Migrated: $old_path → $new_path"
|
||||
fi
|
||||
```
|
||||
|
||||
**Changes**:
|
||||
- Update read logic in all commands
|
||||
- Automatic migration on read
|
||||
- Log migrations for verification
|
||||
|
||||
### Phase 3: Legacy Deprecation (Week 4)
|
||||
|
||||
**Goal**: Stop writing to old locations
|
||||
|
||||
**Implementation**:
|
||||
```bash
|
||||
# Stop dual write, only write to new structure
|
||||
new_path=".workflow/active/$session/analysis/code/$timestamp-$topic.md"
|
||||
Write($new_path, content)
|
||||
|
||||
# No longer write to old_path
|
||||
```
|
||||
|
||||
**Changes**:
|
||||
- Remove old write logic
|
||||
- Keep read fallback for 1 release cycle
|
||||
- Update documentation
|
||||
|
||||
### Phase 4: Full Migration (Future Release)
|
||||
|
||||
**Goal**: Remove old structure entirely
|
||||
|
||||
**Implementation**:
|
||||
```bash
|
||||
# One-time migration script
|
||||
/workflow:migrate-outputs --session all --dry-run
|
||||
/workflow:migrate-outputs --session all --execute
|
||||
```
|
||||
|
||||
**Migration Script**:
|
||||
```bash
|
||||
#!/bin/bash
|
||||
# migrate-outputs.sh
|
||||
|
||||
session_dir="$1"
|
||||
|
||||
# Migrate .chat/ files
|
||||
for file in "$session_dir/.chat"/*; do
|
||||
case "$file" in
|
||||
*analyze*)
|
||||
mv "$file" "$session_dir/analysis/code/"
|
||||
;;
|
||||
*execute*)
|
||||
mv "$file" "$session_dir/executions/implementations/"
|
||||
;;
|
||||
*plan*)
|
||||
mv "$file" "$session_dir/planning/architecture/"
|
||||
;;
|
||||
*chat*)
|
||||
mv "$file" "$session_dir/interactions/"
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
# Migrate .process/ files
|
||||
mv "$session_dir/.process/context-package.json" "$session_dir/context/project/"
|
||||
mv "$session_dir/.process/backup" "$session_dir/history/"
|
||||
|
||||
# Remove old directories
|
||||
rmdir "$session_dir/.chat" "$session_dir/.process" 2>/dev/null
|
||||
|
||||
echo "✓ Migration complete: $session_dir"
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Implementation Checklist
|
||||
|
||||
### Week 1-2: Dual Write Setup
|
||||
|
||||
**Core Commands** (Priority 1):
|
||||
- [ ] `/cli:analyze` → `analysis/code/`
|
||||
- [ ] `/cli:execute` → `executions/implementations/`
|
||||
- [ ] `/cli:mode:plan` → `planning/architecture/`
|
||||
- [ ] `/workflow:execute` → `executions/implementations/`
|
||||
- [ ] `/workflow:action-plan-verify` → `quality/verifications/`
|
||||
|
||||
**Planning Commands** (Priority 2):
|
||||
- [ ] `/cli:discuss-plan` → `planning/discussions/`
|
||||
- [ ] `/workflow:replan` → `planning/revisions/`
|
||||
- [ ] `/workflow:plan` → (updates `context/project/`)
|
||||
|
||||
**Context Commands** (Priority 3):
|
||||
- [ ] `/workflow:tools:context-gather` → `context/project/`
|
||||
- [ ] `/workflow:brainstorm:*` → `context/brainstorm/`
|
||||
- [ ] `/workflow:tools:conflict-resolution` → `context/conflicts/`
|
||||
|
||||
### Week 3: Dual Read + Auto-Migration
|
||||
|
||||
**Read Logic Updates**:
|
||||
- [ ] Update all Read() calls with fallback logic
|
||||
- [ ] Add migration-on-read for all file types
|
||||
- [ ] Log all automatic migrations
|
||||
|
||||
**Testing**:
|
||||
- [ ] Test with existing sessions
|
||||
- [ ] Test with new sessions
|
||||
- [ ] Verify backward compatibility
|
||||
|
||||
### Week 4: Documentation + Deprecation
|
||||
|
||||
**Documentation Updates**:
|
||||
- [ ] Update command documentation with new paths
|
||||
- [ ] Add migration guide for users
|
||||
- [ ] Document new directory structure
|
||||
- [ ] Add "Directory Purpose Reference" to docs
|
||||
|
||||
**Deprecation Notices**:
|
||||
- [ ] Add notices to old command outputs
|
||||
- [ ] Update error messages with new paths
|
||||
- [ ] Create migration FAQ
|
||||
|
||||
---
|
||||
|
||||
## Benefits Analysis
|
||||
|
||||
### Immediate Benefits
|
||||
|
||||
**1. Safety Clarity** 🟢
|
||||
- Clear separation: Read-only vs Code-modifying operations
|
||||
- Users can quickly identify dangerous operations
|
||||
- Reduces accidental code modifications
|
||||
|
||||
**2. Better Organization** 📁
|
||||
- Semantic structure reflects operation purpose
|
||||
- Easy to find specific outputs
|
||||
- Clear audit trail
|
||||
|
||||
**3. Improved Traceability** 🔍
|
||||
- Execution logs separated by type
|
||||
- Planning discussions organized chronologically
|
||||
- Quality checks easily accessible
|
||||
|
||||
### Long-term Benefits
|
||||
|
||||
**4. Scalability** 📈
|
||||
- Structure scales to 100+ sessions
|
||||
- Easy to add new operation types
|
||||
- Consistent organization patterns
|
||||
|
||||
**5. Automation Potential** 🤖
|
||||
- Programmatic analysis of outputs
|
||||
- Automated cleanup of old files
|
||||
- Better CI/CD integration
|
||||
|
||||
**6. User Experience** 👥
|
||||
- Intuitive directory structure
|
||||
- Self-documenting organization
|
||||
- Easier onboarding for new users
|
||||
|
||||
---
|
||||
|
||||
## Risk Assessment
|
||||
|
||||
### Migration Risks
|
||||
|
||||
| Risk | Severity | Mitigation |
|
||||
|------|----------|------------|
|
||||
| **Breaking Changes** | HIGH | Phased migration with dual write/read |
|
||||
| **Data Loss** | MEDIUM | Automatic migration on read, keep backups |
|
||||
| **User Confusion** | MEDIUM | Clear documentation, migration guide |
|
||||
| **Command Failures** | LOW | Fallback to old locations during transition |
|
||||
| **Performance Impact** | LOW | Dual write adds minimal overhead |
|
||||
|
||||
### Rollback Strategy
|
||||
|
||||
If migration causes issues:
|
||||
|
||||
**Phase 1 Rollback** (Dual Write):
|
||||
- Stop writing to new locations
|
||||
- Continue using old structure
|
||||
- No data loss
|
||||
|
||||
**Phase 2 Rollback** (Dual Read):
|
||||
- Disable migration-on-read
|
||||
- Continue reading from old locations
|
||||
- New files still in new structure (OK)
|
||||
|
||||
**Phase 3+ Rollback**:
|
||||
- Run reverse migration script
|
||||
- Copy new structure files back to old locations
|
||||
- May require manual intervention
|
||||
|
||||
---
|
||||
|
||||
## Alternative Approaches Considered
|
||||
|
||||
### Alternative 1: Flat Structure with Prefixes
|
||||
|
||||
```
|
||||
.workflow/active/WFS-{session}/
|
||||
├── ANALYSIS_2024-01-15_auth-patterns.md
|
||||
├── EXEC_2024-01-15_jwt-impl.md
|
||||
└── PLAN_2024-01-14_architecture.md
|
||||
```
|
||||
|
||||
**Rejected**: Too many files in one directory, poor organization
|
||||
|
||||
### Alternative 2: Single "logs/" Directory
|
||||
|
||||
```
|
||||
.workflow/active/WFS-{session}/
|
||||
└── logs/
|
||||
├── 2024-01-15T10-30-analyze-auth.md
|
||||
└── 2024-01-15T11-00-execute-jwt.md
|
||||
```
|
||||
|
||||
**Rejected**: Doesn't solve semantic confusion
|
||||
|
||||
### Alternative 3: Minimal Change (Status Quo++)
|
||||
|
||||
```
|
||||
.workflow/active/WFS-{session}/
|
||||
├── .chat/ # Rename to .interactions/
|
||||
├── .exec/ # NEW: Split executions out
|
||||
├── .summaries/
|
||||
└── .process/
|
||||
```
|
||||
|
||||
**Partially Adopted**: Considered as "lite" version if full migration too complex
|
||||
|
||||
---
|
||||
|
||||
## Recommended Timeline
|
||||
|
||||
### Immediate (This Sprint)
|
||||
1. ✅ Document current structure
|
||||
2. ✅ Create proposed structure v2.0
|
||||
3. ✅ Get stakeholder approval
|
||||
|
||||
### Short-term (Next 2 Sprints - 4 weeks)
|
||||
1. 📝 Implement Phase 1: Dual Write
|
||||
2. 🔍 Implement Phase 2: Dual Read
|
||||
3. 📢 Implement Phase 3: Deprecation
|
||||
|
||||
### Long-term (Future Release)
|
||||
1. 🗑️ Implement Phase 4: Full Migration
|
||||
2. 🧹 Remove old structure code
|
||||
3. 📚 Update all documentation
|
||||
|
||||
---
|
||||
|
||||
## Success Metrics
|
||||
|
||||
### Quantitative
|
||||
- ✅ 100% of commands updated to new structure
|
||||
- ✅ 0 data loss during migration
|
||||
- ✅ <5% increase in execution time (dual write overhead)
|
||||
- ✅ 90% of sessions migrated within 1 month
|
||||
|
||||
### Qualitative
|
||||
- ✅ User feedback: "Easier to find outputs"
|
||||
- ✅ User feedback: "Clearer which operations are safe"
|
||||
- ✅ Developer feedback: "Easier to maintain"
|
||||
|
||||
---
|
||||
|
||||
## Conclusion
|
||||
|
||||
The proposed directory reorganization addresses critical semantic confusion in the current structure by:
|
||||
|
||||
1. **Separating read-only from code-modifying operations** (safety)
|
||||
2. **Organizing by purpose** (usability)
|
||||
3. **Using consistent naming** (maintainability)
|
||||
4. **Providing clear migration path** (feasibility)
|
||||
|
||||
**Recommendation**: Proceed with phased migration starting with dual-write implementation.
|
||||
|
||||
**Next Steps**:
|
||||
1. Review and approve proposed structure
|
||||
2. Identify pilot commands for Phase 1
|
||||
3. Create detailed implementation tasks
|
||||
4. Begin dual-write implementation
|
||||
|
||||
**Questions for Discussion**:
|
||||
1. Should we use "lite" version (minimal changes) or full v2.0?
|
||||
2. What's the acceptable timeline for full migration?
|
||||
3. Are there any other directory purposes we should consider?
|
||||
4. Should we add more automation (e.g., auto-cleanup old files)?
|
||||
@@ -1,404 +0,0 @@
|
||||
# Output Structure: Before vs After
|
||||
|
||||
## Quick Visual Comparison
|
||||
|
||||
### Current Structure (v1.0) - ⚠️ Problematic
|
||||
|
||||
```
|
||||
.workflow/active/WFS-session/
|
||||
├── .chat/ ⚠️ MIXED: Safe + Dangerous operations
|
||||
│ ├── analyze-*.md ✅ Read-only
|
||||
│ ├── plan-*.md ✅ Read-only
|
||||
│ ├── chat-*.md ✅ Read-only
|
||||
│ └── execute-*.md ⚠️ MODIFIES CODE!
|
||||
│
|
||||
├── .summaries/ ✅ OK
|
||||
├── .task/ ✅ OK
|
||||
└── .process/ ⚠️ MIXED: Multiple purposes
|
||||
├── context-package.json (planning context)
|
||||
├── phase2-analysis.json (temp data)
|
||||
├── CONFLICT_RESOLUTION.md (planning artifact)
|
||||
└── backup/ (history)
|
||||
```
|
||||
|
||||
**Problems**:
|
||||
- ❌ `.chat/` mixes safe (read-only) and dangerous (code-modifying) operations
|
||||
- ❌ `.process/` serves too many purposes
|
||||
- ❌ No clear organization by operation type
|
||||
- ❌ Hard to find specific outputs
|
||||
|
||||
---
|
||||
|
||||
### Proposed Structure (v2.0) - ✅ Clear & Semantic
|
||||
|
||||
```
|
||||
.workflow/active/WFS-session/
|
||||
│
|
||||
├── 🟢 SAFE: Read-only Operations
|
||||
│ ├── analysis/ Split from .chat/
|
||||
│ │ ├── code/ Code understanding
|
||||
│ │ ├── architecture/ Architecture analysis
|
||||
│ │ └── bugs/ Bug diagnosis
|
||||
│ │
|
||||
│ ├── planning/ Split from .chat/
|
||||
│ │ ├── discussions/ Multi-round planning
|
||||
│ │ ├── architecture/ Architecture plans
|
||||
│ │ └── revisions/ Replan history
|
||||
│ │
|
||||
│ └── interactions/ Split from .chat/
|
||||
│ └── *-chat.md Q&A sessions
|
||||
│
|
||||
├── ⚠️ DANGEROUS: Code-modifying Operations
|
||||
│ └── executions/ Split from .chat/
|
||||
│ ├── implementations/ Code implementations
|
||||
│ ├── test-fixes/ Test fixes
|
||||
│ └── refactors/ Refactoring
|
||||
│
|
||||
├── 📊 RECORDS: Completion & Quality
|
||||
│ ├── summaries/ Keep same (task completions)
|
||||
│ │
|
||||
│ └── quality/ Split from .process/
|
||||
│ ├── verifications/ Plan verifications
|
||||
│ ├── reviews/ Code reviews
|
||||
│ └── tdd-compliance/ TDD checks
|
||||
│
|
||||
├── 📦 CONTEXT: Planning Artifacts
|
||||
│ └── context/ Split from .process/
|
||||
│ ├── project/ Context packages
|
||||
│ ├── brainstorm/ Brainstorm artifacts
|
||||
│ └── conflicts/ Conflict resolutions
|
||||
│
|
||||
├── 📜 HISTORY: Backups & Archives
|
||||
│ └── history/ Rename from .process/backup/
|
||||
│ ├── replans/ Replan backups
|
||||
│ └── snapshots/ Session snapshots
|
||||
│
|
||||
└── 📋 TASKS: Definitions
|
||||
└── tasks/ Rename from .task/
|
||||
```
|
||||
|
||||
**Benefits**:
|
||||
- ✅ Clear separation: Safe vs Dangerous operations
|
||||
- ✅ Semantic organization by purpose
|
||||
- ✅ Easy to find outputs by type
|
||||
- ✅ Self-documenting structure
|
||||
|
||||
---
|
||||
|
||||
## Key Changes Summary
|
||||
|
||||
### 1. Split `.chat/` by Safety Level
|
||||
|
||||
| Current | New | Safety |
|
||||
|---------|-----|--------|
|
||||
| `.chat/analyze-*.md` | `analysis/code/` | 🟢 Safe |
|
||||
| `.chat/plan-*.md` | `planning/architecture/` | 🟢 Safe |
|
||||
| `.chat/chat-*.md` | `interactions/` | 🟢 Safe |
|
||||
| `.chat/execute-*.md` | `executions/implementations/` | ⚠️ Dangerous |
|
||||
|
||||
### 2. Split `.process/` by Purpose
|
||||
|
||||
| Current | New | Purpose |
|
||||
|---------|-----|---------|
|
||||
| `.process/context-package.json` | `context/project/` | Planning context |
|
||||
| `.process/CONFLICT_RESOLUTION.md` | `context/conflicts/` | Planning artifact |
|
||||
| `.process/ACTION_PLAN_VERIFICATION.md` | `quality/verifications/` | Quality check |
|
||||
| `.process/backup/` | `history/replans/` | Backups |
|
||||
| `.process/phase2-analysis.json` | `temp/` | Temporary data |
|
||||
|
||||
### 3. Rename for Clarity
|
||||
|
||||
| Current | New | Reason |
|
||||
|---------|-----|--------|
|
||||
| `.task/` | `tasks/` | Remove dot prefix (not hidden) |
|
||||
| `.summaries/` | `summaries/` | Keep same (already clear) |
|
||||
|
||||
---
|
||||
|
||||
## Command Output Changes (Examples)
|
||||
|
||||
### Analysis Commands
|
||||
|
||||
```bash
|
||||
# Current (v1.0)
|
||||
/cli:analyze "review auth code"
|
||||
→ .chat/analyze-2024-01-15.md ⚠️ Mixed with dangerous ops
|
||||
|
||||
# Proposed (v2.0)
|
||||
/cli:analyze "review auth code"
|
||||
→ analysis/code/2024-01-15T10-30-auth.md ✅ Clearly safe
|
||||
```
|
||||
|
||||
### Execution Commands
|
||||
|
||||
```bash
|
||||
# Current (v1.0)
|
||||
/cli:execute "implement auth"
|
||||
→ .chat/execute-2024-01-15.md ⚠️ Looks safe, but dangerous!
|
||||
|
||||
# Proposed (v2.0)
|
||||
/cli:execute "implement auth"
|
||||
→ executions/implementations/2024-01-15T11-00-auth.md ⚠️ Clearly dangerous
|
||||
```
|
||||
|
||||
### Planning Commands
|
||||
|
||||
```bash
|
||||
# Current (v1.0)
|
||||
/cli:discuss-plan "design caching"
|
||||
→ .chat/discuss-plan-2024-01-15.md ⚠️ Mixed with dangerous ops
|
||||
|
||||
# Proposed (v2.0)
|
||||
/cli:discuss-plan "design caching"
|
||||
→ planning/discussions/2024-01-15T15-00-caching-3rounds.md ✅ Clearly safe
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Migration Impact
|
||||
|
||||
### Affected Commands: ~30
|
||||
|
||||
**Analysis Commands** (6):
|
||||
- `/cli:analyze`
|
||||
- `/cli:mode:code-analysis`
|
||||
- `/cli:mode:bug-diagnosis`
|
||||
- `/cli:chat`
|
||||
- `/memory:code-map-memory`
|
||||
- `/workflow:review`
|
||||
|
||||
**Planning Commands** (5):
|
||||
- `/cli:mode:plan`
|
||||
- `/cli:discuss-plan`
|
||||
- `/workflow:plan`
|
||||
- `/workflow:replan`
|
||||
- `/workflow:brainstorm:*`
|
||||
|
||||
**Execution Commands** (8):
|
||||
- `/cli:execute`
|
||||
- `/cli:codex-execute`
|
||||
- `/workflow:execute`
|
||||
- `/workflow:lite-execute`
|
||||
- `/task:execute`
|
||||
- `/workflow:test-cycle-execute`
|
||||
- `/workflow:test-fix-gen`
|
||||
- `/workflow:test-gen`
|
||||
|
||||
**Quality Commands** (4):
|
||||
- `/workflow:action-plan-verify`
|
||||
- `/workflow:review`
|
||||
- `/workflow:tdd-verify`
|
||||
- `/workflow:tdd-coverage-analysis`
|
||||
|
||||
**Context Commands** (7):
|
||||
- `/workflow:tools:context-gather`
|
||||
- `/workflow:tools:conflict-resolution`
|
||||
- `/workflow:brainstorm:artifacts`
|
||||
- `/memory:skill-memory`
|
||||
- `/memory:docs`
|
||||
- `/memory:load`
|
||||
- `/memory:tech-research`
|
||||
|
||||
---
|
||||
|
||||
## Safety Indicators
|
||||
|
||||
### Directory Color Coding
|
||||
|
||||
- 🟢 **Green** (Safe): Read-only operations, no code changes
|
||||
- `analysis/`
|
||||
- `planning/`
|
||||
- `interactions/`
|
||||
- `summaries/`
|
||||
- `quality/`
|
||||
- `context/`
|
||||
- `history/`
|
||||
|
||||
- ⚠️ **Yellow** (Dangerous): Code-modifying operations
|
||||
- `executions/`
|
||||
|
||||
### File Naming Patterns
|
||||
|
||||
**Safe Operations** (🟢):
|
||||
```
|
||||
analysis/code/2024-01-15T10-30-auth-patterns.md
|
||||
planning/discussions/2024-01-15T15-00-caching-3rounds.md
|
||||
interactions/2024-01-15T14-00-jwt-question.md
|
||||
```
|
||||
|
||||
**Dangerous Operations** (⚠️):
|
||||
```
|
||||
executions/implementations/2024-01-15T11-00-impl-auth.md
|
||||
executions/test-fixes/2024-01-16T09-00-fix-login-tests.md
|
||||
executions/refactors/2024-01-16T15-00-refactor-middleware.md
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## User Experience Improvements
|
||||
|
||||
### Before (v1.0) - Confusing ❌
|
||||
|
||||
**User wants to review analysis logs**:
|
||||
```bash
|
||||
$ ls .workflow/active/WFS-auth/.chat/
|
||||
analyze-2024-01-15.md
|
||||
execute-2024-01-15.md # ⚠️ Wait, which one is safe?
|
||||
plan-2024-01-14.md
|
||||
execute-2024-01-16.md # ⚠️ More dangerous files mixed in!
|
||||
chat-2024-01-15.md
|
||||
```
|
||||
|
||||
User thinks: "They're all in `.chat/`, so they're all logs... right?" 😰
|
||||
|
||||
### After (v2.0) - Clear ✅
|
||||
|
||||
**User wants to review analysis logs**:
|
||||
```bash
|
||||
$ ls .workflow/active/WFS-auth/
|
||||
analysis/ # ✅ Safe - code understanding
|
||||
planning/ # ✅ Safe - planning discussions
|
||||
interactions/ # ✅ Safe - Q&A logs
|
||||
executions/ # ⚠️ DANGER - code modifications
|
||||
```
|
||||
|
||||
User thinks: "Oh, `executions/` is separate. I know that modifies code!" 😊
|
||||
|
||||
---
|
||||
|
||||
## Performance Impact
|
||||
|
||||
### Storage
|
||||
|
||||
**Overhead**: Negligible
|
||||
- Deeper directory nesting adds ~10 bytes per file
|
||||
- For 1000 files: ~10 KB additional metadata
|
||||
|
||||
### Access Speed
|
||||
|
||||
**Overhead**: Negligible
|
||||
- Modern filesystems handle nested directories efficiently
|
||||
- Typical lookup: O(log n) regardless of depth
|
||||
|
||||
### Migration Cost
|
||||
|
||||
**Phase 1 (Dual Write)**: ~5-10% overhead
|
||||
- Writing to both old and new locations
|
||||
- Temporary during migration period
|
||||
|
||||
**Phase 2+ (New Structure Only)**: No overhead
|
||||
- Single write location
|
||||
- Actually slightly faster (better organization)
|
||||
|
||||
---
|
||||
|
||||
## Rollback Plan
|
||||
|
||||
If migration causes issues:
|
||||
|
||||
### Easy Rollback (Phase 1-2)
|
||||
|
||||
```bash
|
||||
# Stop using new structure
|
||||
git revert <migration-commit>
|
||||
# Continue with old structure
|
||||
# No data loss (dual write preserved both)
|
||||
```
|
||||
|
||||
### Manual Rollback (Phase 3+)
|
||||
|
||||
```bash
|
||||
# Copy files back to old locations
|
||||
cp -r analysis/code/* .chat/
|
||||
cp -r executions/implementations/* .chat/
|
||||
cp -r context/project/* .process/
|
||||
# etc.
|
||||
```
|
||||
|
||||
---
|
||||
|
||||
## Timeline Summary
|
||||
|
||||
| Phase | Duration | Status | Risk |
|
||||
|-------|----------|--------|------|
|
||||
| **Phase 1**: Dual Write | 2 weeks | 📋 Planned | LOW |
|
||||
| **Phase 2**: Dual Read | 1 week | 📋 Planned | LOW |
|
||||
| **Phase 3**: Deprecation | 1 week | 📋 Planned | MEDIUM |
|
||||
| **Phase 4**: Full Migration | Future | 🤔 Optional | MEDIUM |
|
||||
|
||||
**Total**: 4 weeks for Phases 1-3
|
||||
**Effort**: ~20-30 hours development time
|
||||
|
||||
---
|
||||
|
||||
## Decision: Which Approach?
|
||||
|
||||
### Option A: Full v2.0 Migration (Recommended) ✅
|
||||
|
||||
**Pros**:
|
||||
- ✅ Clear semantic separation
|
||||
- ✅ Future-proof organization
|
||||
- ✅ Best user experience
|
||||
- ✅ Solves all identified problems
|
||||
|
||||
**Cons**:
|
||||
- ❌ 4-week migration period
|
||||
- ❌ Affects 30+ commands
|
||||
- ❌ Requires documentation updates
|
||||
|
||||
**Recommendation**: **YES** - Worth the investment
|
||||
|
||||
### Option B: Minimal Changes (Quick Fix)
|
||||
|
||||
**Change**:
|
||||
```
|
||||
.chat/ → Split into .analysis/ and .executions/
|
||||
.process/ → Keep as-is with better docs
|
||||
```
|
||||
|
||||
**Pros**:
|
||||
- ✅ Quick implementation (1 week)
|
||||
- ✅ Solves main safety confusion
|
||||
|
||||
**Cons**:
|
||||
- ❌ Partial solution
|
||||
- ❌ Still some confusion
|
||||
- ❌ May need full migration later anyway
|
||||
|
||||
**Recommendation**: Only if time-constrained
|
||||
|
||||
### Option C: Status Quo (No Change)
|
||||
|
||||
**Pros**:
|
||||
- ✅ No development effort
|
||||
|
||||
**Cons**:
|
||||
- ❌ Problems remain
|
||||
- ❌ User confusion continues
|
||||
- ❌ Safety risks
|
||||
|
||||
**Recommendation**: **NO** - Not recommended
|
||||
|
||||
---
|
||||
|
||||
## Conclusion
|
||||
|
||||
**Recommended Action**: Proceed with **Option A (Full v2.0 Migration)**
|
||||
|
||||
**Key Benefits**:
|
||||
1. 🟢 Clear safety separation (read-only vs code-modifying)
|
||||
2. 📁 Semantic organization by purpose
|
||||
3. 🔍 Easy to find specific outputs
|
||||
4. 📈 Scales for future growth
|
||||
5. 👥 Better user experience
|
||||
|
||||
**Next Steps**:
|
||||
1. ✅ Review and approve this proposal
|
||||
2. 📋 Create detailed implementation tasks
|
||||
3. 🚀 Begin Phase 1: Dual Write implementation
|
||||
4. 📚 Update documentation in parallel
|
||||
|
||||
**Questions?**
|
||||
- See detailed analysis in: `OUTPUT_DIRECTORY_REORGANIZATION.md`
|
||||
- Implementation guide: Migration Strategy section
|
||||
- Risk assessment: Risk Assessment section
|
||||
1016
PLANNING_GAP_ANALYSIS.md
Normal file
1016
PLANNING_GAP_ANALYSIS.md
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user