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,258 +0,0 @@
1
- # 📦 Monomind Plugin Installation Guide
2
-
3
- ## Quick Installation
4
-
5
- ### Method 1: Install from GitHub (Recommended)
6
-
7
- In Claude Code:
8
-
9
- ```
10
- /plugin add monoes/monomind
11
- ```
12
-
13
- This will:
14
- - Clone the repository
15
- - Install all 150+ commands
16
- - Install all 74+ agents
17
- - Configure MCP servers
18
- - Set up hooks
19
-
20
- ### Method 2: Install from Local Directory
21
-
22
- If you've cloned the repository:
23
-
24
- ```bash
25
- # Clone the repository
26
- git clone https://github.com/monoes/monomind.git
27
- cd monomind
28
-
29
- # In Claude Code, install the plugin
30
- /plugin add .
31
- ```
32
-
33
- ### Step 2: Restart Claude Code
34
-
35
- Restart to activate the plugin:
36
-
37
- ```
38
- /restart
39
- ```
40
-
41
- ### Step 3: Verify Installation
42
-
43
- ```
44
- /plugin list
45
- ```
46
-
47
- Look for `monomind` in the active plugins list.
48
-
49
- Try a command:
50
- ```
51
- /coordination-swarm-init
52
- ```
53
-
54
- Or type `/` to see all 150+ available commands.
55
-
56
- ---
57
-
58
- ## What Gets Installed
59
-
60
- ### ✅ 150+ Slash Commands
61
-
62
- Commands organized by category:
63
- - **Coordination** (6): swarm-init, agent-spawn, task-orchestrate
64
- - **SPARC** (18): coder, tdd, architect, reviewer, optimizer
65
- - **GitHub** (18): pr-manager, code-review-swarm, release-manager
66
- - **Hive Mind** (11): init, spawn, consensus, memory
67
- - **Memory** (5): usage, persist, search
68
- - **Monitoring** (5): status, agents, metrics
69
- - **Optimization** (5): topology-optimize, parallel-execution
70
- - **Analysis** (5): performance-report, bottleneck-detect
71
- - **Automation** (6): smart-spawn, auto-agent
72
- - **Swarm** (15): init, spawn, status, monitor
73
- - **Workflows** (5): create, execute, export
74
- - **Training** (5): neural-train, pattern-learn
75
- - And more...
76
-
77
- ### ✅ 74+ Specialized Agents
78
-
79
- Available for delegation:
80
- - **Core Development** (5): coder, planner, researcher, reviewer, tester
81
- - **Swarm Coordination** (5): hierarchical, mesh, adaptive coordinators
82
- - **Consensus** (7): Byzantine, Raft, Gossip protocols
83
- - **GitHub** (13): PR manager, code review, releases
84
- - **Specialized** (8): backend, mobile, ML, CI/CD
85
- - And more...
86
-
87
- ### ✅ MCP Integration
88
-
89
- 3 MCP servers with 110+ tools:
90
- - **monomind**: Core orchestration (40+ tools) - Required
91
- - **ruv-swarm**: Enhanced coordination - Optional
92
-
93
- ---
94
-
95
- ## Managing the Plugin
96
-
97
- ### List Installed Plugins
98
-
99
- ```
100
- /plugin list
101
- ```
102
-
103
- ### Update Plugin
104
-
105
- ```
106
- /plugin update monomind
107
- ```
108
-
109
- Or pull latest from GitHub:
110
- ```
111
- cd /path/to/monomind
112
- git pull
113
- ```
114
-
115
- ### Remove Plugin
116
-
117
- ```
118
- /plugin remove monomind
119
- ```
120
-
121
- ---
122
-
123
- ## MCP Server Setup (Optional)
124
-
125
- The plugin defines MCP servers, but you may need to install the packages:
126
-
127
- ### Install MCP Packages
128
-
129
- ```bash
130
- # Core MCP (recommended)
131
- npm install -g monomind@alpha
132
-
133
- # Optional enhanced coordination
134
- npm install -g ruv-swarm
135
-
136
- # Optional cloud features (requires authentication)
137
- ```
138
-
139
- MCP servers are automatically configured when you install the plugin.
140
-
141
- ---
142
-
143
- ## Verification
144
-
145
- ### Check Plugin Status
146
-
147
- In Claude Code:
148
- ```
149
- /plugin list
150
- ```
151
-
152
- Look for `monomind` in the list with status "active".
153
-
154
- ### Test Commands
155
-
156
- Type `/` in Claude Code and look for:
157
- - Commands starting with `coordination-`
158
- - Commands starting with `sparc-`
159
- - Commands starting with `github-`
160
- - Commands starting with `hive-mind-`
161
-
162
- ### Test Agents
163
-
164
- Agents are automatically available for Claude Code to delegate to when appropriate.
165
-
166
- ---
167
-
168
- ## Troubleshooting
169
-
170
- ### Plugin Not Found
171
-
172
- ```
173
- # Verify plugin is installed
174
- /plugin list
175
-
176
- # Try installing again
177
- /plugin add monoes/monomind
178
- ```
179
-
180
- ### Commands Not Showing
181
-
182
- ```
183
- # Verify plugin is installed
184
- /plugin list
185
-
186
- # Check directory structure
187
- ls -la .claude-plugin/
188
- ls -la commands/
189
- ls -la agents/
190
-
191
- # Restart Claude Code
192
- /restart
193
- ```
194
-
195
- ### Installation Fails
196
-
197
- ```
198
- # Try local installation
199
- git clone https://github.com/monoes/monomind.git
200
- cd monomind
201
- /plugin add .
202
- ```
203
-
204
- ---
205
-
206
- ## Getting Help
207
-
208
- - **Documentation**: See README.md for complete documentation
209
- - **Quick Start**: See docs/QUICKSTART.md for 5-minute guide
210
- - **GitHub Issues**: https://github.com/monoes/monomind/issues
211
- - **Discussions**: https://github.com/monoes/monomind/discussions
212
-
213
- ---
214
-
215
- ## Uninstalling
216
-
217
- To remove the plugin:
218
-
219
- ```
220
- /plugin remove monomind
221
- ```
222
-
223
- This will remove all commands, agents, and hooks.
224
-
225
- ---
226
-
227
- **Version**: 2.5.0
228
- **License**: MIT
229
- **Author**: rUv
230
-
231
- ---
232
-
233
- ## Plugin Structure
234
-
235
- After installation, the plugin structure is:
236
-
237
- ```
238
- monomind/
239
- ├── .claude-plugin/
240
- │ ├── plugin.json # Plugin metadata
241
- │ ├── README.md # Documentation
242
- │ ├── INSTALLATION.md # This file
243
- │ └── PLUGIN_SUMMARY.md # Status overview
244
- ├── commands/ # 150+ slash commands
245
- │ ├── coordination/
246
- │ ├── sparc/
247
- │ ├── github/
248
- │ ├── hive-mind/
249
- │ └── ...
250
- ├── agents/ # 74+ specialized agents
251
- │ ├── core/
252
- │ ├── swarm/
253
- │ ├── consensus/
254
- │ ├── github/
255
- │ └── ...
256
- └── hooks/ # Event handlers
257
- └── hooks.json
258
- ```
@@ -1,358 +0,0 @@
1
- # 🎉 Monomind Plugin - Complete Summary
2
-
3
- ## ✅ Plugin Status: PRODUCTION READY
4
-
5
- **Version**: 2.5.0
6
- **License**: MIT
7
- **Author**: rUv
8
- **Repository**: https://github.com/monoes/monomind
9
-
10
- ---
11
-
12
- ## 📦 Plugin Structure
13
-
14
- ```
15
- monomind/
16
- ├── .claude-plugin/
17
- │ ├── plugin.json ✓ Official plugin metadata
18
- │ ├── marketplace.json ✓ Marketplace distribution metadata
19
- │ ├── README.md ✓ Comprehensive documentation (20KB)
20
- │ ├── scripts/
21
- │ │ ├── install.sh ✓ Full installation script
22
- │ │ ├── verify.sh ✓ Verification script
23
- │ │ └── uninstall.sh ✓ Uninstallation script
24
- │ └── docs/
25
- │ └── QUICKSTART.md ✓ 5-minute quickstart guide
26
- ├── commands/ ✓ 150+ slash commands
27
- │ ├── coordination/
28
- │ ├── sparc/
29
- │ ├── github/
30
- │ └── ...
31
- ├── agents/ ✓ 74+ specialized agents
32
- │ ├── core/
33
- │ ├── swarm/
34
- │ ├── consensus/
35
- │ └── ...
36
- └── hooks/ ✓ Event handlers
37
- └── hooks.json ✓ Hook configuration
38
- ```
39
-
40
- ---
41
-
42
- ## 🚀 Installation (Official Method)
43
-
44
- ### From GitHub (Recommended):
45
-
46
- ```
47
- # Install plugin
48
- /plugin add monoes/monomind
49
-
50
- # Restart Claude Code
51
- /restart
52
-
53
- # Verify installation
54
- /plugin list
55
-
56
- # Try a command
57
- /coordination-swarm-init
58
- ```
59
-
60
- ### From Local Directory:
61
-
62
- ```
63
- cd monomind
64
- /plugin add .
65
- /restart
66
- ```
67
-
68
- ---
69
-
70
- ## 📊 Plugin Contents
71
-
72
- ### Commands: 150+
73
-
74
- | Category | Count | Examples |
75
- |----------|-------|----------|
76
- | Coordination | 6 | swarm-init, agent-spawn, task-orchestrate |
77
- | SPARC | 18 | coder, tdd, architect, reviewer, optimizer |
78
- | GitHub | 18 | pr-manager, code-review-swarm, release-manager |
79
- | Hive Mind | 11 | init, spawn, consensus, memory, metrics |
80
- | Memory | 5 | usage, persist, search, neural |
81
- | Monitoring | 5 | status, agents, metrics, swarm-monitor |
82
- | Optimization | 5 | topology-optimize, parallel-execution, cache |
83
- | Analysis | 5 | performance-report, bottleneck-detect, token-usage |
84
- | Automation | 6 | smart-spawn, auto-agent, self-healing |
85
- | Swarm | 15 | init, spawn, status, monitor, strategies |
86
- | Workflows | 5 | create, execute, export |
87
- | Training | 5 | neural-train, pattern-learn, model-update |
88
- | **Total** | **150+** | **19 categories** |
89
-
90
- ### Agents: 74+
91
-
92
- | Category | Count | Key Agents |
93
- |----------|-------|-----------|
94
- | Core Development | 5 | coder, planner, researcher, reviewer, tester |
95
- | Swarm Coordination | 5 | hierarchical, mesh, adaptive coordinators |
96
- | Consensus & Fault Tolerance | 7 | Byzantine, Raft, Gossip, CRDT, Quorum |
97
- | GitHub Automation | 13 | PR manager, code review, release coordination |
98
- | Specialized Development | 8 | backend, mobile, ML, CI/CD, API docs |
99
- | SPARC Methodology | 4 | specification, pseudocode, architecture, refinement |
100
- | Hive Mind | 5 | collective intelligence, queen, scout, worker |
101
- | Optimization | 5 | performance monitor, load balancer, benchmarking |
102
- | **Total** | **74+** | **20 categories** |
103
-
104
- ### MCP Integration: 110+ Tools
105
-
106
- 1. **monomind** (Required)
107
- - 40+ orchestration tools
108
- - Swarm coordination
109
- - Agent management
110
- - Task orchestration
111
- - Memory management
112
- - Neural training
113
-
114
- 2. **ruv-swarm** (Optional)
115
- - Enhanced coordination
116
- - WASM acceleration (2.8-4.4x speed)
117
- - SIMD optimization
118
- - Advanced topology management
119
-
120
- - 70+ cloud tools
121
- - E2B sandbox execution
122
- - Event-driven workflows
123
- - Application marketplace
124
-
125
- ---
126
-
127
- ## ✨ Key Features
128
-
129
- ### Multi-Agent Swarm Coordination
130
- - 4 topology types: Hierarchical, Mesh, Ring, Star
131
- - Auto-spawning based on task complexity
132
- - Auto-optimization for performance
133
- - Up to 100 concurrent agents
134
- - Cross-session memory persistence
135
-
136
- ### SPARC Methodology Integration
137
- - 18 specialized development modes
138
- - Systematic development workflow
139
- - Test-driven development support
140
- - Architecture design tools
141
- - Code review automation
142
-
143
- ### GitHub Automation
144
- - Pull request management
145
- - Multi-agent code reviews
146
- - Issue tracking and triage
147
- - Release coordination
148
- - Workflow automation
149
- - Multi-repository synchronization
150
-
151
- ### Neural Training
152
- - 27+ pre-trained models
153
- - WASM acceleration
154
- - SIMD optimization
155
- - Pattern learning
156
- - Context persistence
157
-
158
- ### Performance
159
- - 84.8% SWE-Bench solve rate
160
- - 32.3% token reduction
161
- - 2.8-4.4x speed improvement with WASM
162
- - Real-time performance monitoring
163
- - Bottleneck detection
164
-
165
- ---
166
-
167
- ## 📚 Documentation
168
-
169
- | Document | Description |
170
- |----------|-------------|
171
- | README.md | Complete documentation (20KB) |
172
- | marketplace.json | Marketplace distribution metadata |
173
- | docs/INSTALLATION.md | Installation guide with official commands |
174
- | docs/QUICKSTART.md | 5-minute quickstart guide |
175
- | docs/PLUGIN_SUMMARY.md | Status overview (this file) |
176
-
177
- All documentation follows official Claude Code plugin guidelines.
178
-
179
- ---
180
-
181
- ## 🔧 Technical Specifications
182
-
183
- ### Plugin Manifest
184
- - **Format**: `.claude-plugin/plugin.json` (plugin configuration)
185
- - **Marketplace**: `.claude-plugin/marketplace.json` (distribution metadata)
186
- - **Schema**: Official Claude Code plugin specification
187
- - **Compatibility**: Claude Code >= 2.0.0
188
- - **Node.js**: >= 20.0.0
189
-
190
- ### Commands
191
- - **Format**: Markdown files (.md)
192
- - **Location**: `commands/` directory (root level)
193
- - **Naming**: Kebab-case with category prefixes
194
- - **Discovery**: Automatic via plugin system
195
- - **Count**: 150+ commands across 19 categories
196
-
197
- ### Agents
198
- - **Format**: Markdown files with YAML frontmatter
199
- - **Location**: `agents/` directory (root level)
200
- - **Delegation**: Available for main agent to use
201
- - **Specialization**: Domain-specific capabilities
202
- - **Count**: 74+ specialized agents across 20 categories
203
-
204
- ### Hooks
205
- - **Format**: JSON configuration
206
- - **Location**: `hooks/hooks.json`
207
- - **Events**: pre-task, post-task, post-edit, session-start, session-end
208
- - **Integration**: Monomind coordination
209
-
210
- ### MCP Servers
211
- - **Protocol**: Model Context Protocol
212
- - **Installation**: NPM packages
213
- - **Configuration**: Defined in plugin.json
214
- - **Optional**: Graceful degradation if not available
215
-
216
- ---
217
-
218
- ## 🎯 Plugin Management
219
-
220
- ### Install
221
- ```
222
- /plugin add monoes/monomind
223
- ```
224
-
225
- ### Update
226
- ```
227
- /plugin update monomind
228
- ```
229
-
230
- Or pull latest from GitHub:
231
- ```
232
- cd /path/to/monomind
233
- git pull
234
- ```
235
-
236
- ### Remove
237
- ```
238
- /plugin remove monomind
239
- ```
240
-
241
- ### List Installed
242
- ```
243
- /plugin list
244
- ```
245
-
246
- ---
247
-
248
- ## ✅ Quality Assurance
249
-
250
- ### Compliance Checklist
251
- - ✓ Official Claude Code plugin specification
252
- - ✓ Marketplace.json format validation
253
- - ✓ Command and agent format standards
254
- - ✓ MCP integration best practices
255
- - ✓ Documentation completeness
256
- - ✓ Installation via `/plugin` commands
257
-
258
- ### Verification
259
- After installation, verify with:
260
- ```
261
- /plugin list
262
- ```
263
-
264
- Should show `monomind` as active.
265
-
266
- ---
267
-
268
- ## 🚀 Use Cases
269
-
270
- 1. **Full-Stack Development**: Coordinate backend, frontend, database agents
271
- 2. **SPARC Workflows**: Systematic development from spec to deployment
272
- 3. **GitHub Automation**: PR management, code review, releases
273
- 4. **Multi-Agent Projects**: Complex tasks requiring specialized agents
274
- 5. **Performance Optimization**: Bottleneck detection and optimization
275
- 6. **Neural Training**: Pattern learning and self-improvement
276
- 7. **Enterprise Workflows**: Large-scale coordination and automation
277
-
278
- ---
279
-
280
- ## 📈 Performance Metrics
281
-
282
- - **SWE-Bench**: 84.8% solve rate
283
- - **Token Efficiency**: 32.3% reduction vs sequential
284
- - **Speed**: 2.8-4.4x with WASM acceleration
285
- - **Scale**: Up to 100 concurrent agents
286
- - **Models**: 27+ neural models available
287
-
288
- ---
289
-
290
- ## 🤝 Support & Community
291
-
292
- - **Repository**: https://github.com/monoes/monomind
293
- - **Issues**: https://github.com/monoes/monomind/issues
294
- - **Discussions**: https://github.com/monoes/monomind/discussions
295
- - **Website**: https://github.com/monoes/monomind
296
-
297
- ---
298
-
299
- ## 📝 License & Attribution
300
-
301
- - **License**: MIT
302
- - **Author**: rUv (nokhodian@gmail.com)
303
- - **Copyright**: 2025
304
- - **Open Source**: Free for personal and commercial use
305
-
306
- ---
307
-
308
- ## 🎉 Distribution Status
309
-
310
- ✅ **Ready For:**
311
- - GitHub repository hosting
312
- - Claude Code plugin marketplace distribution
313
- - Production deployment
314
- - Enterprise use
315
- - Team collaboration
316
- - Community sharing
317
-
318
- ---
319
-
320
- ## 📋 Plugin Configuration
321
-
322
- The plugin is configured via `.claude-plugin/plugin.json`:
323
-
324
- ```json
325
- {
326
- "name": "monomind",
327
- "version": "2.5.0",
328
- "description": "Enterprise AI agent orchestration plugin...",
329
- "author": {
330
- "name": "nokhodian",
331
- "email": "nokhodian@gmail.com"
332
- },
333
- "repository": {
334
- "type": "git",
335
- "url": "https://github.com/monoes/monomind.git"
336
- },
337
- "mcpServers": {
338
- "monomind": {
339
- "command": "npx",
340
- "args": ["monomind@alpha", "mcp", "start"]
341
- }
342
- }
343
- }
344
- ```
345
-
346
- Commands and agents are automatically discovered from `commands/` and `agents/` directories.
347
-
348
- Users install with:
349
- ```
350
- /plugin add monoes/monomind
351
- ```
352
-
353
- ---
354
-
355
- **Plugin Status**: PRODUCTION READY
356
- **Last Updated**: 2025-10-09
357
- **Version**: 2.5.0
358
- **Specification**: Claude Code Official Plugin Format