@yeongjaeyou/claude-code-config 0.11.0 → 0.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -36,7 +36,14 @@ Act as an expert developer who systematically analyzes and resolves GitHub issue
|
|
|
36
36
|
```
|
|
37
37
|
- Skip if Status field does not exist
|
|
38
38
|
|
|
39
|
-
5. **Analyze Codebase**:
|
|
39
|
+
5. **Analyze Codebase (MANDATORY)**: Before writing any code, spawn multiple Explorer agents in parallel to preserve main context:
|
|
40
|
+
- **Structure agent**: Overall architecture and file relationships
|
|
41
|
+
- **Pattern agent**: Similar implementations in codebase
|
|
42
|
+
- **Dependency agent**: Affected modules and consumers
|
|
43
|
+
|
|
44
|
+
```
|
|
45
|
+
Task tool with subagent_type=Explore (launch 2-3 agents simultaneously)
|
|
46
|
+
```
|
|
40
47
|
|
|
41
48
|
6. **Plan Resolution**: Based on analysis results, develop a concrete resolution plan and define work steps.
|
|
42
49
|
|
|
@@ -67,6 +67,25 @@ Utilize MCP servers whenever possible:
|
|
|
67
67
|
|
|
68
68
|
### Code Exploration Strategy
|
|
69
69
|
|
|
70
|
+
#### Pre-Implementation Exploration (MANDATORY)
|
|
71
|
+
Before writing or modifying code, spawn multiple Explorer agents in parallel:
|
|
72
|
+
|
|
73
|
+
| Agent Focus | Purpose |
|
|
74
|
+
|-------------|---------|
|
|
75
|
+
| **Structure** | Overall architecture and file relationships |
|
|
76
|
+
| **Pattern** | Similar implementations in codebase |
|
|
77
|
+
| **Dependency** | Affected modules and consumers |
|
|
78
|
+
|
|
79
|
+
**Benefits:**
|
|
80
|
+
- Preserves main context window for actual implementation
|
|
81
|
+
- Each agent explores independently without blocking
|
|
82
|
+
- Aggregated insights before touching code
|
|
83
|
+
|
|
84
|
+
**Execution:**
|
|
85
|
+
```
|
|
86
|
+
Task tool with subagent_type=Explore (launch 2-3 agents simultaneously in single message)
|
|
87
|
+
```
|
|
88
|
+
|
|
70
89
|
#### Parallel Exploration with Multiple Tools
|
|
71
90
|
Combine the following tools in parallel for efficient code exploration:
|
|
72
91
|
|