5-phase-workflow 1.1.2 → 1.2.0
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.
- package/README.md +2 -16
- package/bin/install.js +20 -12
- package/docs/findings.md +361 -0
- package/docs/progress.md +102 -0
- package/docs/workflow-guide.md +39 -12
- package/package.json +1 -1
- package/src/commands/5/configure.md +16 -3
- package/src/commands/5/implement-feature.md +167 -493
- package/src/commands/5/plan-feature.md +18 -86
- package/src/commands/5/plan-implementation.md +136 -403
- package/src/commands/5/quick-implement.md +37 -28
- package/src/commands/5/review-code.md +221 -217
- package/src/commands/5/verify-implementation.md +279 -245
- package/src/skills/configure-project/SKILL.md +1 -1
- package/src/templates/workflow/FEATURE-SPEC.md +83 -0
- package/src/templates/workflow/FIX-PLAN.md +55 -0
- package/src/templates/workflow/PLAN.md +30 -0
- package/src/templates/workflow/QUICK-PLAN.md +17 -0
- package/src/templates/workflow/REVIEW-FINDINGS.md +58 -0
- package/src/templates/workflow/REVIEW-SUMMARY.md +35 -0
- package/src/templates/workflow/STATE.json +9 -0
- package/src/templates/workflow/VERIFICATION-REPORT.md +95 -0
- package/src/agents/integration-agent.md +0 -220
- package/src/agents/review-processor.md +0 -161
- package/src/agents/step-executor.md +0 -109
- package/src/agents/step-fixer.md +0 -133
- package/src/agents/step-verifier.md +0 -126
- package/src/agents/verification-agent.md +0 -445
|
@@ -184,11 +184,24 @@ fi
|
|
|
184
184
|
- "Suggested test command: `{command}`. Use this?"
|
|
185
185
|
- Options: "Yes (recommended)", "Customize", "None (no test step)"
|
|
186
186
|
|
|
187
|
-
**2f.
|
|
187
|
+
**2f. Review tool preference:**
|
|
188
|
+
- "Which code review tool would you like to use?"
|
|
189
|
+
- Options:
|
|
190
|
+
1. "Claude (built-in, no setup needed)" — always available
|
|
191
|
+
2. "CodeRabbit CLI (requires installation)" — external tool
|
|
192
|
+
3. "None (skip automated review)"
|
|
193
|
+
- If user selects CodeRabbit and it was not detected in Step 1d:
|
|
194
|
+
- Inform: "CodeRabbit CLI is not installed. You can install it later:"
|
|
195
|
+
- macOS: `brew install --cask coderabbit`
|
|
196
|
+
- Other: `curl -fsSL https://cli.coderabbit.ai/install.sh | sh`
|
|
197
|
+
- Then: `coderabbit auth login`
|
|
198
|
+
- Record the preference as `coderabbit` regardless (will prompt at review time if still missing)
|
|
199
|
+
|
|
200
|
+
**2g. Confirm CLAUDE.md generation:**
|
|
188
201
|
- "Generate/update CLAUDE.md? This will analyze your codebase to document structure and conventions."
|
|
189
202
|
- Options: "Yes (recommended)", "Skip"
|
|
190
203
|
|
|
191
|
-
**
|
|
204
|
+
**2h. Confirm project-specific skills:**
|
|
192
205
|
- Present proposed skills based on detected project type (see skill table in configure-project/SKILL.md)
|
|
193
206
|
- "These project-specific skills were detected for your {project-type} project: {skill-list}. Confirm or customize?"
|
|
194
207
|
- Options: "Use these (recommended)", "Customize", "Skip skill generation"
|
|
@@ -217,7 +230,7 @@ Create `.claude/.5/config.json` with the following values:
|
|
|
217
230
|
- Test timeout: 300000ms
|
|
218
231
|
- CodeRabbit: {available/not-available}, authenticated: {yes/no}
|
|
219
232
|
- IDE integration: {available/not-available}, type: {type}
|
|
220
|
-
- Review tool: {coderabbit/none}
|
|
233
|
+
- Review tool: {claude/coderabbit/none}
|
|
221
234
|
|
|
222
235
|
### Requirement 2: Generate Documentation Files
|
|
223
236
|
Analyze the codebase and generate modular documentation:
|