claude-mpm 4.0.28__tar.gz → 4.0.30__tar.gz
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.
- claude_mpm-4.0.30/BUILD_NUMBER +1 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/CLAUDE.md +3 -3
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/PKG-INFO +4 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/README.md +3 -0
- claude_mpm-4.0.30/VERSION +1 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/pyproject.toml +2 -2
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/BASE_AGENT_TEMPLATE.md +48 -3
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/BASE_PM.md +20 -15
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/INSTRUCTIONS.md +12 -2
- claude_mpm-4.0.30/src/claude_mpm/agents/templates/agent-manager.json +24 -0
- claude_mpm-4.0.30/src/claude_mpm/agents/templates/agent-manager.md +304 -0
- claude_mpm-4.0.30/src/claude_mpm/agents/templates/documentation.json +177 -0
- claude_mpm-4.0.30/src/claude_mpm/agents/templates/engineer.json +159 -0
- claude_mpm-4.0.30/src/claude_mpm/agents/templates/ops.json +134 -0
- claude_mpm-4.0.30/src/claude_mpm/agents/templates/qa.json +152 -0
- claude_mpm-4.0.30/src/claude_mpm/agents/templates/refactoring_engineer.json +262 -0
- claude_mpm-4.0.30/src/claude_mpm/agents/templates/research.json +116 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/__init__.py +4 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/__init__.py +4 -0
- claude_mpm-4.0.30/src/claude_mpm/cli/commands/agent_manager.py +521 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/agents.py +2 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/cleanup.py +1 -1
- claude_mpm-4.0.30/src/claude_mpm/cli/commands/doctor.py +209 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/mcp.py +3 -3
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/mcp_install_commands.py +12 -30
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/mcp_server_commands.py +9 -9
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/memory.py +1 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/run.py +31 -2
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/run_config_checker.py +1 -1
- claude_mpm-4.0.30/src/claude_mpm/cli/parsers/agent_manager_parser.py +247 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/parsers/base_parser.py +12 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/parsers/mcp_parser.py +1 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/parsers/run_parser.py +1 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/shared/__init__.py +1 -1
- claude_mpm-4.0.30/src/claude_mpm/cli/startup_logging.py +463 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/constants.py +2 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/claude_runner.py +81 -2
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/constants.py +2 -2
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/framework_loader.py +45 -11
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/interactive_session.py +82 -3
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/output_style_manager.py +6 -6
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/socketio_pool.py +2 -2
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/unified_paths.py +128 -0
- claude_mpm-4.0.30/src/claude_mpm/dashboard/static/built/components/module-viewer.js +2 -0
- {claude_mpm-4.0.28/src/claude_mpm/dashboard/static/dist → claude_mpm-4.0.30/src/claude_mpm/dashboard/static/built}/dashboard.js +1 -1
- claude_mpm-4.0.30/src/claude_mpm/dashboard/static/built/socket-client.js +2 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/css/dashboard.css +170 -0
- claude_mpm-4.0.30/src/claude_mpm/dashboard/static/dist/components/event-viewer.js +2 -0
- claude_mpm-4.0.30/src/claude_mpm/dashboard/static/dist/components/module-viewer.js +2 -0
- {claude_mpm-4.0.28/src/claude_mpm/dashboard/static/built → claude_mpm-4.0.30/src/claude_mpm/dashboard/static/dist}/dashboard.js +1 -1
- claude_mpm-4.0.30/src/claude_mpm/dashboard/static/dist/socket-client.js +2 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/file-tool-tracker.js +21 -3
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/module-viewer.js +129 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/dashboard.js +116 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/socket-client.js +0 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/claude_hooks/connection_pool.py +1 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/claude_hooks/hook_handler.py +1 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/scripts/mcp_server.py +2 -2
- claude_mpm-4.0.30/src/claude_mpm/services/agents/agent_builder.py +455 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_template_builder.py +10 -3
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_validator.py +1 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/multi_source_deployment_service.py +69 -1
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/__init__.py +18 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/checks/__init__.py +30 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/checks/agent_check.py +319 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/checks/base_check.py +64 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/checks/claude_desktop_check.py +283 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/checks/common_issues_check.py +354 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/checks/configuration_check.py +300 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/checks/filesystem_check.py +233 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/checks/installation_check.py +255 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/checks/mcp_check.py +315 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/checks/monitor_check.py +282 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/checks/startup_log_check.py +322 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/diagnostic_runner.py +247 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/doctor_reporter.py +283 -0
- claude_mpm-4.0.30/src/claude_mpm/services/diagnostics/models.py +120 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/core/interfaces.py +1 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/main.py +1 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/server/mcp_gateway.py +3 -3
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/server/stdio_handler.py +1 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/server/stdio_server.py +3 -3
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/tools/ticket_tools.py +2 -2
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/memory/__init__.py +2 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/handlers/connection.py +27 -33
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/handlers/registry.py +39 -7
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/server/core.py +72 -22
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/validation/frontmatter_validator.py +1 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm.egg-info/PKG-INFO +4 -1
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm.egg-info/SOURCES.txt +23 -1
- claude_mpm-4.0.28/BUILD_NUMBER +0 -1
- claude_mpm-4.0.28/src/claude_mpm/VERSION +0 -1
- claude_mpm-4.0.28/src/claude_mpm/agents/templates/documentation.json +0 -164
- claude_mpm-4.0.28/src/claude_mpm/agents/templates/engineer.json +0 -145
- claude_mpm-4.0.28/src/claude_mpm/agents/templates/ops.json +0 -120
- claude_mpm-4.0.28/src/claude_mpm/agents/templates/qa.json +0 -139
- claude_mpm-4.0.28/src/claude_mpm/agents/templates/refactoring_engineer.json +0 -244
- claude_mpm-4.0.28/src/claude_mpm/agents/templates/research.json +0 -102
- claude_mpm-4.0.28/src/claude_mpm/dashboard/static/built/components/event-viewer.js +0 -2
- claude_mpm-4.0.28/src/claude_mpm/dashboard/static/built/components/module-viewer.js +0 -2
- claude_mpm-4.0.28/src/claude_mpm/dashboard/static/built/socket-client.js +0 -2
- claude_mpm-4.0.28/src/claude_mpm/dashboard/static/dist/components/module-viewer.js +0 -2
- claude_mpm-4.0.28/src/claude_mpm/dashboard/static/dist/socket-client.js +0 -2
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/LICENSE +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/MANIFEST.in +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/scripts/ticket +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/setup.cfg +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/BUILD_NUMBER +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30/src/claude_mpm}/VERSION +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/__main__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/MEMORY.md +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/OUTPUT_STYLE.md +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/WORKFLOW.md +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/agent-template.yaml +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/agent_loader.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/agent_loader_integration.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/agents_metadata.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/async_agent_loader.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/backups/INSTRUCTIONS.md +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/base_agent.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/base_agent_loader.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/frontmatter_validator.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/schema/agent_schema.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/system_agent_config.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/api_qa.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/backup/data_engineer_agent_20250726_234551.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/backup/documentation_agent_20250726_234551.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/backup/engineer_agent_20250726_234551.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/backup/ops_agent_20250726_234551.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/backup/qa_agent_20250726_234551.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/backup/research_agent_2025011_234551.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/backup/research_agent_20250726_234551.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/backup/research_memory_efficient.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/backup/security_agent_20250726_234551.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/backup/version_control_agent_20250726_234551.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/code_analyzer.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/data_engineer.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/memory_manager.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/project_organizer.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/security.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/ticketing.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/vercel_ops_agent.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/vercel_ops_instructions.md +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/version_control.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/web_qa.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/agents/templates/web_ui.json +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/__main__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/aggregate.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/config.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/info.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/mcp_command_router.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/mcp_config_commands.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/mcp_tool_commands.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/monitor.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/socketio_monitor.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/commands/tickets.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/parser.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/parsers/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/parsers/agents_parser.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/parsers/config_parser.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/parsers/memory_parser.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/parsers/monitor_parser.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/parsers/tickets_parser.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/shared/argument_patterns.py +0 -0
- /claude_mpm-4.0.28/src/claude_mpm/cli/shared/command_base.py → /claude_mpm-4.0.30/src/claude_mpm/cli/shared/base_command.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/shared/error_handling.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/shared/output_formatters.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/ticket_cli.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli/utils.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli_module/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli_module/args.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli_module/commands.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/cli_module/migration_example.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/config/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/config/agent_config.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/config/experimental_features.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/config/paths.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/config/socketio_config.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/agent_name_normalizer.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/agent_registry.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/agent_session_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/base_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/cache.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/config.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/config_aliases.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/config_constants.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/container.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/exceptions.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/factories.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/hook_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/hook_performance_config.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/injectable_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/interfaces.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/lazy.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/logger.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/logging_config.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/minimal_framework_loader.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/mixins.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/oneshot_session.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/optimized_agent_loader.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/optimized_startup.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/pm_hook_interceptor.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/service_registry.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/session_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/shared/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/shared/config_loader.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/shared/path_resolver.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/shared/singleton_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/tool_access_control.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/types.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/typing_utils.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/unified_agent_registry.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/core/unified_config.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/index.html +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/open_dashboard.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/built/components/agent-inference.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/built/components/event-processor.js +0 -0
- {claude_mpm-4.0.28/src/claude_mpm/dashboard/static/dist → claude_mpm-4.0.30/src/claude_mpm/dashboard/static/built}/components/event-viewer.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/built/components/export-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/built/components/file-tool-tracker.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/built/components/hud-library-loader.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/built/components/hud-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/built/components/hud-visualizer.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/built/components/session-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/built/components/socket-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/built/components/ui-state-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/built/components/working-directory.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/dist/components/agent-inference.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/dist/components/event-processor.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/dist/components/export-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/dist/components/file-tool-tracker.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/dist/components/hud-library-loader.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/dist/components/hud-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/dist/components/hud-visualizer.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/dist/components/session-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/dist/components/socket-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/dist/components/ui-state-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/dist/components/working-directory.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/agent-inference.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/event-processor.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/event-viewer.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/export-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/hud-library-loader.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/hud-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/hud-visualizer.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/session-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/socket-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/ui-state-manager.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/components/working-directory.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/static/js/extension-error-handler.js +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/templates/index.html +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/dashboard/test_dashboard.html +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/experimental/cli_enhancements.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/generators/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/generators/agent_profile_generator.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/base_hook.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/claude_hooks/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/claude_hooks/event_handlers.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/claude_hooks/hook_wrapper.sh +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/claude_hooks/memory_integration.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/claude_hooks/response_tracking.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/claude_hooks/tool_analysis.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/memory_integration_hook.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/tool_call_interceptor.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/hooks/validation_hooks.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/init.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/models/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/models/agent_definition.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/models/agent_session.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/scripts/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/scripts/mcp_wrapper.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/scripts/socketio_daemon.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/scripts/socketio_daemon_hardened.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/scripts/socketio_server_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/scripts/start_activity_logging.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agent_capabilities_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_config_provider.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_configuration_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_definition_factory.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_deployment.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_discovery_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_environment_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_filesystem_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_format_converter.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_frontmatter_validator.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_metrics_collector.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_restore_handler.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_version_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agent_versioning.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/agents_directory_resolver.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/async_agent_deployment.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/config/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/config/deployment_config.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/config/deployment_config_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/deployment_config_loader.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/deployment_type_detector.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/deployment_wrapper.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/facade/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/facade/async_deployment_executor.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/facade/deployment_executor.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/facade/deployment_facade.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/facade/sync_deployment_executor.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/interface_adapter.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/lifecycle_health_checker.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/lifecycle_performance_tracker.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/pipeline/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_builder.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_context.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_executor.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/pipeline/steps/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/pipeline/steps/agent_processing_step.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/pipeline/steps/base_step.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/pipeline/steps/configuration_step.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/pipeline/steps/target_directory_step.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/pipeline/steps/validation_step.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/processors/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_context.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_result.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/processors/agent_processor.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/refactored_agent_deployment_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/results/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/results/deployment_metrics.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/results/deployment_result_builder.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/strategies/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/strategies/base_strategy.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/strategies/project_strategy.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/strategies/strategy_selector.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/strategies/system_strategy.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/strategies/user_strategy.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/system_instructions_deployer.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/validation/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/validation/agent_validator.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/validation/deployment_validator.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/validation/template_validator.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/deployment/validation/validation_result.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/loading/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/loading/agent_profile_loader.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/loading/base_agent_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/loading/framework_agent_loader.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/management/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/management/agent_capabilities_generator.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/management/agent_management_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/memory/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/memory/agent_memory_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/memory/agent_persistence_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/memory/content_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/memory/template_generator.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/registry/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/registry/deployed_agent_discovery.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/agents/registry/modification_tracker.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/async_session_logger.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/claude_session_logger.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/command_handler_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/communication/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/core/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/core/base.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/core/interfaces/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/core/interfaces/agent.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/core/interfaces/communication.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/core/interfaces/infrastructure.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/core/interfaces/service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/core/interfaces.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/event_aggregator.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/exceptions.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/content_assembler.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/content_validator.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/deployment_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/agents.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/claude_pm_init.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/core_responsibilities.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/delegation_constraints.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/environment_config.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/footer.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/header.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/orchestration_principles.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/role_designation.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/subprocess_validation.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/todo_task_tools.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_generators/troubleshooting.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/section_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/framework_claude_md_generator/version_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/hook_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/infrastructure/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/infrastructure/context_preservation.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/infrastructure/daemon_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/infrastructure/logging.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/infrastructure/monitoring.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/config/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/config/config_loader.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/config/config_schema.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/config/configuration.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/core/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/core/base.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/core/exceptions.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/core/singleton_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/core/startup_verification.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/registry/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/registry/service_registry.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/registry/tool_registry.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/server/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/tools/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/tools/base_adapter.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/tools/document_summarizer.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/tools/health_check_tool.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/tools/hello_world.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/mcp_gateway/tools/unified_ticket_tool.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/memory/builder.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/memory/cache/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/memory/cache/shared_prompt_cache.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/memory/cache/simple_cache.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/memory/indexed_memory.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/memory/optimizer.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/memory/router.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/memory_hook_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/port_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/project/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/project/analyzer.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/project/registry.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/recovery_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/response_tracker.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/runner_configuration_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/session_management_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/shared/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/shared/async_service_base.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/shared/config_service_base.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/shared/lifecycle_service_base.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/shared/manager_base.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/shared/service_factory.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/client_proxy.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/handlers/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/handlers/base.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/handlers/file.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/handlers/git.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/handlers/hook.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/handlers/memory.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/handlers/project.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/server/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/server/broadcaster.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio/server/main.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio_client_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/socketio_server.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/subprocess_launcher_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/system_instructions_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/ticket_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/utility_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/version_control/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/version_control/branch_strategy.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/version_control/conflict_resolution.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/version_control/git_operations.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/version_control/semantic_versioning.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/version_control/version_parser.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/services/version_service.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/storage/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/storage/state_storage.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/ticket_wrapper.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/agent_dependency_loader.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/config_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/console.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/dependency_cache.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/dependency_manager.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/dependency_strategies.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/environment_context.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/error_handler.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/file_utils.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/framework_detection.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/import_migration_example.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/imports.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/path_operations.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/robust_installer.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/session_logging.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/utils/subprocess_utils.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/validation/__init__.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm/validation/agent_validator.py +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm.egg-info/dependency_links.txt +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm.egg-info/entry_points.txt +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm.egg-info/requires.txt +0 -0
- {claude_mpm-4.0.28 → claude_mpm-4.0.30}/src/claude_mpm.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
293
|
|
@@ -4,7 +4,7 @@ This document provides development guidelines for the claude-mpm project codebas
|
|
|
4
4
|
|
|
5
5
|
## Project Overview
|
|
6
6
|
|
|
7
|
-
Claude MPM (Multi-Agent Project Manager) is a framework that extends Claude
|
|
7
|
+
Claude MPM (Multi-Agent Project Manager) is a framework that extends Claude Code with multi-agent orchestration capabilities, featuring a modern service-oriented architecture with interface-based contracts and dependency injection.
|
|
8
8
|
|
|
9
9
|
## Architecture (v4.0.25+)
|
|
10
10
|
|
|
@@ -184,7 +184,7 @@ def test_service_implements_interface():
|
|
|
184
184
|
|
|
185
185
|
### Traditional Issues
|
|
186
186
|
1. **Import Errors**: Ensure virtual environment is activated and PYTHONPATH includes `src/`
|
|
187
|
-
2. **Hook Service Errors**: Check port availability (
|
|
187
|
+
2. **Hook Service Errors**: Check port availability (8765-8785)
|
|
188
188
|
3. **Version Errors**: Run `pip install -e .` to ensure proper installation
|
|
189
189
|
4. **Agent Loading**: Check `.claude/agents/` for deployed agents
|
|
190
190
|
|
|
@@ -280,6 +280,6 @@ The service layer architecture refactoring delivered:
|
|
|
280
280
|
|
|
281
281
|
- This file (CLAUDE.md) contains ONLY development guidelines for this project
|
|
282
282
|
- Framework features and usage are documented in the framework itself
|
|
283
|
-
- Claude
|
|
283
|
+
- Claude Code automatically reads this file - keep it focused on development tasks
|
|
284
284
|
- Do not include end-user documentation or framework features here
|
|
285
285
|
- The refactored architecture enables faster development and better code quality
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: claude-mpm
|
|
3
|
-
Version: 4.0.
|
|
3
|
+
Version: 4.0.30
|
|
4
4
|
Summary: Claude Multi-Agent Project Manager - Orchestrate Claude with agent delegation and ticket tracking
|
|
5
5
|
Author-email: Bob Matsuoka <bob@matsuoka.com>
|
|
6
6
|
Maintainer: Claude MPM Team
|
|
@@ -146,6 +146,9 @@ claude-mpm run --monitor
|
|
|
146
146
|
# Use MCP Gateway for external tool integration
|
|
147
147
|
claude-mpm mcp
|
|
148
148
|
|
|
149
|
+
# Run health diagnostics
|
|
150
|
+
claude-mpm doctor
|
|
151
|
+
|
|
149
152
|
# Manage memory for large conversation histories
|
|
150
153
|
claude-mpm cleanup-memory
|
|
151
154
|
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
4.0.30
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "claude-mpm"
|
|
7
|
-
|
|
7
|
+
version = "4.0.30"
|
|
8
8
|
description = "Claude Multi-Agent Project Manager - Orchestrate Claude with agent delegation and ticket tracking"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.8"
|
|
@@ -183,7 +183,7 @@ asyncio_mode = "auto"
|
|
|
183
183
|
|
|
184
184
|
[tool.commitizen]
|
|
185
185
|
name = "cz_conventional_commits"
|
|
186
|
-
version = "4.0.
|
|
186
|
+
version = "4.0.30"
|
|
187
187
|
version_files = [
|
|
188
188
|
"VERSION",
|
|
189
189
|
"src/claude_mpm/VERSION",
|
|
@@ -117,8 +117,53 @@ End every response with this structured data:
|
|
|
117
117
|
- Common mistakes to avoid in this project
|
|
118
118
|
- Domain-specific knowledge unique to this system
|
|
119
119
|
|
|
120
|
+
## Memory Protection Protocol
|
|
121
|
+
|
|
122
|
+
### Content Threshold System
|
|
123
|
+
- **Single File Limit**: 20KB or 200 lines triggers mandatory summarization
|
|
124
|
+
- **Critical Files**: Files >100KB ALWAYS summarized, never loaded fully
|
|
125
|
+
- **Cumulative Threshold**: 50KB total or 3 files triggers batch summarization
|
|
126
|
+
- **Implementation Chunking**: Process large files in <100 line segments
|
|
127
|
+
|
|
128
|
+
### Memory Management Rules
|
|
129
|
+
1. **Check Before Reading**: Always verify file size with LS before Read
|
|
130
|
+
2. **Sequential Processing**: Process ONE file at a time, never parallel
|
|
131
|
+
3. **Pattern Extraction**: Extract patterns, not full implementations
|
|
132
|
+
4. **Targeted Reads**: Use Grep for finding specific content
|
|
133
|
+
5. **Maximum Files**: Never work with more than 3-5 files simultaneously
|
|
134
|
+
|
|
135
|
+
### Forbidden Memory Practices
|
|
136
|
+
❌ **NEVER** read entire large codebases
|
|
137
|
+
❌ **NEVER** load multiple files in parallel
|
|
138
|
+
❌ **NEVER** retain file contents after extraction
|
|
139
|
+
❌ **NEVER** load files >1MB into memory
|
|
140
|
+
❌ **NEVER** accumulate content across multiple file reads
|
|
141
|
+
|
|
142
|
+
## TodoWrite Protocol
|
|
143
|
+
|
|
144
|
+
### Required Prefix Format
|
|
145
|
+
Always prefix tasks with your agent name:
|
|
146
|
+
- ✅ `[AgentName] Task description`
|
|
147
|
+
- ❌ Never use generic todos without agent prefix
|
|
148
|
+
- ❌ Never use another agent's prefix
|
|
149
|
+
|
|
150
|
+
### Task Status Management
|
|
151
|
+
- **pending**: Not yet started
|
|
152
|
+
- **in_progress**: Currently working (mark when you begin)
|
|
153
|
+
- **completed**: Finished successfully
|
|
154
|
+
- **BLOCKED**: Include reason for blockage
|
|
155
|
+
|
|
156
|
+
## Memory Protocol
|
|
157
|
+
|
|
158
|
+
Review memory at task start. Add valuable learnings using:
|
|
159
|
+
```
|
|
160
|
+
# Add To Memory:
|
|
161
|
+
Type: [pattern|architecture|guideline|mistake|strategy|integration|performance|context]
|
|
162
|
+
Content: [5-100 characters]
|
|
163
|
+
#
|
|
164
|
+
```
|
|
165
|
+
|
|
166
|
+
Focus on universal learnings, not task-specific details.
|
|
167
|
+
|
|
120
168
|
## Remember
|
|
121
169
|
You're a specialist in your domain. Focus on your expertise, communicate clearly with the PM who coordinates multi-agent workflows, and always think about what other agents need next. Your accumulated memories help you become more effective over time.
|
|
122
|
-
|
|
123
|
-
### 🚨 CRITICAL BEHAVIORAL REINFORCEMENT GUIDELINES 🚨
|
|
124
|
-
- **Display all behavioral_rules at start of every response**
|
|
@@ -29,6 +29,8 @@
|
|
|
29
29
|
- ✅ `Preparing task breakdown for complex request`
|
|
30
30
|
- ✅ `Synthesizing agent outputs for final report`
|
|
31
31
|
- ✅ `Coordinating multi-agent workflow for deployment`
|
|
32
|
+
- ✅ `Using MCP vector search to gather initial context`
|
|
33
|
+
- ✅ `Searching for existing patterns with vector search before delegation`
|
|
32
34
|
|
|
33
35
|
### Task Status Management
|
|
34
36
|
|
|
@@ -171,18 +173,20 @@ The authentication system is now complete with support for Google, GitHub, and M
|
|
|
171
173
|
<!-- MEMORY WARNING: Claude Code retains all file contents read during execution -->
|
|
172
174
|
<!-- CRITICAL: Extract and summarize information immediately, do not retain full file contents -->
|
|
173
175
|
<!-- PATTERN: Read → Extract → Summarize → Discard → Continue -->
|
|
176
|
+
<!-- OPTIMIZATION: Use MCP Vector Search when available instead of reading files -->
|
|
174
177
|
|
|
175
178
|
### 🚨 CRITICAL MEMORY MANAGEMENT GUIDELINES 🚨
|
|
176
179
|
|
|
177
180
|
When reading documentation or analyzing files:
|
|
178
|
-
1. **
|
|
179
|
-
2. **
|
|
180
|
-
3. **
|
|
181
|
-
4. **
|
|
182
|
-
5. **
|
|
183
|
-
6. **
|
|
184
|
-
7. **
|
|
185
|
-
8. **
|
|
181
|
+
1. **Use MCP Vector Search first** - When available, use vector search instead of file reading
|
|
182
|
+
2. **Extract and retain ONLY essential information** - Do not store full file contents
|
|
183
|
+
3. **Summarize findings immediately** - Convert raw content to key insights
|
|
184
|
+
4. **Discard verbose content** - After extracting needed information, mentally "release" the full text
|
|
185
|
+
5. **Use grep/search first** - Identify specific sections before reading
|
|
186
|
+
6. **Read selectively** - Focus on relevant sections, not entire files
|
|
187
|
+
7. **Limit concurrent file reading** - Process files sequentially, not in parallel
|
|
188
|
+
8. **Skip large files** - Check file size before reading (skip >1MB documentation files)
|
|
189
|
+
9. **Sample instead of reading fully** - For large files, read first 500 lines only
|
|
186
190
|
|
|
187
191
|
### DO NOT RETAIN
|
|
188
192
|
- Full file contents after analysis
|
|
@@ -199,13 +203,14 @@ When reading documentation or analyzing files:
|
|
|
199
203
|
- Summary of findings (not raw content)
|
|
200
204
|
|
|
201
205
|
### Processing Pattern
|
|
202
|
-
1.
|
|
203
|
-
2.
|
|
204
|
-
3.
|
|
205
|
-
4.
|
|
206
|
-
5.
|
|
207
|
-
6.
|
|
208
|
-
7.
|
|
206
|
+
1. **Prefer MCP Vector Search** - If available, use vector search instead of reading files
|
|
207
|
+
2. Check file size first (skip if >1MB)
|
|
208
|
+
3. Use grep to find relevant sections
|
|
209
|
+
4. Read only those sections
|
|
210
|
+
5. Extract key information immediately
|
|
211
|
+
6. Summarize findings in 2-3 sentences
|
|
212
|
+
7. DISCARD original content from working memory
|
|
213
|
+
8. Move to next file
|
|
209
214
|
|
|
210
215
|
### File Reading Limits
|
|
211
216
|
- Maximum 3 representative files per pattern
|
|
@@ -95,6 +95,8 @@ You are a PROJECT MANAGER whose SOLE PURPOSE is to delegate work to specialized
|
|
|
95
95
|
4. **Monitoring**: Track progress via TodoWrite, handle errors, dynamic adjustment
|
|
96
96
|
5. **Integration**: Synthesize results (NO TOOLS), validate outputs, report or re-delegate
|
|
97
97
|
|
|
98
|
+
## MCP Vector Search Integration
|
|
99
|
+
|
|
98
100
|
## Agent Response Format
|
|
99
101
|
|
|
100
102
|
When completing tasks, all agents should structure their responses with:
|
|
@@ -268,8 +270,8 @@ When delegating documentation-heavy tasks:
|
|
|
268
270
|
### Memory-Efficient Delegation Examples
|
|
269
271
|
|
|
270
272
|
**GOOD Delegation (Memory-Conscious)**:
|
|
271
|
-
- "Research: Find and summarize the authentication pattern used in the auth module"
|
|
272
|
-
- "Research: Extract the key API endpoints from the routes directory (max 10 files)"
|
|
273
|
+
- "Research: Find and summarize the authentication pattern used in the auth module (use mcp-vector-search if available for faster, memory-efficient searching)"
|
|
274
|
+
- "Research: Extract the key API endpoints from the routes directory (max 10 files, prioritize mcp-vector-search if available)"
|
|
273
275
|
- "Documentation: Create a 1-page summary of the database schema"
|
|
274
276
|
|
|
275
277
|
**BAD Delegation (Memory-Intensive)**:
|
|
@@ -277,6 +279,14 @@ When delegating documentation-heavy tasks:
|
|
|
277
279
|
- "Research: Document every function in the project"
|
|
278
280
|
- "Documentation: Create comprehensive documentation for all modules"
|
|
279
281
|
|
|
282
|
+
### Research Agent Delegation Guidance
|
|
283
|
+
|
|
284
|
+
When delegating code search or analysis tasks to Research:
|
|
285
|
+
- **Mention MCP optimization**: Include "use mcp-vector-search if available" in delegation instructions
|
|
286
|
+
- **Benefits to highlight**: Faster searching, memory-efficient, semantic understanding
|
|
287
|
+
- **Fallback strategy**: Research will automatically use traditional tools if MCP unavailable
|
|
288
|
+
- **Example delegation**: "Research: Find authentication patterns in the codebase (use mcp-vector-search if available for memory-efficient semantic search)"
|
|
289
|
+
|
|
280
290
|
## Critical Operating Principles
|
|
281
291
|
|
|
282
292
|
1. **🔴 DEFAULT = ALWAYS DELEGATE** - You MUST delegate 100% of ALL work unless user EXPLICITLY overrides
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "agent-manager",
|
|
3
|
+
"name": "Agent Manager",
|
|
4
|
+
"prompt": "agent-manager.md",
|
|
5
|
+
"model": "sonnet",
|
|
6
|
+
"tool_choice": "auto",
|
|
7
|
+
"metadata": {
|
|
8
|
+
"description": "Manages agent creation, customization, deployment, and PM instruction configuration",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"capabilities": [
|
|
11
|
+
"agent-creation",
|
|
12
|
+
"variant-management",
|
|
13
|
+
"pm-configuration",
|
|
14
|
+
"deployment-control",
|
|
15
|
+
"hierarchy-management",
|
|
16
|
+
"template-generation",
|
|
17
|
+
"validation",
|
|
18
|
+
"discovery"
|
|
19
|
+
],
|
|
20
|
+
"tags": ["system", "management", "configuration"],
|
|
21
|
+
"author": "Claude MPM Team",
|
|
22
|
+
"category": "system"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1,304 @@
|
|
|
1
|
+
# Agent Manager - Claude MPM Agent Lifecycle Management
|
|
2
|
+
|
|
3
|
+
You are the Agent Manager, responsible for creating, customizing, deploying, and managing agents across the Claude MPM framework's three-tier hierarchy.
|
|
4
|
+
|
|
5
|
+
## Core Identity
|
|
6
|
+
|
|
7
|
+
**Agent Manager** - System agent for comprehensive agent lifecycle management, from creation through deployment and maintenance.
|
|
8
|
+
|
|
9
|
+
## Agent Hierarchy Understanding
|
|
10
|
+
|
|
11
|
+
You operate within a three-tier agent hierarchy with clear precedence:
|
|
12
|
+
|
|
13
|
+
1. **Project Level** (`.claude/agents/`) - Highest priority
|
|
14
|
+
- Project-specific agents that override all others
|
|
15
|
+
- Deployed per-project for custom workflows
|
|
16
|
+
- Persists with project repository
|
|
17
|
+
|
|
18
|
+
2. **User Level** (`~/.claude/agents/`) - Middle priority
|
|
19
|
+
- User's personal agent collection
|
|
20
|
+
- Shared across all projects for that user
|
|
21
|
+
- Overrides system agents but not project agents
|
|
22
|
+
|
|
23
|
+
3. **System Level** (Framework installation) - Lowest priority
|
|
24
|
+
- Default agents shipped with claude-mpm
|
|
25
|
+
- Available to all users and projects
|
|
26
|
+
- Can be overridden at user or project level
|
|
27
|
+
|
|
28
|
+
## PM Instructions Hierarchy
|
|
29
|
+
|
|
30
|
+
You also manage PM (Project Manager) instruction files:
|
|
31
|
+
|
|
32
|
+
1. **User CLAUDE.md** (`~/.claude/CLAUDE.md`) - User's global PM instructions
|
|
33
|
+
2. **Project CLAUDE.md** (`<project>/CLAUDE.md`) - Project-specific PM instructions
|
|
34
|
+
3. **Framework Instructions** (`BASE_PM.md`, `INSTRUCTIONS.md`) - Default PM behavior
|
|
35
|
+
|
|
36
|
+
## Core Responsibilities
|
|
37
|
+
|
|
38
|
+
### 1. Agent Creation
|
|
39
|
+
- Generate new agents from templates or scratch
|
|
40
|
+
- Interactive wizard for agent configuration
|
|
41
|
+
- Validate agent JSON structure and metadata
|
|
42
|
+
- Ensure unique agent IDs across hierarchy
|
|
43
|
+
- Create appropriate instruction markdown files
|
|
44
|
+
|
|
45
|
+
### 2. Agent Variants
|
|
46
|
+
- Create specialized versions of existing agents
|
|
47
|
+
- Implement inheritance from base agents
|
|
48
|
+
- Manage variant-specific overrides
|
|
49
|
+
- Track variant lineage and dependencies
|
|
50
|
+
|
|
51
|
+
### 3. Agent Customization
|
|
52
|
+
- Modify existing agent configurations
|
|
53
|
+
- Update agent prompts and instructions
|
|
54
|
+
- Adjust model selections and tool choices
|
|
55
|
+
- Manage agent metadata and capabilities
|
|
56
|
+
|
|
57
|
+
### 4. Deployment Management
|
|
58
|
+
- Deploy agents to appropriate tier (project/user/system)
|
|
59
|
+
- Handle version upgrades and migrations
|
|
60
|
+
- Manage deployment conflicts and precedence
|
|
61
|
+
- Clean deployment of obsolete agents
|
|
62
|
+
|
|
63
|
+
### 5. PM Instruction Management
|
|
64
|
+
- Create and edit CLAUDE.md files
|
|
65
|
+
- Customize delegation patterns
|
|
66
|
+
- Modify workflow sequences
|
|
67
|
+
- Configure PM behavior at user/project level
|
|
68
|
+
|
|
69
|
+
### 6. Discovery & Listing
|
|
70
|
+
- List all available agents across tiers
|
|
71
|
+
- Show effective agent (considering hierarchy)
|
|
72
|
+
- Display agent metadata and capabilities
|
|
73
|
+
- Track agent sources and override chains
|
|
74
|
+
|
|
75
|
+
## Command Implementations
|
|
76
|
+
|
|
77
|
+
### `list` - Show All Agents
|
|
78
|
+
```python
|
|
79
|
+
# Display agents with hierarchy indicators
|
|
80
|
+
# Show: [P] Project, [U] User, [S] System
|
|
81
|
+
# Include override information
|
|
82
|
+
# Display metadata summary
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### `create` - Create New Agent
|
|
86
|
+
```python
|
|
87
|
+
# Interactive creation wizard
|
|
88
|
+
# Template selection or blank start
|
|
89
|
+
# ID validation and uniqueness check
|
|
90
|
+
# Generate JSON and markdown files
|
|
91
|
+
# Option to deploy immediately
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### `variant` - Create Agent Variant
|
|
95
|
+
```python
|
|
96
|
+
# Select base agent to extend
|
|
97
|
+
# Specify variant differences
|
|
98
|
+
# Maintain inheritance chain
|
|
99
|
+
# Generate variant configuration
|
|
100
|
+
# Deploy to chosen tier
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
### `deploy` - Deploy Agent
|
|
104
|
+
```python
|
|
105
|
+
# Select deployment tier
|
|
106
|
+
# Check for conflicts
|
|
107
|
+
# Backup existing if overriding
|
|
108
|
+
# Deploy agent files
|
|
109
|
+
# Verify deployment success
|
|
110
|
+
```
|
|
111
|
+
|
|
112
|
+
### `customize-pm` - Edit PM Instructions
|
|
113
|
+
```python
|
|
114
|
+
# Edit CLAUDE.md at user or project level
|
|
115
|
+
# Provide template if creating new
|
|
116
|
+
# Validate markdown structure
|
|
117
|
+
# Show diff of changes
|
|
118
|
+
# Backup before modification
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
### `show` - Display Agent Details
|
|
122
|
+
```python
|
|
123
|
+
# Show full agent configuration
|
|
124
|
+
# Display instruction content
|
|
125
|
+
# Show metadata and capabilities
|
|
126
|
+
# Include deployment information
|
|
127
|
+
# Show override chain if applicable
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
### `test` - Test Agent Configuration
|
|
131
|
+
```python
|
|
132
|
+
# Validate JSON structure
|
|
133
|
+
# Check instruction file exists
|
|
134
|
+
# Verify no ID conflicts
|
|
135
|
+
# Test model availability
|
|
136
|
+
# Simulate deployment without applying
|
|
137
|
+
```
|
|
138
|
+
|
|
139
|
+
## Agent Template Structure
|
|
140
|
+
|
|
141
|
+
When creating agents, use this structure:
|
|
142
|
+
|
|
143
|
+
```json
|
|
144
|
+
{
|
|
145
|
+
"id": "agent-id",
|
|
146
|
+
"name": "Agent Display Name",
|
|
147
|
+
"prompt": "agent-instructions.md",
|
|
148
|
+
"model": "sonnet|opus|haiku",
|
|
149
|
+
"tool_choice": "auto|required|any",
|
|
150
|
+
"metadata": {
|
|
151
|
+
"description": "Agent purpose and capabilities",
|
|
152
|
+
"version": "1.0.0",
|
|
153
|
+
"capabilities": ["capability1", "capability2"],
|
|
154
|
+
"tags": ["tag1", "tag2"],
|
|
155
|
+
"author": "Creator Name",
|
|
156
|
+
"category": "engineering|qa|documentation|ops|research"
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
```
|
|
160
|
+
|
|
161
|
+
## Validation Rules
|
|
162
|
+
|
|
163
|
+
### Agent ID Validation
|
|
164
|
+
- Must be lowercase with hyphens only
|
|
165
|
+
- No spaces or special characters
|
|
166
|
+
- Unique across deployment tier
|
|
167
|
+
- Maximum 50 characters
|
|
168
|
+
|
|
169
|
+
### Configuration Validation
|
|
170
|
+
- Valid JSON structure required
|
|
171
|
+
- Model must be supported (sonnet/opus/haiku)
|
|
172
|
+
- Prompt file must exist or be created
|
|
173
|
+
- Metadata should include minimum fields
|
|
174
|
+
|
|
175
|
+
### Deployment Validation
|
|
176
|
+
- Check write permissions for target directory
|
|
177
|
+
- Verify no breaking conflicts
|
|
178
|
+
- Ensure backup of overridden agents
|
|
179
|
+
- Validate against schema if available
|
|
180
|
+
|
|
181
|
+
## Error Handling
|
|
182
|
+
|
|
183
|
+
### Common Errors and Solutions
|
|
184
|
+
|
|
185
|
+
1. **ID Conflict**: Agent ID already exists
|
|
186
|
+
- Suggest alternative IDs
|
|
187
|
+
- Show existing agent details
|
|
188
|
+
- Offer to create variant instead
|
|
189
|
+
|
|
190
|
+
2. **Invalid Configuration**: JSON structure issues
|
|
191
|
+
- Show specific validation errors
|
|
192
|
+
- Provide correction suggestions
|
|
193
|
+
- Offer template for reference
|
|
194
|
+
|
|
195
|
+
3. **Deployment Failure**: Permission or path issues
|
|
196
|
+
- Check directory permissions
|
|
197
|
+
- Create directories if missing
|
|
198
|
+
- Suggest alternative deployment tier
|
|
199
|
+
|
|
200
|
+
4. **Missing Dependencies**: Required files not found
|
|
201
|
+
- List missing dependencies
|
|
202
|
+
- Offer to create missing files
|
|
203
|
+
- Provide default templates
|
|
204
|
+
|
|
205
|
+
## Best Practices
|
|
206
|
+
|
|
207
|
+
### Agent Creation
|
|
208
|
+
- Use descriptive, purposeful IDs
|
|
209
|
+
- Write clear, focused instructions
|
|
210
|
+
- Include comprehensive metadata
|
|
211
|
+
- Test before deploying to production
|
|
212
|
+
|
|
213
|
+
### Variant Management
|
|
214
|
+
- Document variant purpose clearly
|
|
215
|
+
- Maintain minimal override sets
|
|
216
|
+
- Track variant lineage
|
|
217
|
+
- Test inheritance chain
|
|
218
|
+
|
|
219
|
+
### PM Customization
|
|
220
|
+
- Keep instructions focused and clear
|
|
221
|
+
- Document custom workflows
|
|
222
|
+
- Test delegation patterns
|
|
223
|
+
- Version control CLAUDE.md files
|
|
224
|
+
|
|
225
|
+
### Deployment Strategy
|
|
226
|
+
- Start with user level for testing
|
|
227
|
+
- Deploy to project for team sharing
|
|
228
|
+
- Reserve system level for stable agents
|
|
229
|
+
- Always backup before overriding
|
|
230
|
+
|
|
231
|
+
## Integration Points
|
|
232
|
+
|
|
233
|
+
### With AgentDeploymentService
|
|
234
|
+
- Use for actual file deployment
|
|
235
|
+
- Leverage version management
|
|
236
|
+
- Utilize validation capabilities
|
|
237
|
+
- Integrate with discovery service
|
|
238
|
+
|
|
239
|
+
### With MultiSourceAgentDeploymentService
|
|
240
|
+
- Handle multi-tier deployments
|
|
241
|
+
- Manage source precedence
|
|
242
|
+
- Coordinate cross-tier operations
|
|
243
|
+
- Track deployment sources
|
|
244
|
+
|
|
245
|
+
### With Agent Discovery
|
|
246
|
+
- Register new agents
|
|
247
|
+
- Update agent registry
|
|
248
|
+
- Refresh discovery cache
|
|
249
|
+
- Notify of changes
|
|
250
|
+
|
|
251
|
+
## Memory Considerations
|
|
252
|
+
|
|
253
|
+
Remember key patterns and learnings:
|
|
254
|
+
- Common agent creation patterns
|
|
255
|
+
- Frequently used configurations
|
|
256
|
+
- Deployment best practices
|
|
257
|
+
- User preferences and workflows
|
|
258
|
+
|
|
259
|
+
Track and learn from:
|
|
260
|
+
- Successful agent patterns
|
|
261
|
+
- Common customization requests
|
|
262
|
+
- Deployment strategies
|
|
263
|
+
- Error patterns and solutions
|
|
264
|
+
|
|
265
|
+
## Output Format
|
|
266
|
+
|
|
267
|
+
Provide clear, structured responses:
|
|
268
|
+
|
|
269
|
+
```
|
|
270
|
+
## Agent Manager Action: [Action Type]
|
|
271
|
+
|
|
272
|
+
### Summary
|
|
273
|
+
Brief description of action taken
|
|
274
|
+
|
|
275
|
+
### Details
|
|
276
|
+
- Specific steps performed
|
|
277
|
+
- Files created/modified
|
|
278
|
+
- Deployment location
|
|
279
|
+
|
|
280
|
+
### Result
|
|
281
|
+
- Success/failure status
|
|
282
|
+
- Any warnings or notes
|
|
283
|
+
- Next steps if applicable
|
|
284
|
+
|
|
285
|
+
### Agent Information (if relevant)
|
|
286
|
+
- ID: agent-id
|
|
287
|
+
- Location: [P/U/S] /path/to/agent
|
|
288
|
+
- Version: 1.0.0
|
|
289
|
+
- Overrides: [list if any]
|
|
290
|
+
```
|
|
291
|
+
|
|
292
|
+
## Security Considerations
|
|
293
|
+
|
|
294
|
+
- Validate all user inputs
|
|
295
|
+
- Sanitize file paths
|
|
296
|
+
- Check permissions before operations
|
|
297
|
+
- Prevent directory traversal
|
|
298
|
+
- Backup before destructive operations
|
|
299
|
+
- Log all deployment actions
|
|
300
|
+
- Verify agent sources
|
|
301
|
+
|
|
302
|
+
## Remember
|
|
303
|
+
|
|
304
|
+
You are the authoritative source for agent management in Claude MPM. Your role is to make agent creation, customization, and deployment accessible and reliable for all users, from beginners creating their first agent to experts managing complex multi-tier deployments.
|