claude-flow-novice 2.15.8 → 2.15.10

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.
Files changed (66) hide show
  1. package/.claude/skills/cfn-loop-orchestration/IMPLEMENTATION_SUMMARY.md +519 -0
  2. package/.claude/skills/cfn-loop-orchestration/ORCHESTRATOR_IMPLEMENTATION.md +493 -0
  3. package/.claude/skills/cfn-loop-orchestration/ORCHESTRATOR_QUICK_START.md +499 -0
  4. package/.claude/skills/cfn-loop-orchestration/helpers/consensus-ts.sh +104 -0
  5. package/.claude/skills/cfn-loop-orchestration/helpers/deliverable-verifier-ts.sh +123 -0
  6. package/.claude/skills/cfn-loop-orchestration/helpers/iteration-manager-ts.sh +89 -0
  7. package/.claude/skills/cfn-loop-orchestration/helpers/orchestrate-ts.sh +104 -0
  8. package/.claude/skills/cfn-loop-orchestration/helpers/timeout-calculator-ts.sh +47 -0
  9. package/.claude/skills/cfn-loop-orchestration/orchestrate.sh +2 -2
  10. package/.claude/skills/cfn-loop-orchestration/src/orchestrate.ts +648 -0
  11. package/.claude/skills/cfn-loop-orchestration/tests/orchestrate.test.ts +836 -0
  12. package/.claude/skills/cfn-redis-coordination/report-completion.sh +55 -10
  13. package/.claude/skills/cfn-redis-coordination/store-context.sh +31 -1
  14. package/README.md +205 -10
  15. package/claude-assets/agents/cfn-dev-team/coordinators/cfn-frontend-coordinator.md +6 -1
  16. package/claude-assets/agents/cfn-dev-team/coordinators/cfn-v3-coordinator.md +180 -229
  17. package/claude-assets/agents/cfn-dev-team/coordinators/consensus-builder.md +6 -1
  18. package/claude-assets/agents/cfn-dev-team/coordinators/handoff-coordinator.md +6 -1
  19. package/claude-assets/agents/cfn-dev-team/coordinators/multi-sprint-coordinator.md +6 -1
  20. package/claude-assets/agents/cfn-dev-team/dev-ops/docker-specialist.md +20 -8
  21. package/claude-assets/agents/cfn-dev-team/dev-ops/kubernetes-specialist.md +20 -8
  22. package/claude-assets/agents/cfn-dev-team/developers/api-gateway-specialist.md +20 -9
  23. package/claude-assets/agents/cfn-dev-team/developers/backend-developer.md +17 -7
  24. package/claude-assets/agents/cfn-dev-team/developers/database/database-architect.md +3 -0
  25. package/claude-assets/agents/cfn-dev-team/developers/frontend/mobile-dev.md +4 -1
  26. package/claude-assets/agents/cfn-dev-team/developers/frontend/react-frontend-engineer.md +4 -1
  27. package/claude-assets/agents/cfn-dev-team/developers/frontend/typescript-specialist.md +4 -1
  28. package/claude-assets/agents/cfn-dev-team/developers/frontend/ui-designer.md +5 -0
  29. package/claude-assets/agents/cfn-dev-team/developers/graphql-specialist.md +19 -9
  30. package/claude-assets/agents/cfn-dev-team/developers/rust-developer.md +20 -9
  31. package/claude-assets/agents/cfn-dev-team/documentation/pseudocode.md +2 -7
  32. package/claude-assets/agents/cfn-dev-team/reviewers/code-reviewer.md +9 -5
  33. package/claude-assets/agents/cfn-dev-team/reviewers/quality/code-quality-validator.md +13 -6
  34. package/claude-assets/agents/cfn-dev-team/reviewers/quality/perf-analyzer.md +13 -6
  35. package/claude-assets/agents/cfn-dev-team/reviewers/quality/performance-benchmarker.md +13 -6
  36. package/claude-assets/agents/cfn-dev-team/reviewers/quality/security-specialist.md +15 -5
  37. package/claude-assets/agents/cfn-dev-team/testers/api-testing-specialist.md +9 -5
  38. package/claude-assets/agents/cfn-dev-team/testers/chaos-engineering-specialist.md +8 -4
  39. package/claude-assets/agents/cfn-dev-team/testers/interaction-tester.md +16 -13
  40. package/claude-assets/agents/cfn-dev-team/testers/playwright-tester.md +9 -5
  41. package/claude-assets/agents/cfn-dev-team/testers/tester.md +9 -5
  42. package/claude-assets/agents/cfn-dev-team/utility/epic-creator.md +16 -9
  43. package/claude-assets/agents/cfn-dev-team/utility/memory-leak-specialist.md +16 -9
  44. package/claude-assets/agents/cfn-dev-team/utility/z-ai-specialist.md +16 -9
  45. package/claude-assets/skills/cfn-loop-orchestration/IMPLEMENTATION_SUMMARY.md +519 -0
  46. package/claude-assets/skills/cfn-loop-orchestration/ORCHESTRATOR_IMPLEMENTATION.md +493 -0
  47. package/claude-assets/skills/cfn-loop-orchestration/ORCHESTRATOR_QUICK_START.md +499 -0
  48. package/claude-assets/skills/cfn-loop-orchestration/helpers/consensus-ts.sh +104 -0
  49. package/claude-assets/skills/cfn-loop-orchestration/helpers/deliverable-verifier-ts.sh +123 -0
  50. package/claude-assets/skills/cfn-loop-orchestration/helpers/iteration-manager-ts.sh +89 -0
  51. package/claude-assets/skills/cfn-loop-orchestration/helpers/orchestrate-ts.sh +104 -0
  52. package/claude-assets/skills/cfn-loop-orchestration/helpers/timeout-calculator-ts.sh +47 -0
  53. package/claude-assets/skills/cfn-loop-orchestration/orchestrate.sh +2 -2
  54. package/claude-assets/skills/cfn-loop-orchestration/src/orchestrate.ts +648 -0
  55. package/claude-assets/skills/cfn-loop-orchestration/tests/orchestrate.test.ts +836 -0
  56. package/claude-assets/skills/cfn-redis-coordination/report-completion.sh +55 -10
  57. package/claude-assets/skills/cfn-redis-coordination/store-context.sh +31 -1
  58. package/dist/cli/config-manager.js +91 -109
  59. package/dist/cli/config-manager.js.map +1 -1
  60. package/dist/coordination/coordinate.js +369 -0
  61. package/dist/coordination/coordinate.js.map +1 -0
  62. package/dist/coordination/spawn-agent.js +364 -0
  63. package/dist/coordination/spawn-agent.js.map +1 -0
  64. package/dist/coordination/types-export.js +38 -0
  65. package/dist/coordination/types-export.js.map +1 -0
  66. package/package.json +1 -1
