monomind 1.16.11 → 1.17.1

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 (148) hide show
  1. package/.claude/agents/engineering/engineering-security-engineer.md +1 -1
  2. package/.claude/agents/github/code-review-swarm.md +19 -19
  3. package/.claude/agents/github/github-modes.md +4 -4
  4. package/.claude/agents/github/multi-repo-swarm.md +24 -24
  5. package/.claude/agents/github/project-board-sync.md +28 -28
  6. package/.claude/agents/github/swarm-issue.md +26 -26
  7. package/.claude/agents/github/swarm-pr.md +18 -18
  8. package/.claude/agents/github/workflow-automation.md +27 -27
  9. package/.claude/agents/reengineer-squad/git-manager.md +2 -2
  10. package/.claude/commands/mastermind/_repeat.md +4 -0
  11. package/.claude/commands/mastermind/master.md +61 -4
  12. package/.claude/commands/mastermind/references/antigravity-tools.md +60 -0
  13. package/.claude/commands/mastermind/references/claude-code-tools.md +50 -0
  14. package/.claude/commands/mastermind/references/codex-tools.md +64 -0
  15. package/.claude/commands/mastermind/references/copilot-tools.md +49 -0
  16. package/.claude/commands/mastermind/references/gemini-tools.md +63 -0
  17. package/.claude/commands/mastermind/references/pi-tools.md +28 -0
  18. package/.claude/helpers/mastermind-activate.cjs +53 -0
  19. package/.claude/scheduled_tasks.lock +1 -1
  20. package/.claude/settings.json +4 -0
  21. package/.claude/skills/mastermind/_repeat.md +2 -0
  22. package/.claude/skills/mastermind/runorg.md +14 -0
  23. package/.claude/skills/mastermind/techport.md +5 -5
  24. package/README.md +1 -1
  25. package/package.json +6 -5
  26. package/packages/@monomind/cli/.claude/agents/engineering/engineering-security-engineer.md +1 -1
  27. package/packages/@monomind/cli/.claude/agents/github/code-review-swarm.md +19 -19
  28. package/packages/@monomind/cli/.claude/agents/github/github-modes.md +4 -4
  29. package/packages/@monomind/cli/.claude/agents/github/multi-repo-swarm.md +24 -24
  30. package/packages/@monomind/cli/.claude/agents/github/project-board-sync.md +28 -28
  31. package/packages/@monomind/cli/.claude/agents/github/swarm-issue.md +26 -26
  32. package/packages/@monomind/cli/.claude/agents/github/swarm-pr.md +18 -18
  33. package/packages/@monomind/cli/.claude/agents/github/workflow-automation.md +27 -27
  34. package/packages/@monomind/cli/.claude/agents/reengineer-squad/git-manager.md +2 -2
  35. package/packages/@monomind/cli/.claude/commands/mastermind/_repeat.md +4 -0
  36. package/packages/@monomind/cli/.claude/commands/mastermind/master.md +61 -4
  37. package/packages/@monomind/cli/.claude/commands/mastermind/references/antigravity-tools.md +60 -0
  38. package/packages/@monomind/cli/.claude/commands/mastermind/references/claude-code-tools.md +50 -0
  39. package/packages/@monomind/cli/.claude/commands/mastermind/references/codex-tools.md +64 -0
  40. package/packages/@monomind/cli/.claude/commands/mastermind/references/copilot-tools.md +49 -0
  41. package/packages/@monomind/cli/.claude/commands/mastermind/references/gemini-tools.md +63 -0
  42. package/packages/@monomind/cli/.claude/commands/mastermind/references/pi-tools.md +28 -0
  43. package/packages/@monomind/cli/.claude/helpers/mastermind-activate.cjs +53 -0
  44. package/packages/@monomind/cli/.claude/skills/mastermind/_repeat.md +2 -0
  45. package/packages/@monomind/cli/.claude/skills/mastermind/runorg.md +14 -0
  46. package/packages/@monomind/cli/.claude/skills/mastermind/techport.md +5 -5
  47. package/packages/@monomind/cli/README.md +1 -1
  48. package/packages/@monomind/cli/dist/src/__tests__/browse-analyzer.test.js +42 -59
  49. package/packages/@monomind/cli/dist/src/browser/dashboard/server.js +18 -0
  50. package/packages/@monomind/cli/dist/src/commands/agent-lifecycle.d.ts +17 -0
  51. package/packages/@monomind/cli/dist/src/commands/agent-lifecycle.js +320 -0
  52. package/packages/@monomind/cli/dist/src/commands/agent-ops.d.ts +9 -0
  53. package/packages/@monomind/cli/dist/src/commands/agent-ops.js +329 -0
  54. package/packages/@monomind/cli/dist/src/commands/agent.js +5 -907
  55. package/packages/@monomind/cli/dist/src/commands/analyze-ast.d.ts +26 -0
  56. package/packages/@monomind/cli/dist/src/commands/analyze-ast.js +284 -0
  57. package/packages/@monomind/cli/dist/src/commands/analyze-boundaries.d.ts +14 -0
  58. package/packages/@monomind/cli/dist/src/commands/analyze-boundaries.js +295 -0
  59. package/packages/@monomind/cli/dist/src/commands/analyze-diff.d.ts +8 -0
  60. package/packages/@monomind/cli/dist/src/commands/analyze-diff.js +395 -0
  61. package/packages/@monomind/cli/dist/src/commands/analyze-graph.d.ts +14 -0
  62. package/packages/@monomind/cli/dist/src/commands/analyze-graph.js +304 -0
  63. package/packages/@monomind/cli/dist/src/commands/analyze-imports.d.ts +11 -0
  64. package/packages/@monomind/cli/dist/src/commands/analyze-imports.js +287 -0
  65. package/packages/@monomind/cli/dist/src/commands/analyze-symbols.d.ts +14 -0
  66. package/packages/@monomind/cli/dist/src/commands/analyze-symbols.js +302 -0
  67. package/packages/@monomind/cli/dist/src/commands/analyze.d.ts +38 -0
  68. package/packages/@monomind/cli/dist/src/commands/analyze.js +12 -1827
  69. package/packages/@monomind/cli/dist/src/commands/doctor-env-checks.d.ts +26 -0
  70. package/packages/@monomind/cli/dist/src/commands/doctor-env-checks.js +189 -0
  71. package/packages/@monomind/cli/dist/src/commands/doctor-project-checks.d.ts +19 -0
  72. package/packages/@monomind/cli/dist/src/commands/doctor-project-checks.js +388 -0
  73. package/packages/@monomind/cli/dist/src/commands/doctor.js +51 -942
  74. package/packages/@monomind/cli/dist/src/commands/hive-mind-comms.d.ts +11 -0
  75. package/packages/@monomind/cli/dist/src/commands/hive-mind-comms.js +242 -0
  76. package/packages/@monomind/cli/dist/src/commands/hive-mind-helpers.d.ts +35 -0
  77. package/packages/@monomind/cli/dist/src/commands/hive-mind-helpers.js +203 -0
  78. package/packages/@monomind/cli/dist/src/commands/hive-mind-ops.d.ts +8 -0
  79. package/packages/@monomind/cli/dist/src/commands/hive-mind-ops.js +233 -0
  80. package/packages/@monomind/cli/dist/src/commands/hive-mind-spawn.d.ts +12 -0
  81. package/packages/@monomind/cli/dist/src/commands/hive-mind-spawn.js +274 -0
  82. package/packages/@monomind/cli/dist/src/commands/hive-mind.js +10 -1129
  83. package/packages/@monomind/cli/dist/src/commands/hooks-coverage-commands.d.ts +4 -4
  84. package/packages/@monomind/cli/dist/src/commands/hooks-coverage-commands.js +19 -819
  85. package/packages/@monomind/cli/dist/src/commands/hooks-coverage-gaps.d.ts +7 -0
  86. package/packages/@monomind/cli/dist/src/commands/hooks-coverage-gaps.js +334 -0
  87. package/packages/@monomind/cli/dist/src/commands/hooks-coverage-routing.d.ts +7 -0
  88. package/packages/@monomind/cli/dist/src/commands/hooks-coverage-routing.js +399 -0
  89. package/packages/@monomind/cli/dist/src/commands/index.js +0 -2
  90. package/packages/@monomind/cli/dist/src/commands/init-subcommands.d.ts +8 -0
  91. package/packages/@monomind/cli/dist/src/commands/init-subcommands.js +156 -0
  92. package/packages/@monomind/cli/dist/src/commands/init-upgrade.d.ts +6 -0
  93. package/packages/@monomind/cli/dist/src/commands/init-upgrade.js +203 -0
  94. package/packages/@monomind/cli/dist/src/commands/init-wizard.d.ts +6 -0
  95. package/packages/@monomind/cli/dist/src/commands/init-wizard.js +246 -0
  96. package/packages/@monomind/cli/dist/src/commands/init.js +6 -623
  97. package/packages/@monomind/cli/dist/src/commands/memory-admin.d.ts +10 -0
  98. package/packages/@monomind/cli/dist/src/commands/memory-admin.js +433 -0
  99. package/packages/@monomind/cli/dist/src/commands/memory-crud.d.ts +9 -0
  100. package/packages/@monomind/cli/dist/src/commands/memory-crud.js +342 -0
  101. package/packages/@monomind/cli/dist/src/commands/memory-list.d.ts +10 -0
  102. package/packages/@monomind/cli/dist/src/commands/memory-list.js +321 -0
  103. package/packages/@monomind/cli/dist/src/commands/memory-transfer.d.ts +9 -0
  104. package/packages/@monomind/cli/dist/src/commands/memory-transfer.js +372 -0
  105. package/packages/@monomind/cli/dist/src/commands/memory.d.ts +6 -0
  106. package/packages/@monomind/cli/dist/src/commands/memory.js +10 -1441
  107. package/packages/@monomind/cli/dist/src/commands/neural-core.d.ts +8 -0
  108. package/packages/@monomind/cli/dist/src/commands/neural-core.js +274 -0
  109. package/packages/@monomind/cli/dist/src/commands/neural-optimize.d.ts +7 -0
  110. package/packages/@monomind/cli/dist/src/commands/neural-optimize.js +332 -0
  111. package/packages/@monomind/cli/dist/src/commands/neural-registry.d.ts +7 -0
  112. package/packages/@monomind/cli/dist/src/commands/neural-registry.js +290 -0
  113. package/packages/@monomind/cli/dist/src/commands/neural.js +3 -974
  114. package/packages/@monomind/cli/dist/src/commands/platforms.js +327 -7
  115. package/packages/@monomind/cli/dist/src/commands/security-cve.d.ts +6 -0
  116. package/packages/@monomind/cli/dist/src/commands/security-cve.js +310 -0
  117. package/packages/@monomind/cli/dist/src/commands/security-misc.d.ts +9 -0
  118. package/packages/@monomind/cli/dist/src/commands/security-misc.js +293 -0
  119. package/packages/@monomind/cli/dist/src/commands/security-scan.d.ts +18 -0
  120. package/packages/@monomind/cli/dist/src/commands/security-scan.js +328 -0
  121. package/packages/@monomind/cli/dist/src/commands/security.js +3 -958
  122. package/packages/@monomind/cli/dist/src/commands/session.js +1 -1
  123. package/packages/@monomind/cli/dist/src/commands/swarm.js +23 -17
  124. package/packages/@monomind/cli/dist/src/init/executor.js +0 -24
  125. package/packages/@monomind/cli/dist/src/init/statusline-generator.js +0 -45
  126. package/packages/@monomind/cli/dist/src/init/types.d.ts +0 -2
  127. package/packages/@monomind/cli/dist/src/init/types.js +0 -2
  128. package/packages/@monomind/cli/dist/src/mcp-tools/swarm-tools.js +77 -0
  129. package/packages/@monomind/cli/dist/src/parser.js +11 -6
  130. package/packages/@monomind/cli/dist/src/routing/llm-caller.js +1 -2
  131. package/packages/@monomind/cli/dist/src/ui/dashboard.html +82 -75
  132. package/packages/@monomind/cli/dist/src/ui/server.mjs +41 -4
  133. package/packages/@monomind/cli/package.json +3 -4
  134. package/packages/@monomind/cli/scripts/understand-analyze.mjs +1 -1
  135. package/packages/@monomind/guidance/README.md +0 -1
  136. package/packages/@monomind/guidance/package.json +2 -14
  137. package/scripts/verify-appliance.sh +16 -20
  138. package/.claude-plugin/README.md +0 -704
  139. package/.claude-plugin/docs/INSTALLATION.md +0 -258
  140. package/.claude-plugin/docs/PLUGIN_SUMMARY.md +0 -358
  141. package/.claude-plugin/docs/QUICKSTART.md +0 -357
  142. package/.claude-plugin/docs/STRUCTURE.md +0 -122
  143. package/.claude-plugin/hooks/hooks.json +0 -74
  144. package/.claude-plugin/marketplace.json +0 -98
  145. package/.claude-plugin/plugin.json +0 -70
  146. package/.claude-plugin/scripts/install.sh +0 -234
  147. package/.claude-plugin/scripts/uninstall.sh +0 -36
  148. package/.claude-plugin/scripts/verify.sh +0 -102
