forge-workflow 1.3.1 → 1.4.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.
@@ -76,6 +76,14 @@ npm run test # or: bun run test, jest, vitest, etc.
76
76
  - Includes security test scenarios
77
77
  - TDD tests from /dev phase
78
78
 
79
+ > **💭 Plan-Act-Reflect Checkpoint**
80
+ > Before declaring validation complete:
81
+ > - Are all security test scenarios from your research doc actually implemented and passing?
82
+ > - Did you verify OWASP Top 10 mitigations, not just check a box?
83
+ > - Are there edge cases or integration scenarios you haven't tested?
84
+ >
85
+ > **If unsure**: Re-read the "Security Analysis" and "TDD Test Scenarios" sections in research doc
86
+
79
87
  ### Step 6: Handle Failures
80
88
 
81
89
  If any check fails:
@@ -39,6 +39,14 @@ CO-DEPENDENT (Must Sequence):
39
39
  Decision: Parallel tracks possible after types created
40
40
  ```
41
41
 
42
+ > **💭 Plan-Act-Reflect Checkpoint**
43
+ > Before choosing your execution strategy:
44
+ > - Is the parallelization complexity worth the time savings?
45
+ > - Do you have clear boundaries between tracks, or will they collide?
46
+ > - Have you identified the true "shared foundation" that must come first?
47
+ >
48
+ > **If unsure**: Start sequential. Refer to your OpenSpec `tasks.md` for dependency guidance.
49
+
42
50
  ### Step 2: Create TodoWrite (TDD Pattern)
43
51
 
44
52
  **TESTS WRITTEN UPFRONT** - Before implementation
@@ -35,6 +35,14 @@ cat docs/research/<feature-slug>.md
35
35
  - Then create Beads issue
36
36
  - Multi-session or parallel work
37
37
 
38
+ > **💭 Plan-Act-Reflect Checkpoint**
39
+ > Before proceeding, reflect on this scope decision:
40
+ > - Does this change affect system architecture, APIs, or data models?
41
+ > - Will future features depend on getting this design right now?
42
+ > - Would a team discussion reveal concerns or better alternatives?
43
+ >
44
+ > **If unsure**: Review your research doc (`docs/research/<feature-slug>.md`) for complexity signals
45
+
38
46
  ### Step 3A: If Tactical
39
47
 
40
48
  ```bash