claude-mpm 5.4.14__py3-none-any.whl → 5.4.36__py3-none-any.whl
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.
Potentially problematic release.
This version of claude-mpm might be problematic. Click here for more details.
- claude_mpm/VERSION +1 -1
- claude_mpm/agents/BASE_AGENT.md +164 -0
- claude_mpm/agents/BASE_ENGINEER.md +658 -0
- claude_mpm/agents/CLAUDE_MPM_TEACHER_OUTPUT_STYLE.md +1 -1
- claude_mpm/agents/MEMORY.md +1 -1
- claude_mpm/agents/PM_INSTRUCTIONS.md +363 -817
- claude_mpm/agents/WORKFLOW.md +5 -254
- claude_mpm/agents/agent_loader.py +1 -1
- claude_mpm/agents/base_agent.json +31 -0
- claude_mpm/cli/chrome_devtools_installer.py +175 -0
- claude_mpm/cli/commands/agent_state_manager.py +10 -10
- claude_mpm/cli/commands/agents.py +9 -40
- claude_mpm/cli/commands/auto_configure.py +4 -4
- claude_mpm/cli/commands/configure.py +1 -1
- claude_mpm/cli/commands/postmortem.py +1 -1
- claude_mpm/cli/commands/skills.py +193 -187
- claude_mpm/cli/interactive/agent_wizard.py +2 -2
- claude_mpm/cli/parsers/agents_parser.py +0 -9
- claude_mpm/cli/parsers/auto_configure_parser.py +0 -138
- claude_mpm/cli/startup.py +330 -78
- claude_mpm/commands/mpm-config.md +1 -2
- claude_mpm/commands/mpm-help.md +14 -95
- claude_mpm/commands/mpm-organize.md +350 -153
- claude_mpm/core/config.py +2 -4
- claude_mpm/core/framework/loaders/agent_loader.py +1 -1
- claude_mpm/core/framework/loaders/instruction_loader.py +52 -11
- claude_mpm/core/unified_agent_registry.py +1 -1
- claude_mpm/dashboard/static/svelte-build/_app/env.js +1 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/assets/0.B_FtCwCQ.css +1 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/assets/2.Cl_eSA4x.css +1 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/BgChzWQ1.js +1 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/CIXEwuWe.js +1 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/CWc5urbQ.js +1 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/DMkZpdF2.js +2 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/DjhvlsAc.js +1 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/N4qtv3Hx.js +2 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/uj46x2Wr.js +1 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/entry/app.DTL5mJO-.js +2 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/entry/start.DzuEhzqh.js +1 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/nodes/0.CAGBuiOw.js +1 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/nodes/1.DFLC8jdE.js +1 -0
- claude_mpm/dashboard/static/svelte-build/_app/immutable/nodes/2.DPvEihJJ.js +10 -0
- claude_mpm/dashboard/static/svelte-build/_app/version.json +1 -0
- claude_mpm/dashboard/static/svelte-build/favicon.svg +7 -0
- claude_mpm/dashboard/static/svelte-build/index.html +36 -0
- claude_mpm/hooks/claude_hooks/__pycache__/__init__.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/correlation_manager.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/event_handlers.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/hook_handler.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/installer.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/memory_integration.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/response_tracking.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/tool_analysis.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/event_handlers.py +5 -0
- claude_mpm/hooks/claude_hooks/hook_handler.py +149 -1
- claude_mpm/hooks/claude_hooks/services/__pycache__/__init__.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/__pycache__/connection_manager.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/__pycache__/connection_manager_http.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/__pycache__/duplicate_detector.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/__pycache__/state_manager.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/__pycache__/subagent_processor.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/connection_manager.py +26 -6
- claude_mpm/models/git_repository.py +3 -3
- claude_mpm/scripts/start_activity_logging.py +0 -0
- claude_mpm/services/agents/cache_git_manager.py +6 -6
- claude_mpm/services/agents/deployment/agent_deployment.py +7 -7
- claude_mpm/services/agents/deployment/agent_discovery_service.py +2 -2
- claude_mpm/services/agents/deployment/agent_template_builder.py +2 -2
- claude_mpm/services/agents/deployment/agents_directory_resolver.py +2 -2
- claude_mpm/services/agents/deployment/multi_source_deployment_service.py +20 -22
- claude_mpm/services/agents/deployment/remote_agent_discovery_service.py +55 -53
- claude_mpm/services/agents/git_source_manager.py +2 -2
- claude_mpm/services/agents/recommender.py +5 -3
- claude_mpm/services/agents/single_tier_deployment_service.py +2 -2
- claude_mpm/services/agents/sources/git_source_sync_service.py +5 -5
- claude_mpm/services/agents/startup_sync.py +22 -2
- claude_mpm/services/command_deployment_service.py +10 -0
- claude_mpm/services/diagnostics/checks/agent_check.py +2 -2
- claude_mpm/services/diagnostics/checks/agent_sources_check.py +1 -1
- claude_mpm/services/git/git_operations_service.py +8 -8
- claude_mpm/services/monitor/server.py +473 -3
- claude_mpm/services/skills/selective_skill_deployer.py +475 -1
- claude_mpm/services/skills_deployer.py +62 -6
- claude_mpm/services/socketio/dashboard_server.py +1 -0
- claude_mpm/services/socketio/event_normalizer.py +37 -6
- claude_mpm/services/socketio/server/core.py +262 -123
- claude_mpm/utils/agent_dependency_loader.py +14 -2
- claude_mpm/utils/agent_filters.py +1 -1
- claude_mpm/utils/migration.py +4 -4
- claude_mpm/utils/robust_installer.py +47 -3
- {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/METADATA +5 -3
- {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/RECORD +96 -66
- claude_mpm/cli/commands/agents_detect.py +0 -380
- claude_mpm/cli/commands/agents_recommend.py +0 -309
- claude_mpm/commands/mpm-agents-auto-configure.md +0 -278
- claude_mpm/commands/mpm-agents-detect.md +0 -177
- claude_mpm/commands/mpm-agents-list.md +0 -131
- claude_mpm/commands/mpm-agents-recommend.md +0 -223
- {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/WHEEL +0 -0
- {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/entry_points.txt +0 -0
- {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/licenses/LICENSE-FAQ.md +0 -0
- {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/top_level.txt +0 -0
claude_mpm/commands/mpm-help.md
CHANGED
|
@@ -78,14 +78,8 @@ Available Commands:
|
|
|
78
78
|
/mpm-agents [list|deploy|remove] [name]
|
|
79
79
|
Manage agent deployment
|
|
80
80
|
|
|
81
|
-
/mpm-
|
|
82
|
-
🤖
|
|
83
|
-
|
|
84
|
-
/mpm-agents-detect
|
|
85
|
-
🤖 NEW! Detect project toolchain and frameworks
|
|
86
|
-
|
|
87
|
-
/mpm-agents-recommend
|
|
88
|
-
🤖 NEW! Show recommended agents for your project
|
|
81
|
+
/mpm-configure
|
|
82
|
+
🤖 Unified configuration interface for agents, skills, and project settings
|
|
89
83
|
|
|
90
84
|
/mpm-config [validate|view|status]
|
|
91
85
|
Manage configuration settings
|
|
@@ -184,99 +178,24 @@ Automatically detects your project's toolchain and frameworks, then recommends a
|
|
|
184
178
|
- **Full-stack**: Combination of backend + frontend agents
|
|
185
179
|
- **Testing**: playwright-qa, api-qa based on detected test tools
|
|
186
180
|
|
|
187
|
-
|
|
181
|
+
## Quick Start with Configuration
|
|
188
182
|
|
|
189
|
-
|
|
190
|
-
|
|
183
|
+
For new projects or first-time setup, use the unified `/mpm-configure` command which provides:
|
|
184
|
+
- Toolchain detection
|
|
185
|
+
- Agent recommendations
|
|
186
|
+
- Skills management
|
|
187
|
+
- Auto-configuration
|
|
191
188
|
|
|
192
189
|
**Usage:**
|
|
193
190
|
```
|
|
194
|
-
/mpm-
|
|
195
|
-
```
|
|
196
|
-
|
|
197
|
-
**Output:**
|
|
198
|
-
- Detected languages and versions
|
|
199
|
-
- Frameworks and their configurations
|
|
200
|
-
- Testing tools and test frameworks
|
|
201
|
-
- Build tools and bundlers
|
|
202
|
-
- Package managers
|
|
203
|
-
- Deployment configurations
|
|
204
|
-
|
|
205
|
-
**Example:**
|
|
191
|
+
/mpm-configure
|
|
206
192
|
```
|
|
207
|
-
/mpm-agents-detect
|
|
208
|
-
|
|
209
|
-
Detected Project Stack:
|
|
210
|
-
======================
|
|
211
|
-
Languages: Python 3.11, Node.js 20.x
|
|
212
|
-
Frameworks: FastAPI 0.104.0, React 18.2.0
|
|
213
|
-
Testing: pytest, Playwright
|
|
214
|
-
Build: Vite 5.0.0
|
|
215
|
-
Package Manager: poetry, npm
|
|
216
|
-
Deployment: Docker, Vercel
|
|
217
|
-
```
|
|
218
|
-
|
|
219
|
-
### /mpm-agents-recommend - Agent Recommendations
|
|
220
|
-
|
|
221
|
-
**Description:**
|
|
222
|
-
Based on detected toolchain, shows which agents are recommended for your project with explanations.
|
|
223
|
-
|
|
224
|
-
**Usage:**
|
|
225
|
-
```
|
|
226
|
-
/mpm-agents-recommend
|
|
227
|
-
```
|
|
228
|
-
|
|
229
|
-
**Output:**
|
|
230
|
-
- Recommended agents with rationale
|
|
231
|
-
- Agent capabilities and when to use them
|
|
232
|
-
- Suggested deployment order
|
|
233
|
-
- Complementary agent combinations
|
|
234
193
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
===================================
|
|
241
|
-
|
|
242
|
-
Essential Agents:
|
|
243
|
-
✓ fastapi-engineer - Detected FastAPI framework
|
|
244
|
-
✓ python-engineer - Python 3.11 project
|
|
245
|
-
✓ api-qa - API testing and validation
|
|
246
|
-
|
|
247
|
-
Recommended Agents:
|
|
248
|
-
○ react-engineer - React frontend detected
|
|
249
|
-
○ web-qa - Web UI testing
|
|
250
|
-
○ playwright-qa - Playwright tests found
|
|
251
|
-
|
|
252
|
-
Optional Agents:
|
|
253
|
-
○ docker-ops - Docker configuration found
|
|
254
|
-
○ vercel-ops - Vercel deployment detected
|
|
255
|
-
```
|
|
256
|
-
|
|
257
|
-
## Quick Start with Auto-Configuration
|
|
258
|
-
|
|
259
|
-
For new projects or first-time setup:
|
|
260
|
-
|
|
261
|
-
1. **Preview what would be configured:**
|
|
262
|
-
```
|
|
263
|
-
/mpm-auto-configure --preview
|
|
264
|
-
```
|
|
265
|
-
|
|
266
|
-
2. **Review recommendations:**
|
|
267
|
-
```
|
|
268
|
-
/mpm-agents-recommend
|
|
269
|
-
```
|
|
270
|
-
|
|
271
|
-
3. **Apply configuration:**
|
|
272
|
-
```
|
|
273
|
-
/mpm-auto-configure
|
|
274
|
-
```
|
|
275
|
-
|
|
276
|
-
Or skip straight to auto-apply:
|
|
277
|
-
```
|
|
278
|
-
/mpm-auto-configure --yes
|
|
279
|
-
```
|
|
194
|
+
The interactive menu will guide you through:
|
|
195
|
+
1. Detecting your project's toolchain
|
|
196
|
+
2. Viewing recommended agents
|
|
197
|
+
3. Deploying agents and skills
|
|
198
|
+
4. Managing configuration settings
|
|
280
199
|
|
|
281
200
|
## Supported Technology Stacks
|
|
282
201
|
|