moflo 4.9.20 → 4.9.22

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 (240) hide show
  1. package/.claude/agents/analysis/analyze-code-quality.md +0 -121
  2. package/.claude/agents/analysis/code-analyzer.md +5 -26
  3. package/.claude/agents/architecture/system-design/arch-system-design.md +0 -119
  4. package/.claude/agents/base-template-generator.md +0 -1
  5. package/.claude/agents/core/coder.md +0 -22
  6. package/.claude/agents/core/planner.md +0 -16
  7. package/.claude/agents/core/researcher.md +0 -16
  8. package/.claude/agents/core/reviewer.md +0 -17
  9. package/.claude/agents/core/tester.md +0 -19
  10. package/.claude/agents/custom/test-long-runner.md +0 -2
  11. package/.claude/agents/development/dev-backend-api.md +0 -167
  12. package/.claude/agents/development/dev-database.md +43 -0
  13. package/.claude/agents/development/dev-frontend.md +42 -0
  14. package/.claude/agents/devops/ci-cd/ops-cicd-github.md +0 -112
  15. package/.claude/agents/documentation/api-docs/docs-api-openapi.md +0 -111
  16. package/.claude/agents/security/security-auditor.md +45 -0
  17. package/.claude/guidance/shipped/moflo-agent-rules.md +172 -0
  18. package/.claude/guidance/shipped/moflo-claude-swarm-cohesion.md +73 -265
  19. package/.claude/guidance/shipped/moflo-cli-reference.md +6 -6
  20. package/.claude/guidance/shipped/moflo-core-guidance.md +66 -184
  21. package/.claude/guidance/shipped/moflo-cross-platform.md +1 -1
  22. package/.claude/guidance/shipped/moflo-error-handling.md +3 -3
  23. package/.claude/guidance/shipped/moflo-guidance-rules.md +17 -7
  24. package/.claude/guidance/shipped/moflo-memory-strategy.md +76 -182
  25. package/.claude/guidance/shipped/moflo-memorydb-maintenance.md +6 -8
  26. package/.claude/guidance/shipped/moflo-settings-injection.md +7 -9
  27. package/.claude/guidance/shipped/moflo-source-hygiene.md +5 -5
  28. package/.claude/guidance/shipped/moflo-spell-connectors.md +3 -4
  29. package/.claude/guidance/shipped/moflo-spell-custom-steps.md +3 -4
  30. package/.claude/guidance/shipped/moflo-spell-engine.md +40 -162
  31. package/.claude/guidance/shipped/moflo-spell-runner.md +134 -0
  32. package/.claude/guidance/shipped/moflo-spell-sandboxing.md +10 -57
  33. package/.claude/guidance/shipped/moflo-spell-troubleshooting.md +149 -0
  34. package/.claude/guidance/shipped/moflo-subagents.md +43 -114
  35. package/.claude/guidance/shipped/moflo-task-icons.md +4 -4
  36. package/.claude/guidance/shipped/moflo-user-facing-language.md +3 -3
  37. package/.claude/guidance/shipped/moflo-verbose-command-filtering.md +3 -3
  38. package/.claude/guidance/shipped/moflo-yaml-reference.md +4 -5
  39. package/.claude/helpers/gate.cjs +192 -15
  40. package/.claude/helpers/prompt-hook.mjs +4 -38
  41. package/.claude/helpers/simplify-classify.cjs +32 -11
  42. package/.claude/helpers/subagent-bootstrap.json +1 -1
  43. package/.claude/helpers/subagent-start.cjs +1 -1
  44. package/.claude/skills/connector-builder/SKILL.md +42 -429
  45. package/.claude/skills/connector-builder/templates/connector.md +189 -0
  46. package/.claude/skills/connector-builder/templates/step-command.md +176 -0
  47. package/.claude/skills/eldar/SKILL.md +7 -7
  48. package/.claude/skills/fl/SKILL.md +3 -3
  49. package/.claude/skills/fl/execution-modes.md +39 -16
  50. package/.claude/skills/fl/phases.md +3 -3
  51. package/.claude/skills/{simplify → flo-simplify}/SKILL.md +11 -11
  52. package/.claude/skills/guidance/SKILL.md +17 -9
  53. package/.claude/skills/memory-patterns/SKILL.md +1 -1
  54. package/.claude/skills/publish/SKILL.md +121 -36
  55. package/.claude/skills/reset-epic/SKILL.md +2 -2
  56. package/.claude/skills/spell-builder/SKILL.md +39 -226
  57. package/.claude/skills/spell-builder/architecture.md +1 -1
  58. package/.claude/skills/spell-builder/permissions.md +107 -0
  59. package/.claude/skills/spell-builder/preflight.md +101 -0
  60. package/.claude/skills/spell-schedule/SKILL.md +2 -3
  61. package/bin/gate.cjs +192 -15
  62. package/bin/lib/retired-files.mjs +146 -0
  63. package/bin/prompt-hook.mjs +4 -38
  64. package/bin/session-start-launcher.mjs +120 -1
  65. package/bin/setup-project.mjs +63 -69
  66. package/bin/simplify-classify.cjs +32 -11
  67. package/dist/src/cli/appliance/rvfa-builder.js +1 -1
  68. package/dist/src/cli/commands/agent.js +3 -9
  69. package/dist/src/cli/commands/doctor-checks-deep.js +4 -0
  70. package/dist/src/cli/commands/hooks.js +1 -3
  71. package/dist/src/cli/commands/index.js +2 -0
  72. package/dist/src/cli/commands/retire.js +111 -0
  73. package/dist/src/cli/hooks/reasoningbank/index.js +7 -7
  74. package/dist/src/cli/init/claudemd-generator.js +30 -33
  75. package/dist/src/cli/init/executor.js +53 -69
  76. package/dist/src/cli/init/helpers-generator.js +165 -52
  77. package/dist/src/cli/init/moflo-init.js +41 -114
  78. package/dist/src/cli/init/settings-generator.js +44 -14
  79. package/dist/src/cli/mcp-tools/agent-tools.js +9 -27
  80. package/dist/src/cli/mcp-tools/hooks-tools.js +23 -21
  81. package/dist/src/cli/memory/controllers/semantic-router.js +18 -12
  82. package/dist/src/cli/memory/sona-optimizer.js +6 -6
  83. package/dist/src/cli/neural/domain/services/learning-service.js +3 -3
  84. package/dist/src/cli/services/agent-router.js +2 -5
  85. package/dist/src/cli/services/hook-block-hash.js +11 -2
  86. package/dist/src/cli/services/hook-wiring.js +86 -3
  87. package/dist/src/cli/services/subagent-bootstrap.js +1 -1
  88. package/dist/src/cli/shared/events/example-usage.js +6 -6
  89. package/dist/src/cli/shared/hooks/task-hooks.js +8 -8
  90. package/dist/src/cli/version.js +1 -1
  91. package/package.json +3 -2
  92. package/retired-files.json +1989 -0
  93. package/scripts/post-install-bootstrap.mjs +19 -0
  94. package/src/cli/data/model-registry.json +2 -2
  95. package/.claude/agents/consensus/byzantine-coordinator.md +0 -63
  96. package/.claude/agents/consensus/crdt-synchronizer.md +0 -997
  97. package/.claude/agents/consensus/gossip-coordinator.md +0 -63
  98. package/.claude/agents/consensus/performance-benchmarker.md +0 -851
  99. package/.claude/agents/consensus/quorum-manager.md +0 -823
  100. package/.claude/agents/consensus/raft-manager.md +0 -63
  101. package/.claude/agents/consensus/security-manager.md +0 -622
  102. package/.claude/agents/data/ml/data-ml-model.md +0 -193
  103. package/.claude/agents/github/code-review-swarm.md +0 -538
  104. package/.claude/agents/github/github-modes.md +0 -172
  105. package/.claude/agents/github/issue-tracker.md +0 -311
  106. package/.claude/agents/github/multi-repo-swarm.md +0 -551
  107. package/.claude/agents/github/pr-manager.md +0 -183
  108. package/.claude/agents/github/project-board-sync.md +0 -508
  109. package/.claude/agents/github/release-manager.md +0 -360
  110. package/.claude/agents/github/release-swarm.md +0 -580
  111. package/.claude/agents/github/repo-architect.md +0 -391
  112. package/.claude/agents/github/swarm-issue.md +0 -566
  113. package/.claude/agents/github/swarm-pr.md +0 -414
  114. package/.claude/agents/github/sync-coordinator.md +0 -426
  115. package/.claude/agents/github/workflow-automation.md +0 -606
  116. package/.claude/agents/goal/code-goal-planner.md +0 -440
  117. package/.claude/agents/goal/goal-planner.md +0 -168
  118. package/.claude/agents/hive-mind/collective-intelligence-coordinator.md +0 -127
  119. package/.claude/agents/hive-mind/queen-coordinator.md +0 -198
  120. package/.claude/agents/hive-mind/scout-explorer.md +0 -233
  121. package/.claude/agents/hive-mind/swarm-memory-manager.md +0 -184
  122. package/.claude/agents/hive-mind/worker-specialist.md +0 -208
  123. package/.claude/agents/neural/safla-neural.md +0 -73
  124. package/.claude/agents/optimization/benchmark-suite.md +0 -665
  125. package/.claude/agents/optimization/load-balancer.md +0 -431
  126. package/.claude/agents/optimization/performance-monitor.md +0 -672
  127. package/.claude/agents/optimization/resource-allocator.md +0 -674
  128. package/.claude/agents/optimization/topology-optimizer.md +0 -808
  129. package/.claude/agents/reasoning/goal-planner.md +0 -67
  130. package/.claude/agents/sona/sona-learning-optimizer.md +0 -74
  131. package/.claude/agents/sparc/architecture.md +0 -472
  132. package/.claude/agents/sparc/pseudocode.md +0 -318
  133. package/.claude/agents/sparc/refinement.md +0 -525
  134. package/.claude/agents/sparc/specification.md +0 -276
  135. package/.claude/agents/specialized/mobile/spec-mobile-react-native.md +0 -225
  136. package/.claude/agents/swarm/adaptive-coordinator.md +0 -391
  137. package/.claude/agents/swarm/hierarchical-coordinator.md +0 -321
  138. package/.claude/agents/swarm/mesh-coordinator.md +0 -383
  139. package/.claude/agents/testing/production-validator.md +0 -395
  140. package/.claude/agents/testing/tdd-london-swarm.md +0 -244
  141. package/.claude/agents/v3/adr-architect.md +0 -184
  142. package/.claude/agents/v3/aidefence-guardian.md +0 -277
  143. package/.claude/agents/v3/claims-authorizer.md +0 -208
  144. package/.claude/agents/v3/collective-intelligence-coordinator.md +0 -988
  145. package/.claude/agents/v3/ddd-domain-expert.md +0 -220
  146. package/.claude/agents/v3/injection-analyst.md +0 -232
  147. package/.claude/agents/v3/memory-specialist.md +0 -987
  148. package/.claude/agents/v3/performance-engineer.md +0 -1225
  149. package/.claude/agents/v3/pii-detector.md +0 -146
  150. package/.claude/agents/v3/reasoningbank-learner.md +0 -213
  151. package/.claude/agents/v3/security-architect-aidefence.md +0 -405
  152. package/.claude/agents/v3/security-architect.md +0 -865
  153. package/.claude/agents/v3/security-auditor.md +0 -771
  154. package/.claude/agents/v3/sparc-orchestrator.md +0 -182
  155. package/.claude/agents/v3/swarm-memory-manager.md +0 -142
  156. package/.claude/agents/v3/v3-integration-architect.md +0 -205
  157. package/.claude/commands/claude-flow-help.md +0 -103
  158. package/.claude/commands/claude-flow-memory.md +0 -107
  159. package/.claude/commands/claude-flow-swarm.md +0 -205
  160. package/.claude/commands/github/README.md +0 -11
  161. package/.claude/commands/github/code-review-swarm.md +0 -514
  162. package/.claude/commands/github/code-review.md +0 -25
  163. package/.claude/commands/github/github-modes.md +0 -146
  164. package/.claude/commands/github/github-swarm.md +0 -113
  165. package/.claude/commands/github/issue-tracker.md +0 -284
  166. package/.claude/commands/github/issue-triage.md +0 -25
  167. package/.claude/commands/github/multi-repo-swarm.md +0 -519
  168. package/.claude/commands/github/pr-enhance.md +0 -26
  169. package/.claude/commands/github/pr-manager.md +0 -164
  170. package/.claude/commands/github/project-board-sync.md +0 -471
  171. package/.claude/commands/github/release-manager.md +0 -332
  172. package/.claude/commands/github/release-swarm.md +0 -544
  173. package/.claude/commands/github/repo-analyze.md +0 -25
  174. package/.claude/commands/github/repo-architect.md +0 -361
  175. package/.claude/commands/github/swarm-issue.md +0 -482
  176. package/.claude/commands/github/swarm-pr.md +0 -285
  177. package/.claude/commands/github/sync-coordinator.md +0 -294
  178. package/.claude/commands/github/workflow-automation.md +0 -442
  179. package/.claude/commands/hooks/README.md +0 -11
  180. package/.claude/commands/hooks/overview.md +0 -58
  181. package/.claude/commands/hooks/post-edit.md +0 -117
  182. package/.claude/commands/hooks/post-task.md +0 -112
  183. package/.claude/commands/hooks/pre-edit.md +0 -113
  184. package/.claude/commands/hooks/pre-task.md +0 -111
  185. package/.claude/commands/hooks/session-end.md +0 -118
  186. package/.claude/commands/hooks/setup.md +0 -103
  187. package/.claude/commands/simplify.md +0 -101
  188. package/.claude/commands/sparc/analyzer.md +0 -42
  189. package/.claude/commands/sparc/architect.md +0 -43
  190. package/.claude/commands/sparc/ask.md +0 -86
  191. package/.claude/commands/sparc/batch-executor.md +0 -44
  192. package/.claude/commands/sparc/code.md +0 -78
  193. package/.claude/commands/sparc/coder.md +0 -44
  194. package/.claude/commands/sparc/debug.md +0 -72
  195. package/.claude/commands/sparc/debugger.md +0 -44
  196. package/.claude/commands/sparc/designer.md +0 -43
  197. package/.claude/commands/sparc/devops.md +0 -98
  198. package/.claude/commands/sparc/docs-writer.md +0 -69
  199. package/.claude/commands/sparc/documenter.md +0 -44
  200. package/.claude/commands/sparc/innovator.md +0 -44
  201. package/.claude/commands/sparc/integration.md +0 -72
  202. package/.claude/commands/sparc/mcp.md +0 -106
  203. package/.claude/commands/sparc/memory-manager.md +0 -44
  204. package/.claude/commands/sparc/optimizer.md +0 -44
  205. package/.claude/commands/sparc/orchestrator.md +0 -116
  206. package/.claude/commands/sparc/post-deployment-monitoring-mode.md +0 -72
  207. package/.claude/commands/sparc/refinement-optimization-mode.md +0 -72
  208. package/.claude/commands/sparc/researcher.md +0 -44
  209. package/.claude/commands/sparc/reviewer.md +0 -44
  210. package/.claude/commands/sparc/security-review.md +0 -69
  211. package/.claude/commands/sparc/sparc-modes.md +0 -139
  212. package/.claude/commands/sparc/sparc.md +0 -99
  213. package/.claude/commands/sparc/spec-pseudocode.md +0 -69
  214. package/.claude/commands/sparc/spell-manager.md +0 -44
  215. package/.claude/commands/sparc/supabase-admin.md +0 -337
  216. package/.claude/commands/sparc/swarm-coordinator.md +0 -44
  217. package/.claude/commands/sparc/tdd.md +0 -44
  218. package/.claude/commands/sparc/tester.md +0 -44
  219. package/.claude/commands/sparc/tutorial.md +0 -68
  220. package/.claude/commands/sparc.md +0 -151
  221. package/.claude/guidance/shipped/moflo-session-start.md +0 -154
  222. package/.claude/guidance/shipped/moflo-spell-engine-architecture.md +0 -145
  223. package/.claude/skills/browser/SKILL.md +0 -204
  224. package/.claude/skills/github-code-review/SKILL.md +0 -1140
  225. package/.claude/skills/github-multi-repo/SKILL.md +0 -866
  226. package/.claude/skills/github-project-management/SKILL.md +0 -1272
  227. package/.claude/skills/github-release-management/SKILL.md +0 -1074
  228. package/.claude/skills/github-workflow-automation/SKILL.md +0 -1060
  229. package/.claude/skills/hive-mind-advanced/SKILL.md +0 -712
  230. package/.claude/skills/hooks-automation/SKILL.md +0 -1193
  231. package/.claude/skills/pair-programming/SKILL.md +0 -1202
  232. package/.claude/skills/performance-analysis/SKILL.md +0 -563
  233. package/.claude/skills/skill-builder/SKILL.md +0 -910
  234. package/.claude/skills/sparc-methodology/SKILL.md +0 -904
  235. package/.claude/skills/stream-chain/SKILL.md +0 -563
  236. package/.claude/skills/swarm-advanced/SKILL.md +0 -811
  237. package/.claude/skills/swarm-orchestration/SKILL.md +0 -179
  238. package/.claude/skills/verification-quality/SKILL.md +0 -649
  239. package/.claude/skills/worker-benchmarks/skill.md +0 -135
  240. package/.claude/skills/worker-integration/skill.md +0 -154