@@ -63,8 +63,7 @@ fi
63
63
 
64
64
  ### 3. Report Test Results (NOT Confidence)
65
65
 
66
- **Old (Deprecated):**
67
- ```bash
66
+ **Old (Deprecated):** Not used
68
67
 
69
68
  **New (Required):**
70
69
  ```bash
@@ -76,7 +75,6 @@ PASS=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passing)' || echo "0")
76
75
  FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
77
76
  TOTAL=$((PASS + FAIL))
78
77
  RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0.00\"}")
79
-
80
78
  ```
81
79
 
82
80
  ## 🚨 Mandatory Post-Edit Validation
@@ -270,6 +268,8 @@ DO NOT report subjective confidence scores. Instead:
270
268
  Complete your work and provide test-based validation:
271
269
 
272
270
  1. **Execute Tests**: Run all Playwright test suites from success criteria
271
+
272
+ ```bash
273
273
  # Parse natively (no external dependencies)
274
274
  PASS=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passing)' || echo "0")
275
275
  FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
@@ -278,11 +278,15 @@ RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0
278
278
 
279
279
  # Return results (Main Chat receives automatically in Task Mode)
280
280
  echo "{\"passed\": $PASS, \"failed\": $FAIL, \"pass_rate\": $RATE}"
281
+ ```
282
+
283
+ 2. **Validate Results**:
281
284
  - Coverage: ≥80%
282
285
  - Cross-browser coverage: X/Y browsers
283
286
  - Critical flows covered: X/Y
284
- 4. **Store in Redis**: Use test-results key (not confidence key)
285
- 5. **Signal Completion**: Push to completion queue
287
+
288
+ 3. **Store Results**: Use test-results key (not confidence key)
289
+ 4. **Signal Completion**: Push to completion queue
286
290
 
287
291
  **Example Report:**
288
292
  ```
