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.

Files changed (103) hide show
  1. claude_mpm/VERSION +1 -1
  2. claude_mpm/agents/BASE_AGENT.md +164 -0
  3. claude_mpm/agents/BASE_ENGINEER.md +658 -0
  4. claude_mpm/agents/CLAUDE_MPM_TEACHER_OUTPUT_STYLE.md +1 -1
  5. claude_mpm/agents/MEMORY.md +1 -1
  6. claude_mpm/agents/PM_INSTRUCTIONS.md +363 -817
  7. claude_mpm/agents/WORKFLOW.md +5 -254
  8. claude_mpm/agents/agent_loader.py +1 -1
  9. claude_mpm/agents/base_agent.json +31 -0
  10. claude_mpm/cli/chrome_devtools_installer.py +175 -0
  11. claude_mpm/cli/commands/agent_state_manager.py +10 -10
  12. claude_mpm/cli/commands/agents.py +9 -40
  13. claude_mpm/cli/commands/auto_configure.py +4 -4
  14. claude_mpm/cli/commands/configure.py +1 -1
  15. claude_mpm/cli/commands/postmortem.py +1 -1
  16. claude_mpm/cli/commands/skills.py +193 -187
  17. claude_mpm/cli/interactive/agent_wizard.py +2 -2
  18. claude_mpm/cli/parsers/agents_parser.py +0 -9
  19. claude_mpm/cli/parsers/auto_configure_parser.py +0 -138
  20. claude_mpm/cli/startup.py +330 -78
  21. claude_mpm/commands/mpm-config.md +1 -2
  22. claude_mpm/commands/mpm-help.md +14 -95
  23. claude_mpm/commands/mpm-organize.md +350 -153
  24. claude_mpm/core/config.py +2 -4
  25. claude_mpm/core/framework/loaders/agent_loader.py +1 -1
  26. claude_mpm/core/framework/loaders/instruction_loader.py +52 -11
  27. claude_mpm/core/unified_agent_registry.py +1 -1
  28. claude_mpm/dashboard/static/svelte-build/_app/env.js +1 -0
  29. claude_mpm/dashboard/static/svelte-build/_app/immutable/assets/0.B_FtCwCQ.css +1 -0
  30. claude_mpm/dashboard/static/svelte-build/_app/immutable/assets/2.Cl_eSA4x.css +1 -0
  31. claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/BgChzWQ1.js +1 -0
  32. claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/CIXEwuWe.js +1 -0
  33. claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/CWc5urbQ.js +1 -0
  34. claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/DMkZpdF2.js +2 -0
  35. claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/DjhvlsAc.js +1 -0
  36. claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/N4qtv3Hx.js +2 -0
  37. claude_mpm/dashboard/static/svelte-build/_app/immutable/chunks/uj46x2Wr.js +1 -0
  38. claude_mpm/dashboard/static/svelte-build/_app/immutable/entry/app.DTL5mJO-.js +2 -0
  39. claude_mpm/dashboard/static/svelte-build/_app/immutable/entry/start.DzuEhzqh.js +1 -0
  40. claude_mpm/dashboard/static/svelte-build/_app/immutable/nodes/0.CAGBuiOw.js +1 -0
  41. claude_mpm/dashboard/static/svelte-build/_app/immutable/nodes/1.DFLC8jdE.js +1 -0
  42. claude_mpm/dashboard/static/svelte-build/_app/immutable/nodes/2.DPvEihJJ.js +10 -0
  43. claude_mpm/dashboard/static/svelte-build/_app/version.json +1 -0
  44. claude_mpm/dashboard/static/svelte-build/favicon.svg +7 -0
  45. claude_mpm/dashboard/static/svelte-build/index.html +36 -0
  46. claude_mpm/hooks/claude_hooks/__pycache__/__init__.cpython-311.pyc +0 -0
  47. claude_mpm/hooks/claude_hooks/__pycache__/correlation_manager.cpython-311.pyc +0 -0
  48. claude_mpm/hooks/claude_hooks/__pycache__/event_handlers.cpython-311.pyc +0 -0
  49. claude_mpm/hooks/claude_hooks/__pycache__/hook_handler.cpython-311.pyc +0 -0
  50. claude_mpm/hooks/claude_hooks/__pycache__/installer.cpython-311.pyc +0 -0
  51. claude_mpm/hooks/claude_hooks/__pycache__/memory_integration.cpython-311.pyc +0 -0
  52. claude_mpm/hooks/claude_hooks/__pycache__/response_tracking.cpython-311.pyc +0 -0
  53. claude_mpm/hooks/claude_hooks/__pycache__/tool_analysis.cpython-311.pyc +0 -0
  54. claude_mpm/hooks/claude_hooks/event_handlers.py +5 -0
  55. claude_mpm/hooks/claude_hooks/hook_handler.py +149 -1
  56. claude_mpm/hooks/claude_hooks/services/__pycache__/__init__.cpython-311.pyc +0 -0
  57. claude_mpm/hooks/claude_hooks/services/__pycache__/connection_manager.cpython-311.pyc +0 -0
  58. claude_mpm/hooks/claude_hooks/services/__pycache__/connection_manager_http.cpython-311.pyc +0 -0
  59. claude_mpm/hooks/claude_hooks/services/__pycache__/duplicate_detector.cpython-311.pyc +0 -0
  60. claude_mpm/hooks/claude_hooks/services/__pycache__/state_manager.cpython-311.pyc +0 -0
  61. claude_mpm/hooks/claude_hooks/services/__pycache__/subagent_processor.cpython-311.pyc +0 -0
  62. claude_mpm/hooks/claude_hooks/services/connection_manager.py +26 -6
  63. claude_mpm/models/git_repository.py +3 -3
  64. claude_mpm/scripts/start_activity_logging.py +0 -0
  65. claude_mpm/services/agents/cache_git_manager.py +6 -6
  66. claude_mpm/services/agents/deployment/agent_deployment.py +7 -7
  67. claude_mpm/services/agents/deployment/agent_discovery_service.py +2 -2
  68. claude_mpm/services/agents/deployment/agent_template_builder.py +2 -2
  69. claude_mpm/services/agents/deployment/agents_directory_resolver.py +2 -2
  70. claude_mpm/services/agents/deployment/multi_source_deployment_service.py +20 -22
  71. claude_mpm/services/agents/deployment/remote_agent_discovery_service.py +55 -53
  72. claude_mpm/services/agents/git_source_manager.py +2 -2
  73. claude_mpm/services/agents/recommender.py +5 -3
  74. claude_mpm/services/agents/single_tier_deployment_service.py +2 -2
  75. claude_mpm/services/agents/sources/git_source_sync_service.py +5 -5
  76. claude_mpm/services/agents/startup_sync.py +22 -2
  77. claude_mpm/services/command_deployment_service.py +10 -0
  78. claude_mpm/services/diagnostics/checks/agent_check.py +2 -2
  79. claude_mpm/services/diagnostics/checks/agent_sources_check.py +1 -1
  80. claude_mpm/services/git/git_operations_service.py +8 -8
  81. claude_mpm/services/monitor/server.py +473 -3
  82. claude_mpm/services/skills/selective_skill_deployer.py +475 -1
  83. claude_mpm/services/skills_deployer.py +62 -6
  84. claude_mpm/services/socketio/dashboard_server.py +1 -0
  85. claude_mpm/services/socketio/event_normalizer.py +37 -6
  86. claude_mpm/services/socketio/server/core.py +262 -123
  87. claude_mpm/utils/agent_dependency_loader.py +14 -2
  88. claude_mpm/utils/agent_filters.py +1 -1
  89. claude_mpm/utils/migration.py +4 -4
  90. claude_mpm/utils/robust_installer.py +47 -3
  91. {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/METADATA +5 -3
  92. {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/RECORD +96 -66
  93. claude_mpm/cli/commands/agents_detect.py +0 -380
  94. claude_mpm/cli/commands/agents_recommend.py +0 -309
  95. claude_mpm/commands/mpm-agents-auto-configure.md +0 -278
  96. claude_mpm/commands/mpm-agents-detect.md +0 -177
  97. claude_mpm/commands/mpm-agents-list.md +0 -131
  98. claude_mpm/commands/mpm-agents-recommend.md +0 -223
  99. {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/WHEEL +0 -0
  100. {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/entry_points.txt +0 -0
  101. {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/licenses/LICENSE +0 -0
  102. {claude_mpm-5.4.14.dist-info → claude_mpm-5.4.36.dist-info}/licenses/LICENSE-FAQ.md +0 -0
  103. {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