You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: make map-codebase optional templates and flatten structure
- Output documents now go to .planning/ instead of .planning/codebase/
- Split 7 templates into 4 core + 3 optional
- Core: STACK, ARCHITECTURE, STRUCTURE, CONVENTIONS (always generated)
- Optional: TESTING, INTEGRATIONS, CONCERNS (generate as applicable)
- Updated Process steps to ask which optional templates to generate
- Clarify when to use each optional template
- Reduce unnecessary documentation overhead for simple projects
- Update Success Criteria to reflect optional documents
@@ -32,17 +35,20 @@ Analyzes existing codebases using parallel Explore agents to produce structured
32
35
33
36
## Objective
34
37
35
-
This skill spawns multiple Explore agents to analyze different aspects of the codebase in parallel, each with fresh context. The result is 7 structured documents that provide a comprehensive map of the codebase state.
38
+
Spawns multiple Explore agents to analyze different aspects of the codebase in parallel, each with fresh context. Results are structured documents in `.planning/` that provide a comprehensive map of the codebase state.
If user provided a focus area (e.g., "api" or "auth"), instruct agents to pay special attention to that subsystem while still providing holistic analysis.
84
+
### Step 3: Load Project Context
78
85
79
-
### Step 4: Create Directory Structure
86
+
Check for `.planning/STATE.md` to load existing project context if available. Helps agents understand project-specific terminology and patterns.
80
87
81
-
Create `.planning/codebase/` directory if it doesn't exist.
88
+
### Step 4: Process Focus Area Argument
89
+
90
+
If user provided a focus area (e.g., "api" or "auth"), instruct agents to pay special attention to that subsystem while still providing holistic analysis.
82
91
83
92
### Step 5: Spawn Parallel Explore Agents
84
93
@@ -104,72 +113,42 @@ Launch 4 Explore agents in parallel, each with "very thorough" exploration level
0 commit comments