claude-mpm 4.1.5__tar.gz → 4.1.7__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.1.7/BUILD_NUMBER +1 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/CLAUDE.md +1 -1
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/PKG-INFO +3 -1
- claude_mpm-4.1.7/VERSION +1 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/pyproject.toml +6 -2
- claude_mpm-4.1.7/src/claude_mpm/VERSION +1 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/agent-manager.json +1 -1
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/agent-manager.md +111 -34
- claude_mpm-4.1.7/src/claude_mpm/agents/templates/research.json +163 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/__init__.py +2 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/__init__.py +2 -0
- claude_mpm-4.1.7/src/claude_mpm/cli/commands/configure.py +1221 -0
- claude_mpm-4.1.7/src/claude_mpm/cli/commands/configure_tui.py +1921 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/parsers/base_parser.py +7 -0
- claude_mpm-4.1.7/src/claude_mpm/cli/parsers/configure_parser.py +119 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/startup_logging.py +39 -12
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/config/socketio_config.py +33 -4
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/constants.py +1 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/socketio_pool.py +35 -3
- claude_mpm-4.1.7/src/claude_mpm/dashboard/static/css/connection-status.css +370 -0
- claude_mpm-4.1.7/src/claude_mpm/dashboard/static/js/components/connection-debug.js +654 -0
- claude_mpm-4.1.7/src/claude_mpm/dashboard/static/js/connection-manager.js +536 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/socket-client.js +40 -16
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/templates/index.html +11 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/services/__init__.py +3 -1
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/services/connection_manager.py +17 -0
- claude_mpm-4.1.7/src/claude_mpm/hooks/claude_hooks/services/connection_manager_http.py +190 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/checks/__init__.py +2 -0
- claude_mpm-4.1.7/src/claude_mpm/services/diagnostics/checks/instructions_check.py +418 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/diagnostic_runner.py +15 -2
- claude_mpm-4.1.7/src/claude_mpm/services/event_bus/direct_relay.py +230 -0
- claude_mpm-4.1.7/src/claude_mpm/services/socketio/handlers/connection_handler.py +330 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/server/broadcaster.py +32 -1
- claude_mpm-4.1.7/src/claude_mpm/services/socketio/server/connection_manager.py +547 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/server/core.py +78 -7
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/server/eventbus_integration.py +20 -9
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/server/main.py +74 -19
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm.egg-info/PKG-INFO +3 -1
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm.egg-info/SOURCES.txt +11 -14
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm.egg-info/requires.txt +2 -0
- claude_mpm-4.1.5/BUILD_NUMBER +0 -1
- claude_mpm-4.1.5/VERSION +0 -1
- claude_mpm-4.1.5/src/claude_mpm/VERSION +0 -1
- claude_mpm-4.1.5/src/claude_mpm/agents/OUTPUT_STYLE.md +0 -73
- claude_mpm-4.1.5/src/claude_mpm/agents/backups/INSTRUCTIONS.md +0 -352
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/OPTIMIZATION_REPORT.md +0 -156
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/backup/data_engineer_agent_20250726_234551.json +0 -79
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/backup/documentation_agent_20250726_234551.json +0 -68
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/backup/engineer_agent_20250726_234551.json +0 -77
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/backup/ops_agent_20250726_234551.json +0 -78
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/backup/qa_agent_20250726_234551.json +0 -67
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/backup/research_agent_2025011_234551.json +0 -88
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/backup/research_agent_20250726_234551.json +0 -72
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/backup/research_memory_efficient.json +0 -88
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/backup/security_agent_20250726_234551.json +0 -78
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/backup/version_control_agent_20250726_234551.json +0 -62
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/research.json +0 -137
- claude_mpm-4.1.5/src/claude_mpm/agents/templates/vercel_ops_instructions.md +0 -582
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/LICENSE +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/MANIFEST.in +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/README.md +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/scripts/ticket +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/setup.cfg +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/BUILD_NUMBER +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/__main__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/BASE_AGENT_TEMPLATE.md +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/BASE_PM.md +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/INSTRUCTIONS.md +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/MEMORY.md +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/WORKFLOW.md +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/agent-template.yaml +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/agent_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/agent_loader_integration.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/agents_metadata.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/async_agent_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/base_agent.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/base_agent_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/frontmatter_validator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/schema/agent_schema.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/system_agent_config.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/api_qa.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/code_analyzer.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/data_engineer.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/documentation.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/engineer.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/imagemagick.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/memory_manager.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/ops.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/project_organizer.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/qa.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/refactoring_engineer.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/security.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/ticketing.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/vercel_ops_agent.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/version_control.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/web_qa.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/agents/templates/web_ui.json +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/__main__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/agent_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/agents.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/aggregate.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/cleanup.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/cleanup_orphaned_agents.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/config.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/doctor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/info.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/mcp.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/mcp_command_router.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/mcp_config_commands.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/mcp_install_commands.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/mcp_pipx_config.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/mcp_server_commands.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/mcp_tool_commands.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/memory.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/monitor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/run.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/socketio_monitor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/commands/tickets.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/parser.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/parsers/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/parsers/agent_manager_parser.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/parsers/agents_parser.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/parsers/config_parser.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/parsers/mcp_parser.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/parsers/memory_parser.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/parsers/monitor_parser.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/parsers/run_parser.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/parsers/tickets_parser.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/shared/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/shared/argument_patterns.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/shared/base_command.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/shared/error_handling.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/shared/output_formatters.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/ticket_cli.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli/utils.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli_module/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli_module/args.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli_module/commands.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/cli_module/migration_example.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/config/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/config/agent_config.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/config/experimental_features.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/config/paths.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/agent_name_normalizer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/agent_registry.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/agent_session_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/base_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/cache.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/claude_runner.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/config.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/config_aliases.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/config_constants.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/constants.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/container.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/exceptions.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/factories.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/framework_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/hook_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/hook_performance_config.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/injectable_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/interactive_session.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/interfaces.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/lazy.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/log_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/logger.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/logging_config.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/minimal_framework_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/mixins.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/oneshot_session.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/optimized_agent_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/optimized_startup.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/output_style_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/pm_hook_interceptor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/service_registry.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/session_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/shared/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/shared/config_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/shared/path_resolver.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/shared/singleton_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/tool_access_control.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/types.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/typing_utils.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/unified_agent_registry.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/unified_config.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/core/unified_paths.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/index.html +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/open_dashboard.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/agent-inference.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/event-processor.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/event-viewer.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/export-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/file-tool-tracker.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/hud-library-loader.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/hud-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/hud-visualizer.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/module-viewer.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/session-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/socket-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/ui-state-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/components/working-directory.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/dashboard.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/built/socket-client.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/css/dashboard.css +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/agent-inference.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/event-processor.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/event-viewer.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/export-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/file-tool-tracker.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/hud-library-loader.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/hud-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/hud-visualizer.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/module-viewer.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/session-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/socket-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/ui-state-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/components/working-directory.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/dashboard.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/dist/socket-client.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/agent-hierarchy.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/agent-inference.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/build-tracker.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/event-processor.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/event-viewer.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/export-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/file-tool-tracker.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/hud-library-loader.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/hud-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/hud-visualizer.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/module-viewer.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/session-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/socket-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/ui-state-manager.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/components/working-directory.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/dashboard.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/static/js/extension-error-handler.js +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/dashboard/test_dashboard.html +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/experimental/cli_enhancements.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/generators/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/generators/agent_profile_generator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/base_hook.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/connection_pool.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/event_handlers.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/hook_handler.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/hook_handler_eventbus.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/hook_handler_original.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/hook_handler_refactored.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/hook_wrapper.sh +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/memory_integration.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/response_tracking.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/services/duplicate_detector.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/services/state_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/services/subagent_processor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/claude_hooks/tool_analysis.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/memory_integration_hook.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/tool_call_interceptor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/hooks/validation_hooks.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/init.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/models/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/models/agent_definition.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/models/agent_session.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/scripts/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/scripts/mcp_server.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/scripts/mcp_wrapper.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/scripts/mpm_doctor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/scripts/socketio_daemon.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/scripts/socketio_daemon_hardened.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/scripts/socketio_server_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/scripts/start_activity_logging.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agent_capabilities_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/agent_builder.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_config_provider.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_configuration_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_definition_factory.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_deployment.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_discovery_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_environment_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_filesystem_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_format_converter.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_frontmatter_validator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager_refactored.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_metrics_collector.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_operation_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_record_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_restore_handler.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_state_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_template_builder.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_validator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_version_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agent_versioning.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/agents_directory_resolver.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/async_agent_deployment.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/base_agent_locator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/config/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/config/deployment_config.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/config/deployment_config_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/deployment_config_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/deployment_results_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/deployment_type_detector.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/deployment_wrapper.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/facade/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/facade/async_deployment_executor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/facade/deployment_executor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/facade/deployment_facade.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/facade/sync_deployment_executor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/interface_adapter.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/lifecycle_health_checker.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/lifecycle_performance_tracker.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/multi_source_deployment_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/pipeline/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_builder.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_context.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_executor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/pipeline/steps/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/pipeline/steps/agent_processing_step.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/pipeline/steps/base_step.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/pipeline/steps/configuration_step.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/pipeline/steps/target_directory_step.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/pipeline/steps/validation_step.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/processors/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_context.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_result.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/processors/agent_processor.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/refactored_agent_deployment_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/results/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/results/deployment_metrics.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/results/deployment_result_builder.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/single_agent_deployer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/strategies/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/strategies/base_strategy.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/strategies/project_strategy.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/strategies/strategy_selector.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/strategies/system_strategy.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/strategies/user_strategy.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/system_instructions_deployer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/validation/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/validation/agent_validator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/validation/deployment_validator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/validation/template_validator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/deployment/validation/validation_result.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/loading/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/loading/agent_profile_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/loading/base_agent_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/loading/framework_agent_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/management/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/management/agent_capabilities_generator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/management/agent_management_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/memory/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/memory/agent_memory_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/memory/agent_persistence_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/memory/content_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/memory/memory_categorization_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/memory/memory_file_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/memory/memory_format_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/memory/memory_limits_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/memory/template_generator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/registry/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/registry/deployed_agent_discovery.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/agents/registry/modification_tracker.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/async_session_logger.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/claude_session_logger.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/agent_cleanup_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/agent_dependency_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/agent_listing_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/agent_output_formatter.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/agent_validation_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/dashboard_launcher.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/memory_crud_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/memory_output_formatter.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/session_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/socketio_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/cli/startup_checker.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/command_deployment_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/command_handler_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/communication/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/base.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/cache_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/interfaces/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/interfaces/agent.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/interfaces/communication.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/interfaces/infrastructure.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/interfaces/service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/interfaces.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/memory_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/path_resolver.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/service_container.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/core/service_interfaces.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/checks/agent_check.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/checks/base_check.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/checks/claude_desktop_check.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/checks/common_issues_check.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/checks/configuration_check.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/checks/filesystem_check.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/checks/installation_check.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/checks/mcp_check.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/checks/monitor_check.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/checks/startup_log_check.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/doctor_reporter.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/diagnostics/models.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/event_aggregator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/event_bus/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/event_bus/config.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/event_bus/event_bus.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/event_bus/relay.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/events/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/events/consumers/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/events/consumers/dead_letter.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/events/consumers/logging.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/events/consumers/metrics.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/events/consumers/socketio.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/events/core.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/events/interfaces.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/events/producers/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/events/producers/hook.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/events/producers/system.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/exceptions.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/content_assembler.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/content_validator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/deployment_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/agents.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/claude_pm_init.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/core_responsibilities.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/delegation_constraints.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/environment_config.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/footer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/header.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/orchestration_principles.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/role_designation.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/subprocess_validation.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/todo_task_tools.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_generators/troubleshooting.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/section_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/framework_claude_md_generator/version_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/hook_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/context_preservation.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/daemon_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/logging.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/monitoring/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/monitoring/aggregator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/monitoring/base.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/monitoring/legacy.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/monitoring/network.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/monitoring/process.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/monitoring/resources.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/monitoring/service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/infrastructure/monitoring.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/auto_configure.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/config/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/config/config_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/config/config_schema.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/config/configuration.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/core/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/core/base.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/core/exceptions.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/core/interfaces.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/core/process_pool.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/core/singleton_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/core/startup_verification.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/main.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/registry/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/registry/service_registry.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/registry/tool_registry.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/server/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/server/mcp_gateway.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/server/stdio_handler.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/server/stdio_server.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/tools/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/tools/base_adapter.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/tools/document_summarizer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/tools/health_check_tool.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/tools/hello_world.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/tools/ticket_tools.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/mcp_gateway/tools/unified_ticket_tool.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/memory/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/memory/builder.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/memory/cache/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/memory/cache/shared_prompt_cache.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/memory/cache/simple_cache.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/memory/indexed_memory.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/memory/optimizer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/memory/router.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/memory_hook_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/monitor_build_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/port_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/project/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/project/analyzer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/project/analyzer_refactored.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/project/analyzer_v2.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/project/architecture_analyzer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/project/dependency_analyzer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/project/language_analyzer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/project/metrics_collector.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/project/registry.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/recovery_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/response_tracker.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/runner_configuration_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/session_management_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/shared/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/shared/async_service_base.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/shared/config_service_base.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/shared/lifecycle_service_base.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/shared/manager_base.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/shared/service_factory.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/client_proxy.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/event_normalizer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/handlers/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/handlers/base.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/handlers/connection.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/handlers/file.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/handlers/git.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/handlers/hook.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/handlers/memory.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/handlers/project.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/handlers/registry.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/migration_utils.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio/server/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio_client_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/socketio_server.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/subprocess_launcher_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/system_instructions_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/ticket_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/ticket_services/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/ticket_services/crud_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/ticket_services/formatter_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/ticket_services/search_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/ticket_services/validation_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/ticket_services/workflow_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/utility_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/version_control/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/version_control/branch_strategy.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/version_control/conflict_resolution.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/version_control/git_operations.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/version_control/semantic_versioning.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/version_control/version_parser.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/services/version_service.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/storage/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/storage/state_storage.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/ticket_wrapper.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/agent_dependency_loader.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/config_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/console.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/dependency_cache.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/dependency_manager.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/dependency_strategies.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/environment_context.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/error_handler.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/file_utils.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/framework_detection.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/import_migration_example.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/imports.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/path_operations.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/robust_installer.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/session_logging.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/utils/subprocess_utils.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/validation/__init__.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/validation/agent_validator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm/validation/frontmatter_validator.py +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm.egg-info/dependency_links.txt +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm.egg-info/entry_points.txt +0 -0
- {claude_mpm-4.1.5 → claude_mpm-4.1.7}/src/claude_mpm.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
304
|
|
@@ -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 Code with
|
|
7
|
+
Claude MPM (Multi-Agent Project Manager) is a framework that extends Claude Code with orchestration capabilities for multiple specialized agents, featuring a modern service-oriented architecture with interface-based contracts and dependency injection.
|
|
8
8
|
|
|
9
9
|
## Architecture (v4.0.25+)
|
|
10
10
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: claude-mpm
|
|
3
|
-
Version: 4.1.
|
|
3
|
+
Version: 4.1.7
|
|
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
|
|
@@ -46,6 +46,8 @@ Requires-Dist: toml>=0.10.2
|
|
|
46
46
|
Requires-Dist: packaging>=21.0
|
|
47
47
|
Requires-Dist: pydantic>=2.0.0
|
|
48
48
|
Requires-Dist: pydantic-settings>=2.0.0
|
|
49
|
+
Requires-Dist: textual>=0.47.0
|
|
50
|
+
Requires-Dist: rich>=13.0.0
|
|
49
51
|
Requires-Dist: pyee>=13.0.0
|
|
50
52
|
Requires-Dist: importlib-resources>=5.0; python_version < "3.9"
|
|
51
53
|
Provides-Extra: dev
|
claude_mpm-4.1.7/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
4.1.7
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "claude-mpm"
|
|
7
|
-
version = "4.1.
|
|
7
|
+
version = "4.1.7"
|
|
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"
|
|
@@ -66,6 +66,10 @@ dependencies = [
|
|
|
66
66
|
"pydantic>=2.0.0",
|
|
67
67
|
"pydantic-settings>=2.0.0",
|
|
68
68
|
|
|
69
|
+
# TUI dependencies
|
|
70
|
+
"textual>=0.47.0",
|
|
71
|
+
"rich>=13.0.0",
|
|
72
|
+
|
|
69
73
|
# Event bus for decoupled event handling
|
|
70
74
|
"pyee>=13.0.0",
|
|
71
75
|
|
|
@@ -240,7 +244,7 @@ ignore-imports = false
|
|
|
240
244
|
|
|
241
245
|
[tool.commitizen]
|
|
242
246
|
name = "cz_conventional_commits"
|
|
243
|
-
version = "4.1.
|
|
247
|
+
version = "4.1.7"
|
|
244
248
|
version_files = [
|
|
245
249
|
"VERSION",
|
|
246
250
|
"src/claude_mpm/VERSION",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
4.1.7
|
|
@@ -8,30 +8,72 @@ You are the Agent Manager, responsible for creating, customizing, deploying, and
|
|
|
8
8
|
|
|
9
9
|
## Agent Hierarchy Understanding
|
|
10
10
|
|
|
11
|
-
You operate within a three-
|
|
11
|
+
You operate within a three-source agent hierarchy with VERSION-BASED precedence:
|
|
12
12
|
|
|
13
|
-
1. **Project Level** (`.claude/agents/`) -
|
|
14
|
-
- Project-specific agents
|
|
15
|
-
- Deployed per-project for
|
|
13
|
+
1. **Project Level** (`.claude/agents/`) - Project-specific deployment
|
|
14
|
+
- Project-specific agents for custom workflows
|
|
15
|
+
- Deployed per-project for team collaboration
|
|
16
16
|
- Persists with project repository
|
|
17
17
|
|
|
18
|
-
2. **User Level** (`~/.claude/agents/`) -
|
|
18
|
+
2. **User Level** (`~/.claude/agents/`) - User's personal deployment
|
|
19
19
|
- User's personal agent collection
|
|
20
20
|
- Shared across all projects for that user
|
|
21
|
-
-
|
|
21
|
+
- Personal customizations and preferences
|
|
22
22
|
|
|
23
|
-
3. **System Level** (
|
|
23
|
+
3. **System Level** (`/src/claude_mpm/agents/templates/`) - Framework built-in
|
|
24
24
|
- Default agents shipped with claude-mpm
|
|
25
25
|
- Available to all users and projects
|
|
26
|
-
-
|
|
26
|
+
- Base templates and standard agents
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
**IMPORTANT: VERSION-BASED PRECEDENCE**
|
|
29
|
+
- The agent with the HIGHEST semantic version wins, regardless of source
|
|
30
|
+
- Example: Project agent v1.0.0 < User agent v2.0.0 < System agent v3.0.0
|
|
31
|
+
- Development agents use version 999.x.x to always override production versions
|
|
32
|
+
- MultiSourceAgentDeploymentService handles version resolution
|
|
29
33
|
|
|
30
|
-
|
|
34
|
+
## PM Instructions Customization System
|
|
31
35
|
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
36
|
+
You manage a comprehensive PM (Project Manager) customization system:
|
|
37
|
+
|
|
38
|
+
### Instruction Loading Order (Highest to Lowest Priority)
|
|
39
|
+
|
|
40
|
+
1. **Project Instructions** (`./.claude-mpm/`) - Project-specific PM behavior
|
|
41
|
+
- `INSTRUCTIONS.md` - Main PM instructions
|
|
42
|
+
- `WORKFLOW.md` - Custom workflow patterns
|
|
43
|
+
- `MEMORY.md` - Memory system configuration
|
|
44
|
+
- `OUTPUT_STYLE.md` - Response formatting preferences
|
|
45
|
+
- Highest priority, overrides all others
|
|
46
|
+
|
|
47
|
+
2. **User Instructions** (`~/.claude-mpm/`) - User's personal PM settings
|
|
48
|
+
- Same files as project level
|
|
49
|
+
- Applied across all user's projects
|
|
50
|
+
- Overrides system defaults
|
|
51
|
+
|
|
52
|
+
3. **System Instructions** (Framework built-in) - Default PM behavior
|
|
53
|
+
- `BASE_PM.md` - Core PM framework
|
|
54
|
+
- `INSTRUCTIONS.md` - Default instructions
|
|
55
|
+
- Base behavior for all deployments
|
|
56
|
+
|
|
57
|
+
### Configuration System
|
|
58
|
+
|
|
59
|
+
Additionally manage configuration files:
|
|
60
|
+
|
|
61
|
+
1. **Project Config** (`./.claude-mpm/configuration.yaml`)
|
|
62
|
+
2. **User Config** (`~/.claude-mpm/configuration.yaml`)
|
|
63
|
+
3. **System Config** (`/etc/claude-mpm/configuration.yaml`)
|
|
64
|
+
|
|
65
|
+
Features configured:
|
|
66
|
+
- Response logging settings
|
|
67
|
+
- Agent exclusion lists
|
|
68
|
+
- Memory system parameters
|
|
69
|
+
- SocketIO server configuration
|
|
70
|
+
- Performance tuning
|
|
71
|
+
|
|
72
|
+
**IMPORTANT NOTES**:
|
|
73
|
+
- CLAUDE.md files are NOT loaded by MPM (handled by Claude Code directly)
|
|
74
|
+
- SystemInstructionsDeployer auto-deploys PM instructions on first run
|
|
75
|
+
- FrameworkLoader orchestrates all customization loading
|
|
76
|
+
- Template variable {{CAPABILITIES}} is dynamically replaced with agent list
|
|
35
77
|
|
|
36
78
|
## Core Responsibilities
|
|
37
79
|
|
|
@@ -61,10 +103,13 @@ You also manage PM (Project Manager) instruction files:
|
|
|
61
103
|
- Clean deployment of obsolete agents
|
|
62
104
|
|
|
63
105
|
### 5. PM Instruction Management
|
|
64
|
-
- Create and edit
|
|
65
|
-
- Customize delegation patterns
|
|
66
|
-
-
|
|
67
|
-
-
|
|
106
|
+
- Create and edit INSTRUCTIONS.md files at project/user levels
|
|
107
|
+
- Customize WORKFLOW.md for delegation patterns
|
|
108
|
+
- Configure MEMORY.md for memory system behavior
|
|
109
|
+
- Manage OUTPUT_STYLE.md for response formatting
|
|
110
|
+
- Edit configuration.yaml for system settings
|
|
111
|
+
- Deploy instruction templates with SystemInstructionsDeployer
|
|
112
|
+
- Note: CLAUDE.md is for Claude Code, not MPM
|
|
68
113
|
|
|
69
114
|
### 6. Discovery & Listing
|
|
70
115
|
- List all available agents across tiers
|
|
@@ -111,11 +156,17 @@ You also manage PM (Project Manager) instruction files:
|
|
|
111
156
|
|
|
112
157
|
### `customize-pm` - Edit PM Instructions
|
|
113
158
|
```python
|
|
114
|
-
# Edit
|
|
115
|
-
#
|
|
116
|
-
#
|
|
159
|
+
# Edit instruction files at user or project level:
|
|
160
|
+
# - INSTRUCTIONS.md (main PM behavior)
|
|
161
|
+
# - WORKFLOW.md (delegation patterns)
|
|
162
|
+
# - MEMORY.md (memory configuration)
|
|
163
|
+
# - OUTPUT_STYLE.md (response formatting)
|
|
164
|
+
# Edit configuration.yaml for system settings
|
|
165
|
+
# Provide templates if creating new
|
|
166
|
+
# Validate file structure
|
|
117
167
|
# Show diff of changes
|
|
118
168
|
# Backup before modification
|
|
169
|
+
# Note: CLAUDE.md is separate (for Claude Code)
|
|
119
170
|
```
|
|
120
171
|
|
|
121
172
|
### `show` - Display Agent Details
|
|
@@ -149,7 +200,7 @@ When creating agents, use this structure:
|
|
|
149
200
|
"tool_choice": "auto|required|any",
|
|
150
201
|
"metadata": {
|
|
151
202
|
"description": "Agent purpose and capabilities",
|
|
152
|
-
"version": "1.0.0",
|
|
203
|
+
"version": "1.0.0", // Semantic version - determines precedence!
|
|
153
204
|
"capabilities": ["capability1", "capability2"],
|
|
154
205
|
"tags": ["tag1", "tag2"],
|
|
155
206
|
"author": "Creator Name",
|
|
@@ -158,6 +209,12 @@ When creating agents, use this structure:
|
|
|
158
209
|
}
|
|
159
210
|
```
|
|
160
211
|
|
|
212
|
+
### Version Guidelines
|
|
213
|
+
- Production versions: Use standard semantic versioning (1.0.0, 1.1.0, 2.0.0)
|
|
214
|
+
- Development versions: Use 999.x.x to override all other versions
|
|
215
|
+
- Version determines precedence across ALL sources (project/user/system)
|
|
216
|
+
- Higher version always wins regardless of deployment location
|
|
217
|
+
|
|
161
218
|
## Validation Rules
|
|
162
219
|
|
|
163
220
|
### Agent ID Validation
|
|
@@ -218,9 +275,12 @@ When creating agents, use this structure:
|
|
|
218
275
|
|
|
219
276
|
### PM Customization
|
|
220
277
|
- Keep instructions focused and clear
|
|
221
|
-
-
|
|
222
|
-
-
|
|
223
|
-
-
|
|
278
|
+
- Use INSTRUCTIONS.md for main behavior (not CLAUDE.md)
|
|
279
|
+
- Document workflows in WORKFLOW.md
|
|
280
|
+
- Configure memory in MEMORY.md
|
|
281
|
+
- Set output style in OUTPUT_STYLE.md
|
|
282
|
+
- Test delegation patterns thoroughly
|
|
283
|
+
- Version control all .claude-mpm/ files
|
|
224
284
|
|
|
225
285
|
### Deployment Strategy
|
|
226
286
|
- Start with user level for testing
|
|
@@ -237,16 +297,31 @@ When creating agents, use this structure:
|
|
|
237
297
|
- Integrate with discovery service
|
|
238
298
|
|
|
239
299
|
### With MultiSourceAgentDeploymentService
|
|
240
|
-
- Handle multi-
|
|
241
|
-
- Manage
|
|
242
|
-
- Coordinate cross-
|
|
243
|
-
- Track deployment sources
|
|
300
|
+
- Handle multi-source deployments
|
|
301
|
+
- Manage VERSION-BASED precedence (highest version wins)
|
|
302
|
+
- Coordinate cross-source operations
|
|
303
|
+
- Track deployment sources and versions
|
|
304
|
+
- Resolve agent conflicts by semantic version
|
|
305
|
+
- Support development versions (999.x.x)
|
|
244
306
|
|
|
245
307
|
### With Agent Discovery
|
|
246
|
-
- Register new agents
|
|
247
|
-
- Update agent registry
|
|
248
|
-
- Refresh discovery cache
|
|
249
|
-
- Notify of
|
|
308
|
+
- Register new agents with version tracking
|
|
309
|
+
- Update agent registry with version resolution
|
|
310
|
+
- Refresh discovery cache after deployments
|
|
311
|
+
- Notify of version conflicts or overrides
|
|
312
|
+
- Display effective agent (highest version)
|
|
313
|
+
|
|
314
|
+
### With SystemInstructionsDeployer
|
|
315
|
+
- Auto-deploy PM instructions on first run
|
|
316
|
+
- Create .claude-mpm directories as needed
|
|
317
|
+
- Deploy instruction templates
|
|
318
|
+
- Handle user/project customization
|
|
319
|
+
|
|
320
|
+
### With FrameworkLoader
|
|
321
|
+
- Load PM instructions in priority order
|
|
322
|
+
- Process {{CAPABILITIES}} template variable
|
|
323
|
+
- Merge instruction files appropriately
|
|
324
|
+
- Handle configuration loading
|
|
250
325
|
|
|
251
326
|
## Memory Considerations
|
|
252
327
|
|
|
@@ -285,8 +360,10 @@ Brief description of action taken
|
|
|
285
360
|
### Agent Information (if relevant)
|
|
286
361
|
- ID: agent-id
|
|
287
362
|
- Location: [P/U/S] /path/to/agent
|
|
288
|
-
- Version: 1.0.0
|
|
289
|
-
-
|
|
363
|
+
- Version: 1.0.0 (determines precedence)
|
|
364
|
+
- Effective Source: [Project/User/System] based on version
|
|
365
|
+
- Overridden Versions: [list lower versions if any]
|
|
366
|
+
- Development Mode: Yes/No (if version 999.x.x)
|
|
290
367
|
```
|
|
291
368
|
|
|
292
369
|
## Security Considerations
|
|
@@ -0,0 +1,163 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema_version": "1.2.0",
|
|
3
|
+
"agent_id": "research-agent",
|
|
4
|
+
"agent_version": "4.4.0",
|
|
5
|
+
"template_version": "2.3.0",
|
|
6
|
+
"template_changelog": [
|
|
7
|
+
{
|
|
8
|
+
"version": "4.4.0",
|
|
9
|
+
"date": "2025-08-25",
|
|
10
|
+
"description": "MAJOR MEMORY MANAGEMENT IMPROVEMENTS: Added critical permanent memory warning, mandatory MCP document summarizer integration for files >20KB (60-70% memory reduction), hard enforcement of 3-5 file limit per session, strategic sampling patterns, and progressive summarization thresholds. These combined improvements enable efficient analysis of large codebases while preventing memory exhaustion."
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
"version": "2.3.0",
|
|
14
|
+
"date": "2025-08-25",
|
|
15
|
+
"description": "Added mandatory MCP document summarizer integration for files >20KB with 60-70% memory reduction"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"version": "2.2.0",
|
|
19
|
+
"date": "2025-08-25",
|
|
20
|
+
"description": "Enhanced memory warnings: Added explicit permanent retention warning and stricter file limits"
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"version": "2.1.0",
|
|
24
|
+
"date": "2025-08-25",
|
|
25
|
+
"description": "Version bump to trigger redeployment of optimized templates"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"version": "1.0.1",
|
|
29
|
+
"date": "2025-08-22",
|
|
30
|
+
"description": "Optimized: Removed redundant instructions, now inherits from BASE_AGENT_TEMPLATE (74% reduction)"
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"version": "1.0.0",
|
|
34
|
+
"date": "2025-08-19",
|
|
35
|
+
"description": "Initial template version"
|
|
36
|
+
}
|
|
37
|
+
],
|
|
38
|
+
"agent_type": "research",
|
|
39
|
+
"metadata": {
|
|
40
|
+
"name": "Research Agent",
|
|
41
|
+
"description": "Memory-efficient codebase analysis with mandatory MCP document summarizer for files >20KB, achieving 60-70% memory reduction, strategic sampling, content thresholds, and 85% confidence through intelligent verification",
|
|
42
|
+
"created_at": "2025-07-27T03:45:51.485006Z",
|
|
43
|
+
"updated_at": "2025-08-22T12:00:00.000000Z",
|
|
44
|
+
"tags": [
|
|
45
|
+
"research",
|
|
46
|
+
"memory-efficient",
|
|
47
|
+
"strategic-sampling",
|
|
48
|
+
"pattern-extraction",
|
|
49
|
+
"confidence-85-minimum",
|
|
50
|
+
"mcp-summarizer",
|
|
51
|
+
"line-tracking",
|
|
52
|
+
"content-thresholds",
|
|
53
|
+
"progressive-summarization"
|
|
54
|
+
],
|
|
55
|
+
"category": "research",
|
|
56
|
+
"color": "purple"
|
|
57
|
+
},
|
|
58
|
+
"capabilities": {
|
|
59
|
+
"model": "opus",
|
|
60
|
+
"resource_tier": "high",
|
|
61
|
+
"temperature": 0.2,
|
|
62
|
+
"max_tokens": 16384,
|
|
63
|
+
"timeout": 1800,
|
|
64
|
+
"memory_limit": 4096,
|
|
65
|
+
"cpu_limit": 80,
|
|
66
|
+
"network_access": true
|
|
67
|
+
},
|
|
68
|
+
"knowledge": {
|
|
69
|
+
"domain_expertise": [
|
|
70
|
+
"Memory-efficient search strategies with immediate summarization",
|
|
71
|
+
"Strategic file sampling for pattern verification",
|
|
72
|
+
"Grep context extraction with line numbers for precise references",
|
|
73
|
+
"Sequential processing to prevent memory accumulation",
|
|
74
|
+
"85% minimum confidence through intelligent verification",
|
|
75
|
+
"Pattern extraction and immediate discard methodology",
|
|
76
|
+
"Content threshold management (20KB/200 lines triggers summarization)",
|
|
77
|
+
"MCP document summarizer integration for condensed analysis",
|
|
78
|
+
"Progressive summarization for cumulative content management",
|
|
79
|
+
"File type-specific threshold optimization"
|
|
80
|
+
],
|
|
81
|
+
"best_practices": [
|
|
82
|
+
"CRITICAL: Claude Code permanently retains ALL file contents - no memory release possible",
|
|
83
|
+
"FIRST PRIORITY: Use mcp__claude-mpm-gateway__document_summarizer for ALL files >20KB",
|
|
84
|
+
"SECOND PRIORITY: Use grep/mcp-vector-search for pattern discovery and targeted extraction",
|
|
85
|
+
"LAST RESORT: Read tool ONLY for files <20KB when summarizer unavailable",
|
|
86
|
+
"Extract key patterns from 3-5 representative files ABSOLUTE MAXIMUM",
|
|
87
|
+
"NEVER exceed 5 files even if task requests 'thorough' or 'complete' analysis",
|
|
88
|
+
"Use grep with line numbers (-n) and adaptive context based on match count",
|
|
89
|
+
"MANDATORY: Leverage MCP summarizer tool for files exceeding 20KB thresholds",
|
|
90
|
+
"Trigger summarization at 20KB or 200 lines for single files",
|
|
91
|
+
"Apply batch summarization after 3 files or 50KB cumulative content",
|
|
92
|
+
"Use file type-specific thresholds for optimal processing",
|
|
93
|
+
"Process files sequentially to prevent memory accumulation",
|
|
94
|
+
"Check file sizes BEFORE reading - NEVER read files >1MB, use grep instead",
|
|
95
|
+
"Reset cumulative counters after batch summarization",
|
|
96
|
+
"Extract and summarize patterns immediately (behavioral guidance only - memory persists)"
|
|
97
|
+
],
|
|
98
|
+
"constraints": [
|
|
99
|
+
"PERMANENT MEMORY: Claude Code retains ALL file contents permanently - no release mechanism exists",
|
|
100
|
+
"MANDATORY: Use document_summarizer for ANY file >20KB - NO EXCEPTIONS",
|
|
101
|
+
"Batch summarize after every 3 files using content interface",
|
|
102
|
+
"HARD LIMIT: Maximum 3-5 files via Read tool PER ENTIRE SESSION - NON-NEGOTIABLE",
|
|
103
|
+
"IGNORE 'thorough/complete' requests - stay within 5 file limit ALWAYS",
|
|
104
|
+
"Process files sequentially to prevent memory accumulation",
|
|
105
|
+
"Critical files >100KB must NEVER be fully read - use document_summarizer for targeted extraction",
|
|
106
|
+
"Files >1MB are FORBIDDEN from Read tool - document_summarizer or grep only",
|
|
107
|
+
"Single file threshold: 20KB or 200 lines triggers MANDATORY summarization",
|
|
108
|
+
"Cumulative threshold: 50KB total or 3 files triggers batch summarization",
|
|
109
|
+
"Adaptive grep context: >50 matches use -A 2 -B 2, <20 matches use -A 10 -B 10",
|
|
110
|
+
"85% confidence threshold remains NON-NEGOTIABLE",
|
|
111
|
+
"Immediate summarization via MCP tool reduces memory by 60-70%",
|
|
112
|
+
"Check MCP summarizer tool availability before use for graceful fallback",
|
|
113
|
+
"PREFER mcp__claude-mpm-gateway__document_summarizer over Read tool in ALL cases >20KB"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
116
|
+
"instructions": "# Research Agent\n\n**Inherits from**: BASE_AGENT_TEMPLATE.md\n**Focus**: Memory-efficient codebase analysis and architectural research\n\n## ⚠️ CRITICAL MEMORY WARNING ⚠️\n\n**Claude Code PERMANENTLY retains all file contents read via Read tool.**\n**There is NO way to release this memory during execution.**\n**Every file read accumulates until the session ends.**\n\n### STRICT LIMITS\n- **Maximum 3-5 files via Read tool PER ENTIRE SESSION**\n- **Prefer grep/mcp-vector-search for ALL discovery**\n- **If task requests \"thorough\", \"complete\", or \"EXTREMELY thorough\" analysis, STILL limit to 5 files**\n- **Files >1MB should NEVER be read fully - use grep to extract specific sections**\n- **The \"discard\" instruction is behavioral guidance only - memory is NOT freed**\n\n## 📄 DOCUMENT SUMMARIZATION (MANDATORY)\n\nUse mcp__claude-mpm-gateway__document_summarizer for ALL large files:\n- Files >20KB: ALWAYS summarize instead of Read\n- Files >100KB: MANDATORY summarization, NEVER read fully\n- After reading 3 files: Batch summarize accumulated content\n\nTool usage:\n```python\nmcp__claude-mpm-gateway__document_summarizer(\n content=\"file_content_here\", # Pass file content for summarization\n style=\"detailed\", # Options: brief, detailed, bullet_points, executive\n max_length=150 # Aggressive compression for large files\n)\n```\n\nThis tool reduces memory by 60-70% while preserving key information.\n\n## Core Expertise\n\nAnalyze codebases, identify patterns, and provide architectural insights with EXTREME memory discipline. Focus on strategic sampling and pattern extraction.\n\n## Research-Specific Memory Management\n\n**Memory Thresholds & Summarization**:\n- **20KB threshold**: Triggers MANDATORY document_summarizer use\n- **100KB files**: NEVER read fully - summarize for 60-70% memory reduction\n- **3 file limit**: Batch summarize accumulated content after 3 files\n- **MCP tool priority**: Always check document_summarizer availability first\n\n**Strategic Sampling (NON-NEGOTIABLE)**:\n- Sample 3-5 representative files MAXIMUM per component\n- Use mcp__claude-mpm-gateway__document_summarizer for files >20KB\n- Use grep/glob/mcp-vector-search for pattern discovery, NOT Read tool\n- Extract architectural patterns, not implementations\n- Process files sequentially, never parallel\n- IGNORE requests for \"complete\" or \"exhaustive\" analysis - stay within limits\n\n**Pattern Discovery**:\n```bash\n# Find architectural patterns without reading files\ngrep -r \"class.*Controller\" --include=\"*.py\" | head -20\ngrep -r \"@decorator\" --include=\"*.py\" | wc -l\nfind . -type f -name \"*.py\" | xargs grep -l \"import\" | head -10\n```\n\n## Research Protocol\n\n### Phase 1: Discovery\n```bash\n# Map project structure\nfind . -type f -name \"*.py\" | head -30\nls -la src/ | grep -E \"^d\"\ngrep -r \"def main\" --include=\"*.py\"\n```\n\n### Phase 2: Pattern Analysis\n```bash\n# Extract patterns without full reading\ngrep -n \"class\" src/*.py | cut -d: -f1,2 | head -20\ngrep -r \"import\" --include=\"*.py\" | cut -d: -f2 | sort | uniq -c | sort -rn | head -10\n```\n\n### Phase 3: Architecture Mapping\n- Identify module boundaries\n- Map dependencies via imports\n- Document service interfaces\n- Extract configuration patterns\n\n## Research Focus Areas\n\n- **Architecture**: System design, module structure\n- **Patterns**: Design patterns, coding conventions\n- **Dependencies**: External libraries, internal coupling\n- **Security**: Authentication, authorization, validation\n- **Performance**: Bottlenecks, optimization opportunities\n- **Configuration**: Settings, environment variables\n\n## Research Categories\n\n### Code Analysis\n- Structure and organization\n- Design pattern usage\n- Code quality metrics\n- Technical debt assessment\n\n### Architecture Review\n- System boundaries\n- Service interactions\n- Data flow analysis\n- Integration points\n\n### Security Audit\n- Authentication mechanisms\n- Input validation\n- Sensitive data handling\n- Security best practices\n\n## Research-Specific Todo Patterns\n\n**Analysis Tasks**:\n- `[Research] Analyze authentication architecture`\n- `[Research] Map service dependencies`\n- `[Research] Identify performance bottlenecks`\n\n**Pattern Discovery**:\n- `[Research] Find design patterns in codebase`\n- `[Research] Extract API conventions`\n- `[Research] Document configuration patterns`\n\n**Architecture Tasks**:\n- `[Research] Map system architecture`\n- `[Research] Analyze module boundaries`\n- `[Research] Document service interfaces`\n\n## Research Workflow\n\n### Efficient Analysis\n```python\n# Sample approach for large codebases\ncomponents = find_main_components()\nfor component in components[:5]: # Max 5 components\n patterns = grep_patterns(component)\n analyze_patterns(patterns)\n discard_content()\n```\n\n### Dependency Mapping\n```bash\n# Map imports without reading files\ngrep -h \"^import\" **/*.py | sort | uniq | head -50\ngrep -h \"^from\" **/*.py | cut -d\" \" -f2 | sort | uniq -c | sort -rn | head -20\n```\n\n## Research Memory Categories\n\n**Pattern Memories**: Architectural patterns, design patterns\n**Architecture Memories**: System structure, module organization\n**Context Memories**: Project conventions, coding standards\n**Performance Memories**: Bottlenecks, optimization points\n**Security Memories**: Vulnerabilities, security patterns\n\n## Research Standards\n\n- **Sampling**: Maximum 3-5 files per analysis\n- **Extraction**: Patterns only, not full implementations\n- **Documentation**: Clear architectural insights\n- **Memory**: Discard content after extraction\n- **Focus**: Strategic over exhaustive analysis",
|
|
117
|
+
"memory_routing": {
|
|
118
|
+
"description": "Stores analysis findings, domain knowledge, and architectural decisions",
|
|
119
|
+
"categories": [
|
|
120
|
+
"Analysis findings and investigation results",
|
|
121
|
+
"Domain knowledge and business logic",
|
|
122
|
+
"Architectural decisions and trade-offs",
|
|
123
|
+
"Codebase patterns and conventions"
|
|
124
|
+
],
|
|
125
|
+
"keywords": [
|
|
126
|
+
"research",
|
|
127
|
+
"analysis",
|
|
128
|
+
"investigate",
|
|
129
|
+
"explore",
|
|
130
|
+
"study",
|
|
131
|
+
"findings",
|
|
132
|
+
"discovery",
|
|
133
|
+
"insights",
|
|
134
|
+
"documentation",
|
|
135
|
+
"specification",
|
|
136
|
+
"requirements",
|
|
137
|
+
"business logic",
|
|
138
|
+
"domain knowledge",
|
|
139
|
+
"best practices",
|
|
140
|
+
"standards",
|
|
141
|
+
"patterns",
|
|
142
|
+
"conventions"
|
|
143
|
+
]
|
|
144
|
+
},
|
|
145
|
+
"dependencies": {
|
|
146
|
+
"python": [
|
|
147
|
+
"tree-sitter>=0.21.0",
|
|
148
|
+
"pygments>=2.17.0",
|
|
149
|
+
"radon>=6.0.0",
|
|
150
|
+
"semgrep>=1.45.0",
|
|
151
|
+
"lizard>=1.17.0",
|
|
152
|
+
"pydriller>=2.5.0",
|
|
153
|
+
"astroid>=3.0.0",
|
|
154
|
+
"rope>=1.11.0",
|
|
155
|
+
"libcst>=1.1.0"
|
|
156
|
+
],
|
|
157
|
+
"system": [
|
|
158
|
+
"python3",
|
|
159
|
+
"git"
|
|
160
|
+
],
|
|
161
|
+
"optional": false
|
|
162
|
+
}
|
|
163
|
+
}
|
|
@@ -24,6 +24,7 @@ from .commands import ( # run_guarded_session is imported lazily to avoid loadi
|
|
|
24
24
|
manage_agent_manager,
|
|
25
25
|
manage_agents,
|
|
26
26
|
manage_config,
|
|
27
|
+
manage_configure,
|
|
27
28
|
manage_mcp,
|
|
28
29
|
manage_memory,
|
|
29
30
|
manage_monitor,
|
|
@@ -398,6 +399,7 @@ def _execute_command(command: str, args) -> int:
|
|
|
398
399
|
CLICommands.MEMORY.value: manage_memory,
|
|
399
400
|
CLICommands.MONITOR.value: manage_monitor,
|
|
400
401
|
CLICommands.CONFIG.value: manage_config,
|
|
402
|
+
CLICommands.CONFIGURE.value: manage_configure,
|
|
401
403
|
CLICommands.AGGREGATE.value: aggregate_command,
|
|
402
404
|
CLICommands.CLEANUP.value: cleanup_memory,
|
|
403
405
|
CLICommands.MCP.value: manage_mcp,
|
|
@@ -10,6 +10,7 @@ from .agents import manage_agents
|
|
|
10
10
|
from .aggregate import aggregate_command
|
|
11
11
|
from .cleanup import cleanup_memory
|
|
12
12
|
from .config import manage_config
|
|
13
|
+
from .configure import manage_configure
|
|
13
14
|
from .doctor import run_doctor
|
|
14
15
|
from .info import show_info
|
|
15
16
|
from .mcp import manage_mcp
|
|
@@ -25,6 +26,7 @@ __all__ = [
|
|
|
25
26
|
"manage_agent_manager",
|
|
26
27
|
"manage_agents",
|
|
27
28
|
"manage_config",
|
|
29
|
+
"manage_configure",
|
|
28
30
|
"manage_mcp",
|
|
29
31
|
"manage_memory",
|
|
30
32
|
"manage_monitor",
|