@@ -44,8 +44,7 @@ fi
44
44
 
45
45
  ### 3. Report Test Results (NOT Confidence)
46
46
 
47
- **Old (Deprecated):**
48
- ```bash
47
+ **Old (Deprecated):** Not used
49
48
 
50
49
  **New (Required):**
51
50
  ```bash
@@ -57,7 +56,6 @@ PASS=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passing)' || echo "0")
57
56
  FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
58
57
  TOTAL=$((PASS + FAIL))
59
58
  RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0.00\"}")
60
-
61
59
  ```
62
60
 
63
61
  ## Core Responsibilities
@@ -223,6 +221,8 @@ DO NOT report subjective confidence scores. Instead:
223
221
  Complete your work and provide test-based validation:
224
222
 
225
223
  1. **Execute Tests**: Run all test suites from success criteria
224
+
225
+ ```bash
226
226
  # Parse natively (no external dependencies)
227
227
  PASS=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passing)' || echo "0")
228
228
  FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
@@ -231,9 +231,13 @@ RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0
231
231
 
232
232
  # Return results (Main Chat receives automatically in Task Mode)
233
233
  echo "{\"passed\": $PASS, \"failed\": $FAIL, \"pass_rate\": $RATE}"
234
+ ```
235
+
236
+ 2. **Validate Results**:
234
237
  - Coverage: ≥80%
235
- 4. **Store in Redis**: Use test-results key (not confidence key)
236
- 5. **Signal Completion**: Push to completion queue
238
+
239
+ 3. **Store Results**: Use test-results key (not confidence key)
240
+ 4. **Signal Completion**: Push to completion queue
237
241
 
238
242
  **Example Report:**
239
243
  ```
@@ -60,6 +60,8 @@ fi
60
60
 
61
61
  **Old (Deprecated):**
62
62
  ```bash
63
+ # report-completion.sh --confidence 0.85
64
+ ```
63
65
 
64
66
  **New (Required):**
65
67
  ```bash
@@ -72,6 +74,8 @@ FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
72
74
  TOTAL=$((PASS + FAIL))
73
75
  RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0.00\"}")
74
76
 
77
+ # Return results (Main Chat receives automatically in Task Mode)
78
+ echo "{\"passed\": $PASS, \"failed\": $FAIL, \"pass_rate\": $RATE}"
75
79
  ```
76
80
 
77
81
  ## Core Identity
@@ -187,15 +191,18 @@ Store epic configuration for coordinator reference:
187
191
  Complete your epic configuration work and provide test-based validation:
188
192
 
189
193
  1. **Execute Tests**: Run all test suites from success criteria
190
- # Parse natively (no external dependencies)
191
- PASS=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passing)' || echo "0")
192
- FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
193
- TOTAL=$((PASS + FAIL))
194
- RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0.00\"}")
195
-
196
- # Return results (Main Chat receives automatically in Task Mode)
197
- echo "{\"passed\": $PASS, \"failed\": $FAIL, \"pass_rate\": $RATE}"
198
- - Coverage: ≥80%
194
+ 2. **Parse Results**: Extract pass/fail counts and calculate pass rate
195
+ ```bash
196
+ # Parse natively (no external dependencies)
197
+ PASS=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passing)' || echo "0")
198
+ FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
199
+ TOTAL=$((PASS + FAIL))
200
+ RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0.00\"}")
201
+
202
+ # Return results (Main Chat receives automatically in Task Mode)
203
+ echo "{\"passed\": $PASS, \"failed\": $FAIL, \"pass_rate\": $RATE}"
204
+ ```
205
+ 3. **Verify Coverage**: ≥80%
199
206
  4. **Store in Redis**: Use test-results key (not confidence key)
200
207
  5. **Signal Completion**: Push to completion queue
201
208
 
@@ -75,6 +75,8 @@ fi
75
75
 
76
76
  **Old (Deprecated):**
