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
|
@@ -118,141 +118,3 @@ Examples:
|
|
|
118
118
|
)
|
|
119
119
|
|
|
120
120
|
return auto_configure_parser
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
def add_agents_detect_subparser(agents_subparsers) -> argparse.ArgumentParser:
|
|
124
|
-
"""
|
|
125
|
-
Add the agents detect subparser for toolchain detection.
|
|
126
|
-
|
|
127
|
-
WHY: Allows users to see what toolchain is detected without making changes,
|
|
128
|
-
useful for debugging and verification.
|
|
129
|
-
|
|
130
|
-
Args:
|
|
131
|
-
agents_subparsers: The agents subparsers object
|
|
132
|
-
|
|
133
|
-
Returns:
|
|
134
|
-
The configured detect subparser
|
|
135
|
-
"""
|
|
136
|
-
detect_parser = agents_subparsers.add_parser(
|
|
137
|
-
"detect",
|
|
138
|
-
help="Detect project toolchain without deploying",
|
|
139
|
-
description="""
|
|
140
|
-
Detect and display project toolchain without making any changes.
|
|
141
|
-
|
|
142
|
-
This command analyzes your project to detect:
|
|
143
|
-
• Programming languages and versions
|
|
144
|
-
• Frameworks and libraries
|
|
145
|
-
• Deployment targets and platforms
|
|
146
|
-
|
|
147
|
-
Useful for debugging toolchain detection and verifying what would be
|
|
148
|
-
detected before running auto-configure.
|
|
149
|
-
""",
|
|
150
|
-
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
151
|
-
epilog="""
|
|
152
|
-
Examples:
|
|
153
|
-
# Detect toolchain in current directory
|
|
154
|
-
claude-mpm agents detect
|
|
155
|
-
|
|
156
|
-
# Detect with verbose output showing evidence
|
|
157
|
-
claude-mpm agents detect --verbose
|
|
158
|
-
|
|
159
|
-
# JSON output for scripting
|
|
160
|
-
claude-mpm agents detect --json
|
|
161
|
-
|
|
162
|
-
# Detect specific project
|
|
163
|
-
claude-mpm agents detect --project-path /path/to/project
|
|
164
|
-
""",
|
|
165
|
-
)
|
|
166
|
-
add_common_arguments(detect_parser)
|
|
167
|
-
|
|
168
|
-
detect_parser.add_argument(
|
|
169
|
-
"--project-path",
|
|
170
|
-
type=Path,
|
|
171
|
-
metavar="PATH",
|
|
172
|
-
help="Project path to analyze (default: current directory)",
|
|
173
|
-
)
|
|
174
|
-
|
|
175
|
-
return detect_parser
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
def add_agents_recommend_subparser(
|
|
179
|
-
agents_subparsers,
|
|
180
|
-
) -> argparse.ArgumentParser:
|
|
181
|
-
"""
|
|
182
|
-
Add the agents recommend subparser for agent recommendations.
|
|
183
|
-
|
|
184
|
-
WHY: Allows users to see what agents would be recommended without deploying,
|
|
185
|
-
useful for reviewing recommendations before committing to deployment.
|
|
186
|
-
|
|
187
|
-
Args:
|
|
188
|
-
agents_subparsers: The agents subparsers object
|
|
189
|
-
|
|
190
|
-
Returns:
|
|
191
|
-
The configured recommend subparser
|
|
192
|
-
"""
|
|
193
|
-
recommend_parser = agents_subparsers.add_parser(
|
|
194
|
-
"recommend",
|
|
195
|
-
help="Show recommended agents without deploying",
|
|
196
|
-
description="""
|
|
197
|
-
Show recommended agents based on project toolchain without deploying.
|
|
198
|
-
|
|
199
|
-
This command analyzes your project toolchain and recommends appropriate
|
|
200
|
-
agents with detailed reasoning for each recommendation. No changes are
|
|
201
|
-
made to your project.
|
|
202
|
-
|
|
203
|
-
Useful for:
|
|
204
|
-
• Reviewing recommendations before deployment
|
|
205
|
-
• Understanding why agents are recommended
|
|
206
|
-
• Adjusting confidence thresholds
|
|
207
|
-
""",
|
|
208
|
-
formatter_class=argparse.RawDescriptionHelpFormatter,
|
|
209
|
-
epilog="""
|
|
210
|
-
Examples:
|
|
211
|
-
# Show recommendations with reasoning
|
|
212
|
-
claude-mpm agents recommend
|
|
213
|
-
|
|
214
|
-
# Require 90% confidence for recommendations
|
|
215
|
-
claude-mpm agents recommend --min-confidence 0.9
|
|
216
|
-
|
|
217
|
-
# JSON output for scripting
|
|
218
|
-
claude-mpm agents recommend --json
|
|
219
|
-
|
|
220
|
-
# Hide detailed reasoning
|
|
221
|
-
claude-mpm agents recommend --no-reasoning
|
|
222
|
-
|
|
223
|
-
# Recommend for specific project
|
|
224
|
-
claude-mpm agents recommend --project-path /path/to/project
|
|
225
|
-
""",
|
|
226
|
-
)
|
|
227
|
-
add_common_arguments(recommend_parser)
|
|
228
|
-
|
|
229
|
-
recommend_parser.add_argument(
|
|
230
|
-
"--project-path",
|
|
231
|
-
type=Path,
|
|
232
|
-
metavar="PATH",
|
|
233
|
-
help="Project path to analyze (default: current directory)",
|
|
234
|
-
)
|
|
235
|
-
|
|
236
|
-
recommend_parser.add_argument(
|
|
237
|
-
"--min-confidence",
|
|
238
|
-
type=float,
|
|
239
|
-
default=0.8,
|
|
240
|
-
metavar="FLOAT",
|
|
241
|
-
help="Minimum confidence threshold for recommendations (0.0-1.0, default: 0.8)",
|
|
242
|
-
)
|
|
243
|
-
|
|
244
|
-
recommend_parser.add_argument(
|
|
245
|
-
"--show-reasoning",
|
|
246
|
-
action="store_true",
|
|
247
|
-
default=True,
|
|
248
|
-
help="Show detailed reasoning for recommendations (default)",
|
|
249
|
-
)
|
|
250
|
-
|
|
251
|
-
recommend_parser.add_argument(
|
|
252
|
-
"--no-reasoning",
|
|
253
|
-
dest="show_reasoning",
|
|
254
|
-
action="store_false",
|
|
255
|
-
help="Hide detailed reasoning for recommendations",
|
|
256
|
-
)
|
|
257
|
-
|
|
258
|
-
return recommend_parser
|