@@ -1,704 +0,0 @@
1
- # 🚀 Monomind Plugin - Complete Enterprise AI Agent Orchestration
2
-
3
- [![Version](https://img.shields.io/badge/version-2.5.0-blue.svg)](https://github.com/monoes/monomind)
4
- [![License](https://img.shields.io/badge/license-MIT-green.svg)](LICENSE)
5
- [![Claude Code](https://img.shields.io/badge/Claude%20Code-%3E%3D2.0.0-purple.svg)](https://claude.com/code)
6
-
7
- > **Enterprise-grade AI agent orchestration plugin with 150+ commands, 74+ specialized agents, SPARC methodology, swarm coordination, GitHub integration, persistent memory, and a knowledge graph**
8
-
9
- ---
10
-
11
- ## 📋 Table of Contents
12
-
13
- - [Overview](#overview)
14
- - [Features](#features)
15
- - [Quick Start](#quick-start)
16
- - [Installation](#installation)
17
- - [Components](#components)
18
- - [Usage](#usage)
19
- - [MCP Integration](#mcp-integration)
20
- - [Examples](#examples)
21
- - [Documentation](#documentation)
22
- - [Support](#support)
23
-
24
- ---
25
-
26
- ## 🌟 Overview
27
-
28
- Monomind is the most comprehensive Claude Code plugin for enterprise AI agent orchestration. It provides a complete ecosystem for:
29
-
30
- - **Multi-Agent Coordination**: 74+ specialized agents with swarm intelligence
31
- - **SPARC Methodology**: Systematic development with 18 specialized modes
32
- - **GitHub Automation**: 14+ tools for complete repository workflow automation
33
- - **Neural Training**: 27+ models with WASM acceleration
34
- - **150+ Commands**: Complete slash command library for all workflows
35
- - **MCP Integration**: 110+ tools across 3 MCP servers
36
-
37
- ---
38
-
39
- ## ✨ Features
40
-
41
- ### 🐝 **Swarm Coordination**
42
- - **4 Topologies**: Hierarchical, Mesh, Ring, Star
43
- - **Auto-Spawning**: Intelligent agent creation based on task complexity
44
- - **Auto-Optimization**: Dynamic topology adjustment for performance
45
- - **100 Max Agents**: Scale to handle enterprise workloads
46
- - **Cross-Session Memory**: Persistent context and learnings
47
-
48
- ### 🎯 **SPARC Methodology**
49
- - **Specification**: Requirements analysis and planning
50
- - **Pseudocode**: Algorithm design and logic flow
51
- - **Architecture**: System design and component structure
52
- - **Refinement**: TDD and iterative improvement
53
- - **Code**: Implementation and optimization
54
- - **18 Specialized Modes**: Complete development lifecycle coverage
55
-
56
- ### 🐙 **GitHub Integration**
57
- - **PR Management**: Automated pull request workflows
58
- - **Code Review Swarms**: Multi-agent code analysis
59
- - **Issue Tracking**: Intelligent issue triage and assignment
60
- - **Release Automation**: Coordinated multi-package releases
61
- - **Workflow Automation**: Custom GitHub Actions integration
62
- - **Multi-Repo Coordination**: Cross-repository synchronization
63
-
64
- ### 🧠 **Neural Training**
65
- - **27+ Models**: Pre-trained patterns for common tasks
66
- - **WASM Acceleration**: 2.8-4.4x speed improvement
67
- - **SIMD Optimization**: Advanced vector processing
68
- - **Pattern Learning**: Self-improving agent behaviors
69
- - **Context Persistence**: Cross-session learning retention
70
-
71
- ### 🎨 **74+ Specialized Agents**
72
-
73
- #### Core Development (5)
74
- - `coder` - Code implementation specialist
75
- - `planner` - Strategic planning and roadmaps
76
- - `researcher` - Information gathering and analysis
77
- - `reviewer` - Code quality and security review
78
- - `tester` - Comprehensive test creation
79
-
80
- #### Swarm Coordination (5)
81
- - `hierarchical-coordinator` - Queen-led command structure
82
- - `mesh-coordinator` - Peer-to-peer coordination
83
- - `adaptive-coordinator` - Dynamic topology management
84
- - `collective-intelligence-coordinator` - Distributed decision-making
85
- - `swarm-memory-manager` - Cross-agent memory coordination
86
-
87
- #### Consensus & Fault Tolerance (7)
88
- - `byzantine-coordinator` - Byzantine fault tolerance
89
- - `raft-manager` - Raft consensus protocol
90
- - `gossip-coordinator` - Gossip-based consensus
91
- - `crdt-synchronizer` - Conflict-free data replication
92
- - `quorum-manager` - Dynamic quorum management
93
- - `security-manager` - Comprehensive security protocols
94
- - `performance-benchmarker` - Consensus performance testing
95
-
96
- #### GitHub Automation (13)
97
- - `pr-manager` - Pull request coordination
98
- - `code-review-swarm` - Multi-agent code reviews
99
- - `issue-tracker` - Issue management and triage
100
- - `release-manager` - Release coordination
101
- - `workflow-automation` - GitHub Actions management
102
- - `repo-architect` - Repository structure optimization
103
- - `multi-repo-swarm` - Cross-repository coordination
104
- - `sync-coordinator` - Version alignment across repos
105
- - And 5 more specialized GitHub agents...
106
-
107
- #### Specialized Development (8)
108
- - `backend-dev` - Backend API development
109
- - `mobile-dev` - React Native mobile development
110
- - `ml-developer` - Machine learning workflows
111
- - `cicd-engineer` - CI/CD pipeline creation
112
- - `api-docs` - OpenAPI/Swagger documentation
113
- - `system-architect` - System design and architecture
114
- - `code-analyzer` - Advanced code quality analysis
115
- - `base-template-generator` - Boilerplate generation
116
-
117
- #### SPARC Methodology (4)
118
- - `specification` - Requirements analysis
119
- - `pseudocode` - Algorithm design
120
- - `architecture` - System architecture
121
- - `refinement` - Iterative improvement
122
-
123
- #### And 32 more specialized agents!
124
-
125
- ### 📦 **150+ Commands**
126
-
127
- #### Coordination (6)
128
- - `/coordination-swarm-init` - Initialize swarm with topology
129
- - `/coordination-agent-spawn` - Create specialized agents
130
- - `/coordination-task-orchestrate` - Coordinate task execution
131
- - `/coordination-spawn` - Quick agent spawning
132
- - `/coordination-orchestrate` - Advanced orchestration
133
- - `/coordination-init` - Setup coordination environment
134
-
135
- #### SPARC Methodology (18)
136
- - `/sparc-modes` - List all SPARC modes
137
- - `/sparc-coder` - Clean code implementation
138
- - `/sparc-tdd` - Test-driven development
139
- - `/sparc-architect` - Architecture design
140
- - `/sparc-reviewer` - Code review mode
141
- - `/sparc-tester` - Test creation mode
142
- - `/sparc-analyzer` - Code analysis
143
- - `/sparc-researcher` - Research mode
144
- - `/sparc-optimizer` - Performance optimization
145
- - `/sparc-debugger` - Debugging assistance
146
- - `/sparc-designer` - UI/UX design mode
147
- - `/sparc-documenter` - Documentation creation
148
- - `/sparc-innovator` - Innovation and R&D
149
- - `/sparc-orchestrator` - Workflow orchestration
150
- - `/sparc-batch-executor` - Batch operations
151
- - `/sparc-memory-manager` - Memory management
152
- - `/sparc-workflow-manager` - Workflow management
153
- - `/sparc-swarm-coordinator` - Swarm coordination
154
-
155
- #### GitHub Integration (18)
156
- - `/github-code-review` - Automated code reviews
157
- - `/github-code-review-swarm` - Multi-agent reviews
158
- - `/github-pr-manager` - PR lifecycle management
159
- - `/github-pr-enhance` - PR enhancement automation
160
- - `/github-issue-tracker` - Issue tracking
161
- - `/github-issue-triage` - Intelligent issue triage
162
- - `/github-repo-analyze` - Repository analysis
163
- - `/github-repo-architect` - Repo structure optimization
164
- - `/github-release-manager` - Release coordination
165
- - `/github-release-swarm` - Multi-package releases
166
- - `/github-workflow-automation` - GitHub Actions automation
167
- - `/github-swarm-pr` - PR swarm management
168
- - `/github-swarm-issue` - Issue swarm coordination
169
- - `/github-multi-repo-swarm` - Cross-repo coordination
170
- - `/github-sync-coordinator` - Version synchronization
171
- - `/github-project-board-sync` - Project board integration
172
- - `/github-modes` - GitHub integration modes
173
- - `/github-swarm` - GitHub swarm orchestration
174
-
175
- #### Hive Mind (11)
176
- - `/hive-mind` - Initialize hive mind coordination
177
- - `/hive-mind-init` - Setup hive mind topology
178
- - `/hive-mind-spawn` - Spawn hive agents
179
- - `/hive-mind-status` - Check hive status
180
- - `/hive-mind-consensus` - Consensus protocols
181
- - `/hive-mind-memory` - Shared memory management
182
- - `/hive-mind-metrics` - Performance metrics
183
- - `/hive-mind-sessions` - Session management
184
- - `/hive-mind-resume` - Resume hive sessions
185
- - `/hive-mind-stop` - Stop hive coordination
186
- - `/hive-mind-wizard` - Guided setup wizard
187
-
188
- #### Memory Management (5)
189
- - `/memory-usage` - Memory storage and retrieval
190
- - `/memory-persist` - Cross-session persistence
191
- - `/memory-search` - Pattern-based search
192
- - `/memory-neural` - Neural memory integration
193
-
194
- #### Monitoring (5)
195
- - `/monitoring-status` - System status overview
196
- - `/monitoring-agents` - Agent status monitoring
197
- - `/monitoring-agent-metrics` - Performance metrics
198
- - `/monitoring-swarm-monitor` - Real-time swarm monitoring
199
- - `/monitoring-real-time-view` - Live dashboard
200
-
201
- #### Optimization (5)
202
- - `/optimization-topology-optimize` - Auto-optimize topology
203
- - `/optimization-auto-topology` - Automatic topology selection
204
- - `/optimization-parallel-execution` - Parallel task execution
205
- - `/optimization-parallel-execute` - Execute tasks in parallel
206
- - `/optimization-cache-manage` - Cache management
207
-
208
- #### Analysis (5)
209
- - `/analysis-performance-report` - Performance reports
210
- - `/analysis-performance-bottlenecks` - Bottleneck detection
211
- - `/analysis-bottleneck-detect` - Real-time bottleneck analysis
212
- - `/analysis-token-usage` - Token consumption analysis
213
- - `/analysis-token-efficiency` - Token optimization
214
-
215
- #### Automation (6)
216
- - `/automation-smart-spawn` - Intelligent agent spawning
217
- - `/automation-smart-agents` - Auto-agent selection
218
- - `/automation-auto-agent` - Automated agent management
219
- - `/automation-self-healing` - Self-healing workflows
220
- - `/automation-session-memory` - Session persistence
221
- - `/automation-workflow-select` - Workflow selection
222
-
223
- #### Hooks (7)
224
- - `/hooks-setup` - Configure hooks system
225
- - `/hooks-overview` - Hooks documentation
226
- - `/hooks-pre-task` - Pre-task hook setup
227
- - `/hooks-post-task` - Post-task hook setup
228
- - `/hooks-pre-edit` - Pre-edit hook setup
229
- - `/hooks-post-edit` - Post-edit hook setup
230
- - `/hooks-session-end` - Session end hook setup
231
-
232
- #### Swarm Management (15)
233
- - `/swarm` - Main swarm command
234
- - `/swarm-init` - Initialize swarm
235
- - `/swarm-spawn` - Spawn swarm agents
236
- - `/swarm-status` - Swarm status
237
- - `/swarm-monitor` - Real-time monitoring
238
- - `/swarm-modes` - Available swarm modes
239
- - `/swarm-strategies` - Execution strategies
240
- - `/swarm-background` - Background swarm execution
241
- - `/swarm-analysis` - Swarm analysis workflows
242
- - `/swarm-research` - Research swarms
243
- - `/swarm-development` - Development swarms
244
- - `/swarm-testing` - Testing swarms
245
- - `/swarm-maintenance` - Maintenance swarms
246
- - `/swarm-optimization` - Optimization swarms
247
- - `/swarm-examples` - Swarm examples
248
-
249
- #### Workflows (5)
250
- - `/workflows-create` - Create custom workflows
251
- - `/workflows-execute` - Execute workflows
252
- - `/workflows-export` - Export workflow definitions
253
- - `/workflows-development` - Development workflows
254
- - `/workflows-research` - Research workflows
255
-
256
- #### Neural Training (5)
257
- - `/training-neural-train` - Train neural patterns
258
- - `/training-neural-patterns` - Pattern management
259
- - `/training-pattern-learn` - Pattern learning
260
- - `/training-model-update` - Model updates
261
- - `/training-specialization` - Agent specialization
262
-
263
-
264
- #### And 50+ more commands!
265
-
266
- ---
267
-
268
- ## 🚀 Quick Start
269
-
270
- ### 1. Install Claude Code Plugin
271
-
272
- In Claude Code:
273
-
274
- ```
275
- /plugin add monoes/monomind
276
- ```
277
-
278
- Or from local directory:
279
-
280
- ```bash
281
- git clone https://github.com/monoes/monomind.git
282
- cd monomind
283
- ```
284
-
285
- Then in Claude Code:
286
- ```
287
- /plugin add .
288
- ```
289
-
290
- ### 2. Restart Claude Code
291
-
292
- ```
293
- /restart
294
- ```
295
-
296
- ### 3. Configure MCP Servers (Optional)
297
-
298
- ```bash
299
- # Add MCP servers to Claude Code
300
- claude mcp add monomind npx monomind@alpha mcp start
301
- claude mcp add ruv-swarm npx ruv-swarm mcp start # Optional
302
- ```
303
-
304
- ### 4. Verify Installation
305
-
306
- ```bash
307
- # Check plugin status
308
- claude plugin list
309
-
310
- # Test a command
311
- # In Claude Code, type:
312
- /coordination-swarm-init
313
- ```
314
-
315
- ---
316
-
317
- ## 📦 Installation
318
-
319
- ### Prerequisites
320
-
321
- - **Claude Code CLI** >= 2.0.0
322
- - **Node.js** >= 20.0.0
323
- - **Git** (for GitHub integration features)
324
- - Read/write permissions in project directory
325
-
326
- ### Method 1: Direct Installation (Recommended)
327
-
328
- In Claude Code:
329
- ```
330
- /plugin add monoes/monomind
331
- /restart
332
- ```
333
-
334
- ### Method 2: Local Installation
335
-
336
- ```bash
337
- # Clone the repository
338
- git clone https://github.com/monoes/monomind.git
339
- cd monomind/claude-plugin
340
-
341
- # Run installation script
342
- bash scripts/install.sh
343
-
344
- # Or copy manually
345
- cp -r commands ~/.claude/commands/
346
- cp -r agents ~/.claude/agents/
347
- ```
348
-
349
- ### Method 3: NPX (One-Time Setup)
350
-
351
- ```bash
352
- # Run setup via npx
353
- npx monomind@alpha init --plugin
354
-
355
- # This will:
356
- # 1. Create .claude directory
357
- # 2. Copy all commands and agents
358
- # 3. Configure MCP servers
359
- # 4. Setup hooks
360
- ```
361
-
362
- ---
363
-
364
- ## 🏗️ Components
365
-
366
- ### Directory Structure
367
-
368
- ```
369
- monomind/
370
- ├── .claude-plugin/
371
- │ ├── plugin.json # Plugin metadata
372
- │ ├── README.md # This file
373
- │ └── ...
374
- ├── commands/ # 150+ slash commands
375
- │ ├── coordination/ # Swarm coordination commands
376
- │ ├── sparc/ # SPARC methodology commands
377
- │ ├── github/ # GitHub integration commands
378
- │ ├── hive-mind/ # Hive mind commands
379
- │ ├── hooks/ # Hooks configuration commands
380
- │ ├── memory/ # Memory management commands
381
- │ ├── monitoring/ # Monitoring commands
382
- │ ├── optimization/ # Optimization commands
383
- │ ├── analysis/ # Analysis commands
384
- │ ├── automation/ # Automation commands
385
- │ ├── swarm/ # Swarm management commands
386
- │ ├── workflows/ # Workflow commands
387
- │ ├── training/ # Neural training commands
388
- │ └── ... # And more!
389
- ├── agents/ # 74+ specialized agents
390
- │ ├── core/ # Core development agents
391
- │ ├── consensus/ # Consensus protocol agents
392
- │ ├── github/ # GitHub automation agents
393
- │ ├── swarm/ # Swarm coordination agents
394
- │ ├── hive-mind/ # Hive mind agents
395
- │ ├── sparc/ # SPARC methodology agents
396
- │ ├── optimization/ # Optimization agents
397
- │ ├── specialized/ # Domain-specific agents
398
- │ ├── templates/ # Template agents
399
- │ ├── testing/ # Testing agents
400
- │ └── ... # And more!
401
- ├── hooks/ # Hook scripts
402
- │ ├── pre-tool-use.sh
403
- │ ├── post-tool-use.sh
404
- │ ├── pre-task.sh
405
- │ ├── post-task.sh
406
- │ ├── session-start.sh
407
- │ └── session-end.sh
408
- ├── scripts/ # Installation and setup scripts
409
- │ ├── install.sh
410
- │ ├── setup-mcp.sh
411
- │ ├── verify.sh
412
- │ └── uninstall.sh
413
- └── docs/ # Documentation
414
- ├── QUICKSTART.md
415
- ├── USER_GUIDE.md
416
- ├── API_REFERENCE.md
417
- ├── EXAMPLES.md
418
- └── TROUBLESHOOTING.md
419
- ```
420
-
421
- ---
422
-
423
- ## 💡 Usage
424
-
425
- ### Basic Swarm Coordination
426
-
427
- ```bash
428
- # Initialize a hierarchical swarm
429
- /coordination-swarm-init
430
-
431
- # Spawn specialized agents
432
- /coordination-agent-spawn
433
-
434
- # Orchestrate a complex task
435
- /coordination-task-orchestrate "Build REST API with authentication"
436
- ```
437
-
438
- ### SPARC Development Workflow
439
-
440
- ```bash
441
- # Start with specification
442
- /sparc-modes specification "User authentication system"
443
-
444
- # Design architecture
445
- /sparc-architect
446
-
447
- # Implement with TDD
448
- /sparc-tdd "Implement JWT authentication"
449
-
450
- # Code review
451
- /sparc-reviewer
452
-
453
- # Optimize performance
454
- /sparc-optimizer
455
- ```
456
-
457
- ### GitHub Automation
458
-
459
- ```bash
460
- # Analyze repository
461
- /github-repo-analyze
462
-
463
- # Create PR with automated review
464
- /github-pr-manager
465
-
466
- # Multi-agent code review
467
- /github-code-review-swarm
468
-
469
- # Coordinate release across repos
470
- /github-multi-repo-swarm
471
- ```
472
-
473
- ### Hive Mind Coordination
474
-
475
- ```bash
476
- # Initialize hive mind
477
- /hive-mind-init
478
-
479
- # Spawn hive agents with consensus
480
- /hive-mind-spawn
481
-
482
- # Check consensus status
483
- /hive-mind-consensus
484
-
485
- # View shared memory
486
- /hive-mind-memory
487
- ```
488
-
489
- ---
490
-
491
- ## 🔌 MCP Integration
492
-
493
- Monomind integrates with 3 MCP servers providing 110+ tools:
494
-
495
- ### Monomind MCP (Required)
496
-
497
- ```json
498
- {
499
- "mcpServers": {
500
- "monomind": {
501
- "command": "npx",
502
- "args": ["monomind@alpha", "mcp", "start"]
503
- }
504
- }
505
- }
506
- ```
507
-
508
- **Tools**: 40+ orchestration tools
509
- - Swarm initialization and management
510
- - Agent spawning and coordination
511
- - Task orchestration
512
- - Memory management
513
- - Neural training
514
- - Performance monitoring
515
-
516
- ### ruv-swarm MCP (Optional)
517
-
518
- ```json
519
- {
520
- "mcpServers": {
521
- "ruv-swarm": {
522
- "command": "npx",
523
- "args": ["ruv-swarm", "mcp", "start"]
524
- }
525
- }
526
- }
527
- ```
528
-
529
- **Tools**: Enhanced coordination features
530
- - WASM acceleration (2.8-4.4x speed)
531
- - SIMD optimization
532
- - Advanced topology management
533
- - Byzantine fault tolerance
534
-
535
-
536
- ```json
537
- {
538
- "mcpServers": {
539
- "command": "npx",
540
- }
541
- }
542
- }
543
- ```
544
-
545
- **Tools**: 70+ cloud features
546
- - E2B sandbox execution
547
- - Event-driven workflows
548
- - Application marketplace
549
- - Real-time collaboration
550
-
551
- ---
552
-
553
- ## 📚 Examples
554
-
555
- ### Example 1: Full-Stack Development with Swarm
556
-
557
- ```bash
558
- # Initialize hierarchical swarm
559
- /coordination-swarm-init
560
-
561
- # The swarm automatically spawns:
562
- # - backend-dev agent
563
- # - coder agent for frontend
564
- # - tester agent
565
- # - reviewer agent
566
-
567
- # Orchestrate the full-stack build
568
- /coordination-task-orchestrate "Build a todo app with React frontend and Express backend"
569
-
570
- # Monitor progress
571
- /monitoring-swarm-monitor
572
-
573
- # Get performance metrics
574
- /analysis-performance-report
575
- ```
576
-
577
- ### Example 2: SPARC TDD Workflow
578
-
579
- ```bash
580
- # Start with specification
581
- /sparc-modes specification "Shopping cart with inventory management"
582
-
583
- # Generate pseudocode
584
- /sparc-modes pseudocode
585
-
586
- # Design architecture
587
- /sparc-architect
588
-
589
- # TDD implementation
590
- /sparc-tdd
591
-
592
- # Automated review
593
- /sparc-reviewer
594
-
595
- # Performance optimization
596
- /sparc-optimizer
597
- ```
598
-
599
- ### Example 3: GitHub PR Automation
600
-
601
- ```bash
602
- # Analyze current PR
603
- /github-pr-manager
604
-
605
- # Multi-agent code review
606
- /github-code-review-swarm
607
-
608
- # Auto-fix issues
609
- /github-pr-enhance
610
-
611
- # Sync across repositories
612
- /github-sync-coordinator
613
-
614
- # Prepare release
615
- /github-release-manager
616
- ```
617
-
618
- ---
619
-
620
- ## 📖 Documentation
621
-
622
- - **[Quickstart Guide](docs/QUICKSTART.md)** - Get started in 5 minutes
623
- - **[User Guide](docs/USER_GUIDE.md)** - Complete usage documentation
624
- - **[API Reference](docs/API_REFERENCE.md)** - All commands and agents
625
- - **[Examples](docs/EXAMPLES.md)** - Real-world usage examples
626
- - **[Troubleshooting](docs/TROUBLESHOOTING.md)** - Common issues and solutions
627
-
628
- ---
629
-
630
- ## 🤝 Support
631
-
632
- - **Documentation**: [GitHub Wiki](https://github.com/monoes/monomind/wiki)
633
- - **Issues**: [GitHub Issues](https://github.com/monoes/monomind/issues)
634
- - **Discussions**: [GitHub Discussions](https://github.com/monoes/monomind/discussions)
635
- - **Website**: [Monomind](https://github.com/monoes/monomind)
636
-
637
- ---
638
-
639
- ## 📊 Performance
640
-
641
- - **84.8%** SWE-Bench solve rate
642
- - **32.3%** token reduction vs. sequential execution
643
- - **2.8-4.4x** speed improvement with WASM acceleration
644
- - **27+** neural models for pattern recognition
645
- - **100** max concurrent agents
646
-
647
- ---
648
-
649
- ## 🔧 Advanced Configuration
650
-
651
- ### Custom Swarm Topology
652
-
653
- ```json
654
- {
655
- "swarmCoordination": {
656
- "topology": "mesh",
657
- "maxAgents": 50,
658
- "autoSpawn": true,
659
- "autoOptimize": true
660
- }
661
- }
662
- ```
663
-
664
- ### Enable Neural Training
665
-
666
- ```json
667
- {
668
- "neuralTraining": {
669
- "enabled": true,
670
- "wasmAcceleration": true,
671
- "simdOptimization": true
672
- }
673
- }
674
- ```
675
-
676
- ### Configure Hooks
677
-
678
- ```json
679
- {
680
- "hooks": {
681
- "PreToolUse": { "enabled": true },
682
- "PostToolUse": { "enabled": true },
683
- "SessionEnd": { "enabled": true }
684
- }
685
- }
686
- ```
687
-
688
- ---
689
-
690
- ## 📝 License
691
-
692
- MIT License - see [LICENSE](LICENSE) file for details
693
-
694
- ---
695
-
696
- ## 🌟 Star History
697
-
698
- [![Star History Chart](https://api.star-history.com/svg?repos=monoes/monomind&type=Date)](https://star-history.com/#monoes/monomind&Date)
699
-
700
- ---
701
-
702
- **Made with ❤️ by rUv**
703
-
704
- *Enterprise AI Agent Orchestration for Claude Code*