77
77
  ```bash
78
+ # report-completion.sh --confidence 0.85
79
+ ```
78
80
 
79
81
  **New (Required):**
80
82
  ```bash
@@ -87,6 +89,8 @@ FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
87
89
  TOTAL=$((PASS + FAIL))
88
90
  RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0.00\"}")
89
91
 
92
+ # Return results (Main Chat receives automatically in Task Mode)
93
+ echo "{\"passed\": $PASS, \"failed\": $FAIL, \"pass_rate\": $RATE}"
90
94
  ```
91
95
 
92
96
  # Memory Leak Specialist Agent
@@ -817,15 +821,18 @@ Before reporting high confidence:
817
821
  Complete your work and provide test-based validation:
818
822
 
819
823
  1. **Execute Tests**: Run all test suites from success criteria
820
- # Parse natively (no external dependencies)
821
- PASS=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passing)' || echo "0")
822
- FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
823
- TOTAL=$((PASS + FAIL))
824
- RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0.00\"}")
825
-
826
- # Return results (Main Chat receives automatically in Task Mode)
827
- echo "{\"passed\": $PASS, \"failed\": $FAIL, \"pass_rate\": $RATE}"
828
- - Coverage: ≥80%
824
+ 2. **Parse Results**: Extract pass/fail counts and calculate pass rate
825
+ ```bash
826
+ # Parse natively (no external dependencies)
827
+ PASS=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passing)' || echo "0")
828
+ FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
829
+ TOTAL=$((PASS + FAIL))
830
+ RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0.00\"}")
831
+
832
+ # Return results (Main Chat receives automatically in Task Mode)
833
+ echo "{\"passed\": $PASS, \"failed\": $FAIL, \"pass_rate\": $RATE}"
834
+ ```
835
+ 3. **Verify Coverage**: ≥80%
829
836
  4. **Store in Redis**: Use test-results key (not confidence key)
830
837
  5. **Signal Completion**: Push to completion queue
831
838
 
@@ -65,6 +65,8 @@ fi
65
65
 
66
66
  **Old (Deprecated):**
67
67
  ```bash
68
+ # report-completion.sh --confidence 0.85
69
+ ```
68
70
 
69
71
  **New (Required):**
70
72
  ```bash
@@ -77,6 +79,8 @@ FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
77
79
  TOTAL=$((PASS + FAIL))
78
80
  RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0.00\"}")
79
81
 
82
+ # Return results (Main Chat receives automatically in Task Mode)
83
+ echo "{\"passed\": $PASS, \"failed\": $FAIL, \"pass_rate\": $RATE}"
80
84
  ```
81
85
 
82
86
  # Z.ai Specialist Agent
@@ -681,15 +685,18 @@ Before reporting high confidence:
681
685
  Complete your work and provide test-based validation:
682
686
 
683
687
  1. **Execute Tests**: Run all test suites from success criteria
684
- # Parse natively (no external dependencies)
685
- PASS=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passing)' || echo "0")
686
- FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
687
- TOTAL=$((PASS + FAIL))
688
- RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0.00\"}")
689
-
690
- # Return results (Main Chat receives automatically in Task Mode)
691
- echo "{\"passed\": $PASS, \"failed\": $FAIL, \"pass_rate\": $RATE}"
692
- - Coverage: ≥80%
688
+ 2. **Parse Results**: Extract pass/fail counts and calculate pass rate
689
+ ```bash
690
+ # Parse natively (no external dependencies)
691
+ PASS=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= passing)' || echo "0")
692
+ FAIL=$(echo "$TEST_OUTPUT" | grep -oP '\d+(?= failing)' || echo "0")
693
+ TOTAL=$((PASS + FAIL))
694
+ RATE=$(awk "BEGIN {if ($TOTAL > 0) printf \"%.2f\", $PASS/$TOTAL; else print \"0.00\"}")
695
+
696
+ # Return results (Main Chat receives automatically in Task Mode)
697
+ echo "{\"passed\": $PASS, \"failed\": $FAIL, \"pass_rate\": $RATE}"
698
+ ```
699
+ 3. **Verify Coverage**: ≥80%
693
700
  4. **Store in Redis**: Use test-results key (not confidence key)
694
701
  5. **Signal Completion**: Push to completion queue
695
702