claude-code-workflow 6.3.53 → 6.3.54
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/.claude/agents/action-planning-agent.md +26 -1
- package/.claude/commands/flow-create.md +675 -0
- package/.claude/commands/workflow/plan.md +14 -1
- package/.claude/commands/workflow/tools/task-generate-agent.md +35 -24
- package/.claude/commands/workflow/unified-execute-with-file.md +0 -15
- package/.claude/skills/flow-coordinator/SKILL.md +394 -0
- package/.claude/skills/flow-coordinator/templates/analyze.json +16 -0
- package/.claude/skills/flow-coordinator/templates/brainstorm-to-issue.json +36 -0
- package/.claude/skills/flow-coordinator/templates/brainstorm.json +16 -0
- package/.claude/skills/flow-coordinator/templates/bugfix-hotfix.json +16 -0
- package/.claude/skills/flow-coordinator/templates/bugfix.json +47 -0
- package/.claude/skills/flow-coordinator/templates/coupled.json +71 -0
- package/.claude/skills/flow-coordinator/templates/debug.json +16 -0
- package/.claude/skills/flow-coordinator/templates/docs.json +27 -0
- package/.claude/skills/flow-coordinator/templates/full.json +61 -0
- package/.claude/skills/flow-coordinator/templates/issue.json +43 -0
- package/.claude/skills/flow-coordinator/templates/lite-lite-lite.json +16 -0
- package/.claude/skills/flow-coordinator/templates/multi-cli-plan.json +47 -0
- package/.claude/skills/flow-coordinator/templates/rapid-to-issue.json +46 -0
- package/.claude/skills/flow-coordinator/templates/rapid.json +47 -0
- package/.claude/skills/flow-coordinator/templates/review.json +43 -0
- package/.claude/skills/flow-coordinator/templates/tdd.json +34 -0
- package/.claude/skills/flow-coordinator/templates/test-fix.json +26 -0
- package/package.json +92 -92
|
@@ -834,10 +834,35 @@ Use `analysis_results.complexity` or task count to determine structure:
|
|
|
834
834
|
- Proper linking between documents
|
|
835
835
|
- Consistent navigation and references
|
|
836
836
|
|
|
837
|
-
### 3.3
|
|
837
|
+
### 3.3 N+1 Context Recording
|
|
838
|
+
|
|
839
|
+
**Purpose**: Record decisions and deferred items for N+1 planning continuity.
|
|
840
|
+
|
|
841
|
+
**When**: After task generation, update `## N+1 Context` in planning-notes.md.
|
|
842
|
+
|
|
843
|
+
**What to Record**:
|
|
844
|
+
- **Decisions**: Architecture/technology choices with rationale (mark `Revisit?` if may change)
|
|
845
|
+
- **Deferred**: Items explicitly moved to N+1 with reason
|
|
846
|
+
|
|
847
|
+
**Example**:
|
|
848
|
+
```markdown
|
|
849
|
+
## N+1 Context
|
|
850
|
+
### Decisions
|
|
851
|
+
| Decision | Rationale | Revisit? |
|
|
852
|
+
|----------|-----------|----------|
|
|
853
|
+
| JWT over Session | Stateless scaling | No |
|
|
854
|
+
| CROSS::B::api → IMPL-B1 | B1 defines base | Yes |
|
|
855
|
+
|
|
856
|
+
### Deferred
|
|
857
|
+
- [ ] Rate limiting - Requires Redis (N+1)
|
|
858
|
+
- [ ] API versioning - Low priority
|
|
859
|
+
```
|
|
860
|
+
|
|
861
|
+
### 3.4 Guidelines Checklist
|
|
838
862
|
|
|
839
863
|
**ALWAYS:**
|
|
840
864
|
- **Load planning-notes.md FIRST**: Read planning-notes.md before context-package.json. Use its Consolidated Constraints as primary constraint source for all task generation
|
|
865
|
+
- **Record N+1 Context**: Update `## N+1 Context` section with key decisions and deferred items
|
|
841
866
|
- **Search Tool Priority**: ACE (`mcp__ace-tool__search_context`) → CCW (`mcp__ccw-tools__smart_search`) / Built-in (`Grep`, `Glob`, `Read`)
|
|
842
867
|
- Apply Quantification Requirements to all requirements, acceptance criteria, and modification points
|
|
843
868
|
- Load IMPL_PLAN template: `Read(~/.claude/workflows/cli-templates/prompts/workflow/impl-plan-template.txt)` before generating IMPL_PLAN.md
|