@@ -1,1060 +0,0 @@
1
- ---
2
- name: github-workflow-automation
3
- version: 1.0.0
4
- category: github
5
- description: Advanced GitHub Actions workflow automation with AI swarm coordination, intelligent CI/CD pipelines, and comprehensive repository management
6
- tags:
7
- - github
8
- - github-actions
9
- - ci-cd
10
- - workflow-automation
11
- - swarm-coordination
12
- - deployment
13
- - security
14
- authors:
15
- - claude-flow
16
- requires:
17
- - gh (GitHub CLI)
18
- - git
19
- - claude-flow@alpha
20
- - node (v16+)
21
- priority: high
22
- progressive_disclosure: true
23
- ---
24
-
25
- # GitHub Workflow Automation Skill
26
-
27
- ## Overview
28
-
29
- This skill provides comprehensive GitHub Actions automation with AI swarm coordination. It integrates intelligent CI/CD pipelines, workflow orchestration, and repository management to create self-organizing, adaptive GitHub workflows.
30
-
31
- ## Quick Start
32
-
33
- <details>
34
- <summary>💡 Basic Usage - Click to expand</summary>
35
-
36
- ### Initialize GitHub Workflow Automation
37
- ```bash
38
- # Start with a simple workflow
39
- npx ruv-swarm actions generate-workflow \
40
- --analyze-codebase \
41
- --detect-languages \
42
- --create-optimal-pipeline
43
- ```
44
-
45
- ### Common Commands
46
- ```bash
47
- # Optimize existing workflow
48
- npx ruv-swarm actions optimize \
49
- --workflow ".github/workflows/ci.yml" \
50
- --suggest-parallelization
51
-
52
- # Analyze failed runs
53
- gh run view <run-id> --json jobs,conclusion | \
54
- npx ruv-swarm actions analyze-failure \
55
- --suggest-fixes
56
- ```
57
-
58
- </details>
59
-
60
- ## Core Capabilities
61
-
62
- ### 🤖 Swarm-Powered GitHub Modes
63
-
64
- <details>
65
- <summary>Available GitHub Integration Modes</summary>
66
-
67
- #### 1. gh-coordinator
68
- **GitHub workflow orchestration and coordination**
69
- - **Coordination Mode**: Hierarchical
70
- - **Max Parallel Operations**: 10
71
- - **Batch Optimized**: Yes
72
- - **Best For**: Complex GitHub workflows, multi-repo coordination
73
-
74
- ```bash
75
- # Usage example
76
- npx claude-flow@alpha github gh-coordinator \
77
- "Coordinate multi-repo release across 5 repositories"
78
- ```
79
-
80
- #### 2. pr-manager
81
- **Pull request management and review coordination**
82
- - **Review Mode**: Automated
83
- - **Multi-reviewer**: Yes
84
- - **Conflict Resolution**: Intelligent
85
-
86
- ```bash
87
- # Create PR with automated review
88
- gh pr create --title "Feature: New capability" \
89
- --body "Automated PR with swarm review" | \
90
- npx ruv-swarm actions pr-validate \
91
- --spawn-agents "linter,tester,security,docs"
92
- ```
93
-
94
- #### 3. issue-tracker
95
- **Issue management and project coordination**
96
- - **Issue Workflow**: Automated
97
- - **Label Management**: Smart
98
- - **Progress Tracking**: Real-time
99
-
100
- ```bash
101
- # Create coordinated issue workflow
102
- npx claude-flow@alpha github issue-tracker \
103
- "Manage sprint issues with automated tracking"
104
- ```
105
-
106
- #### 4. release-manager
107
- **Release coordination and deployment**
108
- - **Release Pipeline**: Automated
109
- - **Versioning**: Semantic
110
- - **Deployment**: Multi-stage
111
-
112
- ```bash
113
- # Automated release management
114
- npx claude-flow@alpha github release-manager \
115
- "Create v2.0.0 release with changelog and deployment"
116
- ```
117
-
118
- #### 5. repo-architect
119
- **Repository structure and organization**
120
- - **Structure Optimization**: Yes
121
- - **Multi-repo Support**: Yes
122
- - **Template Management**: Advanced
123
-
124
- ```bash
125
- # Optimize repository structure
126
- npx claude-flow@alpha github repo-architect \
127
- "Restructure monorepo with optimal organization"
128
- ```
129
-
130
- #### 6. code-reviewer
131
- **Automated code review and quality assurance**
132
- - **Review Quality**: Deep
133
- - **Security Analysis**: Yes
134
- - **Performance Check**: Automated
135
-
136
- ```bash
137
- # Automated code review
138
- gh pr view 123 --json files | \
139
- npx ruv-swarm actions pr-validate \
140
- --deep-review \
141
- --security-scan
142
- ```
143
-
144
- #### 7. ci-orchestrator
145
- **CI/CD pipeline coordination**
146
- - **Pipeline Management**: Advanced
147
- - **Test Coordination**: Parallel
148
- - **Deployment**: Automated
149
-
150
- ```bash
151
- # Orchestrate CI/CD pipeline
152
- npx claude-flow@alpha github ci-orchestrator \
153
- "Setup parallel test execution with smart caching"
154
- ```
155
-
156
- #### 8. security-guardian
157
- **Security and compliance management**
158
- - **Security Scan**: Automated
159
- - **Compliance Check**: Continuous
160
- - **Vulnerability Management**: Proactive
161
-
162
- ```bash
163
- # Security audit
164
- npx ruv-swarm actions security \
165
- --deep-scan \
166
- --compliance-check \
167
- --create-issues
168
- ```
169
-
170
- </details>
171
-
172
- ### 🔧 Workflow Templates
173
-
174
- <details>
175
- <summary>Production-Ready GitHub Actions Templates</summary>
176
-
177
- #### 1. Intelligent CI with Swarms
178
- ```yaml
179
- # .github/workflows/swarm-ci.yml
180
- name: Intelligent CI with Swarms
181
- on: [push, pull_request]
182
-
183
- jobs:
184
- swarm-analysis:
185
- runs-on: ubuntu-latest
186
- steps:
187
- - uses: actions/checkout@v3
188
-
189
- - name: Initialize Swarm
190
- uses: ruvnet/swarm-action@v1
191
- with:
192
- topology: mesh
193
- max-agents: 6
194
-
195
- - name: Analyze Changes
196
- run: |
197
- npx ruv-swarm actions analyze \
198
- --commit ${{ github.sha }} \
199
- --suggest-tests \
200
- --optimize-pipeline
201
- ```
202
-
203
- #### 2. Multi-Language Detection
204
- ```yaml
205
- # .github/workflows/polyglot-swarm.yml
206
- name: Polyglot Project Handler
207
- on: push
208
-
209
- jobs:
210
- detect-and-build:
211
- runs-on: ubuntu-latest
212
- steps:
213
- - uses: actions/checkout@v3
214
-
215
- - name: Detect Languages
216
- id: detect
217
- run: |
218
- npx ruv-swarm actions detect-stack \
219
- --output json > stack.json
220
-
221
- - name: Dynamic Build Matrix
222
- run: |
223
- npx ruv-swarm actions create-matrix \
224
- --from stack.json \
225
- --parallel-builds
226
- ```
227
-
228
- #### 3. Adaptive Security Scanning
229
- ```yaml
230
- # .github/workflows/security-swarm.yml
231
- name: Intelligent Security Scan
232
- on:
233
- schedule:
234
- - cron: '0 0 * * *'
235
- workflow_dispatch:
236
-
237
- jobs:
238
- security-swarm:
239
- runs-on: ubuntu-latest
240
- steps:
241
- - name: Security Analysis Swarm
242
- run: |
243
- SECURITY_ISSUES=$(npx ruv-swarm actions security \
244
- --deep-scan \
245
- --format json)
246
-
247
- echo "$SECURITY_ISSUES" | jq -r '.issues[]? | @base64' | while read -r issue; do
248
- _jq() {
249
- echo ${issue} | base64 --decode | jq -r ${1}
250
- }
251
- gh issue create \
252
- --title "$(_jq '.title')" \
253
- --body "$(_jq '.body')" \
254
- --label "security,critical"
255
- done
256
- ```
257
-
258
- #### 4. Self-Healing Pipeline
259
- ```yaml
260
- # .github/workflows/self-healing.yml
261
- name: Self-Healing Pipeline
262
- on: workflow_run
263
-
264
- jobs:
265
- heal-pipeline:
266
- if: ${{ github.event.workflow_run.conclusion == 'failure' }}
267
- runs-on: ubuntu-latest
268
- steps:
269
- - name: Diagnose and Fix
270
- run: |
271
- npx ruv-swarm actions self-heal \
272
- --run-id ${{ github.event.workflow_run.id }} \
273
- --auto-fix-common \
274
- --create-pr-complex
275
- ```
276
-
277
- #### 5. Progressive Deployment
278
- ```yaml
279
- # .github/workflows/smart-deployment.yml
280
- name: Smart Deployment
281
- on:
282
- push:
283
- branches: [main]
284
-
285
- jobs:
286
- progressive-deploy:
287
- runs-on: ubuntu-latest
288
- steps:
289
- - name: Analyze Risk
290
- id: risk
291
- run: |
292
- npx ruv-swarm actions deploy-risk \
293
- --changes ${{ github.sha }} \
294
- --history 30d
295
-
296
- - name: Choose Strategy
297
- run: |
298
- npx ruv-swarm actions deploy-strategy \
299
- --risk ${{ steps.risk.outputs.level }} \
300
- --auto-execute
301
- ```
302
-
303
- #### 6. Performance Regression Detection
304
- ```yaml
305
- # .github/workflows/performance-guard.yml
306
- name: Performance Guard
307
- on: pull_request
308
-
309
- jobs:
310
- perf-swarm:
311
- runs-on: ubuntu-latest
312
- steps:
313
- - name: Performance Analysis
314
- run: |
315
- npx ruv-swarm actions perf-test \
316
- --baseline main \
317
- --threshold 10% \
318
- --auto-profile-regression
319
- ```
320
-
321
- #### 7. PR Validation Swarm
322
- ```yaml
323
- # .github/workflows/pr-validation.yml
324
- name: PR Validation Swarm
325
- on: pull_request
326
-
327
- jobs:
328
- validate:
329
- runs-on: ubuntu-latest
330
- steps:
331
- - name: Multi-Agent Validation
332
- run: |
333
- PR_DATA=$(gh pr view ${{ github.event.pull_request.number }} --json files,labels)
334
-
335
- RESULTS=$(npx ruv-swarm actions pr-validate \
336
- --spawn-agents "linter,tester,security,docs" \
337
- --parallel \
338
- --pr-data "$PR_DATA")
339
-
340
- gh pr comment ${{ github.event.pull_request.number }} \
341
- --body "$RESULTS"
342
- ```
343
-
344
- #### 8. Intelligent Release
345
- ```yaml
346
- # .github/workflows/intelligent-release.yml
347
- name: Intelligent Release
348
- on:
349
- push:
350
- tags: ['v*']
351
-
352
- jobs:
353
- release:
354
- runs-on: ubuntu-latest
355
- steps:
356
- - name: Release Swarm
357
- run: |
358
- npx ruv-swarm actions release \
359
- --analyze-changes \
360
- --generate-notes \
361
- --create-artifacts \
362
- --publish-smart
363
- ```
364
-
365
- </details>
366
-
367
- ### 📊 Monitoring & Analytics
368
-
369
- <details>
370
- <summary>Workflow Analysis & Optimization</summary>
371
-
372
- #### Workflow Analytics
373
- ```bash
374
- # Analyze workflow performance
375
- npx ruv-swarm actions analytics \
376
- --workflow "ci.yml" \
377
- --period 30d \
378
- --identify-bottlenecks \
379
- --suggest-improvements
380
- ```
381
-
382
- #### Cost Optimization
383
- ```bash
384
- # Optimize GitHub Actions costs
385
- npx ruv-swarm actions cost-optimize \
386
- --analyze-usage \
387
- --suggest-caching \
388
- --recommend-self-hosted
389
- ```
390
-
391
- #### Failure Pattern Analysis
392
- ```bash
393
- # Identify failure patterns
394
- npx ruv-swarm actions failure-patterns \
395
- --period 90d \
396
- --classify-failures \
397
- --suggest-preventions
398
- ```
399
-
400
- #### Resource Management
401
- ```bash
402
- # Optimize resource usage
403
- npx ruv-swarm actions resources \
404
- --analyze-usage \
405
- --suggest-runners \
406
- --cost-optimize
407
- ```
408
-
409
- </details>
410
-
411
- ## Advanced Features
412
-
413
- ### 🧪 Dynamic Test Strategies
414
-
415
- <details>
416
- <summary>Intelligent Test Selection & Execution</summary>
417
-
418
- #### Smart Test Selection
419
- ```yaml
420
- # Automatically select relevant tests
421
- - name: Swarm Test Selection
422
- run: |
423
- npx ruv-swarm actions smart-test \
424
- --changed-files ${{ steps.files.outputs.all }} \
425
- --impact-analysis \
426
- --parallel-safe
427
- ```
428
-
429
- #### Dynamic Test Matrix
430
- ```yaml
431
- # Generate test matrix from code analysis
432
- jobs:
433
- generate-matrix:
434
- outputs:
435
- matrix: ${{ steps.set-matrix.outputs.matrix }}
436
- steps:
437
- - id: set-matrix
438
- run: |
439
- MATRIX=$(npx ruv-swarm actions test-matrix \
440
- --detect-frameworks \
441
- --optimize-coverage)
442
- echo "matrix=${MATRIX}" >> $GITHUB_OUTPUT
443
-
444
- test:
445
- needs: generate-matrix
446
- strategy:
447
- matrix: ${{fromJson(needs.generate-matrix.outputs.matrix)}}
448
- ```
449
-
450
- #### Intelligent Parallelization
451
- ```bash
452
- # Determine optimal parallelization
453
- npx ruv-swarm actions parallel-strategy \
454
- --analyze-dependencies \
455
- --time-estimates \
456
- --cost-aware
457
- ```
458
-
459
- </details>
460
-
461
- ### 🔮 Predictive Analysis
462
-
463
- <details>
464
- <summary>AI-Powered Workflow Predictions</summary>
465
-
466
- #### Predictive Failures
467
- ```bash
468
- # Predict potential failures
469
- npx ruv-swarm actions predict \
470
- --analyze-history \
471
- --identify-risks \
472
- --suggest-preventive
473
- ```
474
-
475
- #### Workflow Recommendations
476
- ```bash
477
- # Get workflow recommendations
478
- npx ruv-swarm actions recommend \
479
- --analyze-repo \
480
- --suggest-workflows \
481
- --industry-best-practices
482
- ```
483
-
484
- #### Automated Optimization
485
- ```bash
486
- # Continuously optimize workflows
487
- npx ruv-swarm actions auto-optimize \
488
- --monitor-performance \
489
- --apply-improvements \
490
- --track-savings
491
- ```
492
-
493
- </details>
494
-
495
- ### 🎯 Custom Actions Development
496
-
497
- <details>
498
- <summary>Build Your Own Swarm Actions</summary>
499
-
500
- #### Custom Swarm Action Template
501
- ```javascript
502
- // action.yml
503
- name: 'Swarm Custom Action'
504
- description: 'Custom swarm-powered action'
505
- inputs:
506
- task:
507
- description: 'Task for swarm'
508
- required: true
509
- runs:
510
- using: 'node16'
511
- main: 'dist/index.js'
512
-
513
- // index.js
514
- const { SwarmAction } = require('ruv-swarm');
515
-
516
- async function run() {
517
- const swarm = new SwarmAction({
518
- topology: 'mesh',
519
- agents: ['analyzer', 'optimizer']
520
- });
521
-
522
- await swarm.execute(core.getInput('task'));
523
- }
524
-
525
- run().catch(error => core.setFailed(error.message));
526
- ```
527
-
528
- </details>
529
-
530
- ## Integration with Claude-Flow
531
-
532
- ### 🔄 Swarm Coordination Patterns
533
-
534
- <details>
535
- <summary>MCP-Based GitHub Workflow Coordination</summary>
536
-
537
- #### Initialize GitHub Swarm
538
- ```javascript
539
- // Step 1: Initialize swarm coordination
540
- mcp__moflo__swarm_init {
541
- topology: "hierarchical",
542
- maxAgents: 8
543
- }
544
-
545
- // Step 2: Spawn specialized agents
546
- mcp__moflo__agent_spawn { type: "coordinator", name: "github-workflow-automation" }
547
- mcp__moflo__agent_spawn { type: "reviewer", name: "Code Reviewer" }
548
- mcp__moflo__agent_spawn { type: "tester", name: "QA Agent" }
549
- mcp__moflo__agent_spawn { type: "analyst", name: "Security Analyst" }
550
-
551
- // Step 3: Orchestrate GitHub workflow
552
- ```
553
-
554
- #### GitHub Hooks Integration
555
- ```bash
556
- # Pre-task: Setup GitHub context
557
- npx claude-flow@alpha hooks pre-task \
558
- --description "PR review workflow" \
559
- --context "pr-123"
560
-
561
- # During task: Track progress
562
- npx claude-flow@alpha hooks notify \
563
- --message "Completed security scan" \
564
- --type "github-action"
565
-
566
- # Post-task: Export results
567
- npx claude-flow@alpha hooks post-task \
568
- --task-id "pr-review-123" \
569
- --export-github-summary
570
- ```
571
-
572
- </details>
573
-
574
- ### 📦 Batch Operations
575
-
576
- <details>
577
- <summary>Concurrent GitHub Operations</summary>
578
-
579
- #### Parallel GitHub CLI Commands
580
- ```javascript
581
- // Single message with all GitHub operations
582
- [Concurrent Execution]:
583
- Bash("gh issue create --title 'Feature A' --body 'Description A' --label 'enhancement'")
584
- Bash("gh issue create --title 'Feature B' --body 'Description B' --label 'enhancement'")
585
- Bash("gh pr create --title 'PR 1' --head 'feature-a' --base 'main'")
586
- Bash("gh pr create --title 'PR 2' --head 'feature-b' --base 'main'")
587
- Bash("gh pr checks 123 --watch")
588
- TodoWrite { todos: [
589
- {content: "Review security scan results", status: "pending"},
590
- {content: "Merge approved PRs", status: "pending"},
591
- {content: "Update changelog", status: "pending"}
592
- ]}
593
- ```
594
-
595
- </details>
596
-
597
- ## Best Practices
598
-
599
- ### 🏗️ Workflow Organization
600
-
601
- <details>
602
- <summary>Structure Your GitHub Workflows</summary>
603
-
604
- #### 1. Use Reusable Workflows
605
- ```yaml
606
- # .github/workflows/reusable-swarm.yml
607
- name: Reusable Swarm Workflow
608
- on:
609
- workflow_call:
610
- inputs:
611
- topology:
612
- required: true
613
- type: string
614
-
615
- jobs:
616
- swarm-task:
617
- runs-on: ubuntu-latest
618
- steps:
619
- - name: Initialize Swarm
620
- run: |
621
- npx ruv-swarm init --topology ${{ inputs.topology }}
622
- ```
623
-
624
- #### 2. Implement Proper Caching
625
- ```yaml
626
- - name: Cache Swarm Dependencies
627
- uses: actions/cache@v3
628
- with:
629
- path: ~/.npm
630
- key: ${{ runner.os }}-swarm-${{ hashFiles('**/package-lock.json') }}
631
- ```
632
-
633
- #### 3. Set Appropriate Timeouts
634
- ```yaml
635
- jobs:
636
- swarm-task:
637
- timeout-minutes: 30
638
- steps:
639
- - name: Swarm Operation
640
- timeout-minutes: 10
641
- ```
642
-
643
- #### 4. Use Workflow Dependencies
644
- ```yaml
645
- jobs:
646
- setup:
647
- runs-on: ubuntu-latest
648
-
649
- test:
650
- needs: setup
651
- runs-on: ubuntu-latest
652
-
653
- deploy:
654
- needs: [setup, test]
655
- runs-on: ubuntu-latest
656
- ```
657
-
658
- </details>
659
-
660
- ### 🔒 Security Best Practices
661
-
662
- <details>
663
- <summary>Secure Your GitHub Workflows</summary>
664
-
665
- #### 1. Store Configurations Securely
666
- ```yaml
667
- - name: Setup Swarm
668
- env:
669
- SWARM_CONFIG: ${{ secrets.SWARM_CONFIG }}
670
- API_KEY: ${{ secrets.API_KEY }}
671
- run: |
672
- npx ruv-swarm init --config "$SWARM_CONFIG"
673
- ```
674
-
675
- #### 2. Use OIDC Authentication
676
- ```yaml
677
- permissions:
678
- id-token: write
679
- contents: read
680
-
681
- - name: Configure AWS Credentials
682
- uses: aws-actions/configure-aws-credentials@v2
683
- with:
684
- role-to-assume: arn:aws:iam::123456789012:role/GitHubAction
685
- aws-region: us-east-1
686
- ```
687
-
688
- #### 3. Implement Least-Privilege
689
- ```yaml
690
- permissions:
691
- contents: read
692
- pull-requests: write
693
- issues: write
694
- ```
695
-
696
- #### 4. Audit Swarm Operations
697
- ```yaml
698
- - name: Audit Swarm Actions
699
- run: |
700
- npx ruv-swarm actions audit \
701
- --export-logs \
702
- --compliance-report
703
- ```
704
-
705
- </details>
706
-
707
- ### ⚡ Performance Optimization
708
-
709
- <details>
710
- <summary>Maximize Workflow Performance</summary>
711
-
712
- #### 1. Cache Swarm Dependencies
713
- ```yaml
714
- - uses: actions/cache@v3
715
- with:
716
- path: |
717
- ~/.npm
718
- node_modules
719
- key: ${{ runner.os }}-swarm-${{ hashFiles('**/package-lock.json') }}
720
- ```
721
-
722
- #### 2. Use Appropriate Runner Sizes
723
- ```yaml
724
- jobs:
725
- heavy-task:
726
- runs-on: ubuntu-latest-4-cores
727
- steps:
728
- - name: Intensive Swarm Operation
729
- ```
730
-
731
- #### 3. Implement Early Termination
732
- ```yaml
733
- - name: Quick Fail Check
734
- run: |
735
- if ! npx ruv-swarm actions pre-check; then
736
- echo "Pre-check failed, terminating early"
737
- exit 1
738
- fi
739
- ```
740
-
741
- #### 4. Optimize Parallel Execution
742
- ```yaml
743
- strategy:
744
- matrix:
745
- include:
746
- - runner: ubuntu-latest
747
- task: test
748
- - runner: ubuntu-latest
749
- task: lint
750
- - runner: ubuntu-latest
751
- task: security
752
- max-parallel: 3
753
- ```
754
-
755
- </details>
756
-
757
- ## Debugging & Troubleshooting
758
-
759
- ### 🐛 Debug Tools
760
-
761
- <details>
762
- <summary>Debug GitHub Workflow Issues</summary>
763
-
764
- #### Debug Mode
765
- ```yaml
766
- - name: Debug Swarm
767
- run: |
768
- npx ruv-swarm actions debug \
769
- --verbose \
770
- --trace-agents \
771
- --export-logs
772
- env:
773
- ACTIONS_STEP_DEBUG: true
774
- ```
775
-
776
- #### Performance Profiling
777
- ```bash
778
- # Profile workflow performance
779
- npx ruv-swarm actions profile \
780
- --workflow "ci.yml" \
781
- --identify-slow-steps \
782
- --suggest-optimizations
783
- ```
784
-
785
- #### Failure Analysis
786
- ```bash
787
- # Analyze failed runs
788
- gh run view <run-id> --json jobs,conclusion | \
789
- npx ruv-swarm actions analyze-failure \
790
- --suggest-fixes \
791
- --auto-retry-flaky
792
- ```
793
-
794
- #### Log Analysis
795
- ```bash
796
- # Download and analyze logs
797
- gh run download <run-id>
798
- npx ruv-swarm actions analyze-logs \
799
- --directory ./logs \
800
- --identify-errors
801
- ```
802
-
803
- </details>
804
-
805
- ## Real-World Examples
806
-
807
- ### 🚀 Complete Workflows
808
-
809
- <details>
810
- <summary>Production-Ready Integration Examples</summary>
811
-
812
- #### Example 1: Full-Stack Application CI/CD
813
- ```yaml
814
- name: Full-Stack CI/CD with Swarms
815
- on:
816
- push:
817
- branches: [main, develop]
818
- pull_request:
819
-
820
- jobs:
821
- initialize:
822
- runs-on: ubuntu-latest
823
- outputs:
824
- swarm-id: ${{ steps.init.outputs.swarm-id }}
825
- steps:
826
- - id: init
827
- run: |
828
- SWARM_ID=$(npx ruv-swarm init --topology mesh --output json | jq -r '.id')
829
- echo "swarm-id=${SWARM_ID}" >> $GITHUB_OUTPUT
830
-
831
- backend:
832
- needs: initialize
833
- runs-on: ubuntu-latest
834
- steps:
835
- - uses: actions/checkout@v3
836
- - name: Backend Tests
837
- run: |
838
- npx ruv-swarm agents spawn --type tester \
839
- --task "Run backend test suite" \
840
- --swarm-id ${{ needs.initialize.outputs.swarm-id }}
841
-
842
- frontend:
843
- needs: initialize
844
- runs-on: ubuntu-latest
845
- steps:
846
- - uses: actions/checkout@v3
847
- - name: Frontend Tests
848
- run: |
849
- npx ruv-swarm agents spawn --type tester \
850
- --task "Run frontend test suite" \
851
- --swarm-id ${{ needs.initialize.outputs.swarm-id }}
852
-
853
- security:
854
- needs: initialize
855
- runs-on: ubuntu-latest
856
- steps:
857
- - uses: actions/checkout@v3
858
- - name: Security Scan
859
- run: |
860
- npx ruv-swarm agents spawn --type security \
861
- --task "Security audit" \
862
- --swarm-id ${{ needs.initialize.outputs.swarm-id }}
863
-
864
- deploy:
865
- needs: [backend, frontend, security]
866
- if: github.ref == 'refs/heads/main'
867
- runs-on: ubuntu-latest
868
- steps:
869
- - name: Deploy
870
- run: |
871
- npx ruv-swarm actions deploy \
872
- --strategy progressive \
873
- --swarm-id ${{ needs.initialize.outputs.swarm-id }}
874
- ```
875
-
876
- #### Example 2: Monorepo Management
877
- ```yaml
878
- name: Monorepo Coordination
879
- on: push
880
-
881
- jobs:
882
- detect-changes:
883
- runs-on: ubuntu-latest
884
- outputs:
885
- packages: ${{ steps.detect.outputs.packages }}
886
- steps:
887
- - uses: actions/checkout@v3
888
- with:
889
- fetch-depth: 0
890
-
891
- - id: detect
892
- run: |
893
- PACKAGES=$(npx ruv-swarm actions detect-changes \
894
- --monorepo \
895
- --output json)
896
- echo "packages=${PACKAGES}" >> $GITHUB_OUTPUT
897
-
898
- build-packages:
899
- needs: detect-changes
900
- runs-on: ubuntu-latest
901
- strategy:
902
- matrix:
903
- package: ${{ fromJson(needs.detect-changes.outputs.packages) }}
904
- steps:
905
- - name: Build Package
906
- run: |
907
- npx ruv-swarm actions build \
908
- --package ${{ matrix.package }} \
909
- --parallel-deps
910
- ```
911
-
912
- #### Example 3: Multi-Repo Synchronization
913
- ```bash
914
- # Synchronize multiple repositories
915
- npx claude-flow@alpha github sync-coordinator \
916
- "Synchronize version updates across:
917
- - github.com/org/repo-a
918
- - github.com/org/repo-b
919
- - github.com/org/repo-c
920
-
921
- Update dependencies, align versions, create PRs"
922
- ```
923
-
924
- </details>
925
-
926
- ## Command Reference
927
-
928
- ### 📚 Quick Command Guide
929
-
930
- <details>
931
- <summary>All Available Commands</summary>
932
-
933
- #### Workflow Generation
934
- ```bash
935
- npx ruv-swarm actions generate-workflow [options]
936
- --analyze-codebase Analyze repository structure
937
- --detect-languages Detect programming languages
938
- --create-optimal-pipeline Generate optimized workflow
939
- ```
940
-
941
- #### Optimization
942
- ```bash
943
- npx ruv-swarm actions optimize [options]
944
- --workflow <path> Path to workflow file
945
- --suggest-parallelization Suggest parallel execution
946
- --reduce-redundancy Remove redundant steps
947
- --estimate-savings Estimate time/cost savings
948
- ```
949
-
950
- #### Analysis
951
- ```bash
952
- npx ruv-swarm actions analyze [options]
953
- --commit <sha> Analyze specific commit
954
- --suggest-tests Suggest test improvements
955
- --optimize-pipeline Optimize pipeline structure
956
- ```
957
-
958
- #### Testing
959
- ```bash
960
- npx ruv-swarm actions smart-test [options]
961
- --changed-files <files> Files that changed
962
- --impact-analysis Analyze test impact
963
- --parallel-safe Only parallel-safe tests
964
- ```
965
-
966
- #### Security
967
- ```bash
968
- npx ruv-swarm actions security [options]
969
- --deep-scan Deep security analysis
970
- --format <format> Output format (json/text)
971
- --create-issues Auto-create GitHub issues
972
- ```
973
-
974
- #### Deployment
975
- ```bash
976
- npx ruv-swarm actions deploy [options]
977
- --strategy <type> Deployment strategy
978
- --risk <level> Risk assessment level
979
- --auto-execute Execute automatically
980
- ```
981
-
982
- #### Monitoring
983
- ```bash
984
- npx ruv-swarm actions analytics [options]
985
- --workflow <name> Workflow to analyze
986
- --period <duration> Analysis period
987
- --identify-bottlenecks Find bottlenecks
988
- --suggest-improvements Improvement suggestions
989
- ```
990
-
991
- </details>
992
-
993
- ## Integration Checklist
994
-
995
- ### ✅ Setup Verification
996
-
997
- <details>
998
- <summary>Verify Your Setup</summary>
999
-
1000
- - [ ] GitHub CLI (`gh`) installed and authenticated
1001
- - [ ] Git configured with user credentials
1002
- - [ ] Node.js v16+ installed
1003
- - [ ] `claude-flow@alpha` package available
1004
- - [ ] Repository has `.github/workflows` directory
1005
- - [ ] GitHub Actions enabled on repository
1006
- - [ ] Necessary secrets configured
1007
- - [ ] Runner permissions verified
1008
-
1009
- #### Quick Setup Script
1010
- ```bash
1011
- #!/bin/bash
1012
- # setup-github-automation.sh
1013
-
1014
- # Install dependencies
1015
- npm install -g claude-flow@alpha
1016
-
1017
- # Verify GitHub CLI
1018
- gh auth status || gh auth login
1019
-
1020
- # Create workflow directory
1021
- mkdir -p .github/workflows
1022
-
1023
- # Generate initial workflow
1024
- npx ruv-swarm actions generate-workflow \
1025
- --analyze-codebase \
1026
- --create-optimal-pipeline > .github/workflows/ci.yml
1027
-
1028
- echo "✅ GitHub workflow automation setup complete"
1029
- ```
1030
-
1031
- </details>
1032
-
1033
- ## Related Skills
1034
-
1035
- - `github-pr-enhancement` - Advanced PR management
1036
- - `release-coordination` - Release automation
1037
- - `swarm-coordination` - Multi-agent orchestration
1038
- - `ci-cd-optimization` - Pipeline optimization
1039
-
1040
- ## Support & Documentation
1041
-
1042
- - **GitHub CLI Docs**: https://cli.github.com/manual/
1043
- - **GitHub Actions**: https://docs.github.com/en/actions
1044
- - **Claude-Flow**: https://github.com/eric-cielo/moflo
1045
- - **Ruv-Swarm**: https://github.com/ruvnet/ruv-swarm
1046
-
1047
- ## Version History
1048
-
1049
- - **v1.0.0** (2025-01-19): Initial skill consolidation
1050
- - Merged workflow-automation.md (441 lines)
1051
- - Merged github-modes.md (146 lines)
1052
- - Added progressive disclosure
1053
- - Enhanced with swarm coordination patterns
1054
- - Added comprehensive examples and best practices
1055
-
1056
- ---
1057
-
1058
- **Skill Status**: ✅ Production Ready
1059
- **Last Updated**: 2025-01-19
1060
- **Maintainer**: claude-flow team