claude-mpm 4.2.0__tar.gz → 4.2.2__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.2.2/BUILD_NUMBER +1 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/PKG-INFO +1 -1
- claude_mpm-4.2.2/VERSION +1 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/pyproject.toml +2 -2
- claude_mpm-4.2.2/src/claude_mpm/VERSION +1 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/agent-manager.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/agentic_coder_optimizer.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/api_qa.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/code_analyzer.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/data_engineer.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/documentation.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/engineer.json +2 -2
- claude_mpm-4.2.2/src/claude_mpm/agents/templates/gcp_ops_agent.json +243 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/imagemagick.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/memory_manager.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/ops.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/project_organizer.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/qa.json +2 -2
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/refactoring_engineer.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/research.json +3 -3
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/security.json +1 -1
- claude_mpm-4.2.2/src/claude_mpm/agents/templates/test-non-mpm.json +20 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/ticketing.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/vercel_ops_agent.json +2 -2
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/version_control.json +1 -1
- claude_mpm-4.2.2/src/claude_mpm/agents/templates/web_qa.json +249 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/web_ui.json +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/agents.py +3 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/dashboard.py +3 -3
- claude_mpm-4.2.2/src/claude_mpm/cli/commands/monitor.py +319 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/run.py +6 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/config.py +25 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/unified_agent_registry.py +2 -2
- claude_mpm-4.2.2/src/claude_mpm/dashboard/static/dist/components/code-tree.js +2 -0
- claude_mpm-4.2.2/src/claude_mpm/dashboard/static/js/components/code-simple.js +814 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/code-tree.js +229 -42
- claude_mpm-4.2.2/src/claude_mpm/dashboard/templates/code_simple.html +153 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/templates/index.html +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_deployment.py +4 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_discovery_service.py +101 -2
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_format_converter.py +53 -9
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_template_builder.py +342 -25
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_validator.py +11 -6
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/multi_source_deployment_service.py +83 -15
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/validation/template_validator.py +51 -40
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/agent_listing_service.py +2 -2
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/socketio_manager.py +59 -1
- claude_mpm-4.2.2/src/claude_mpm/services/socketio/dashboard_server.py +360 -0
- claude_mpm-4.2.2/src/claude_mpm/services/socketio/monitor_client.py +366 -0
- claude_mpm-4.2.2/src/claude_mpm/services/socketio/monitor_server.py +505 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm.egg-info/PKG-INFO +1 -1
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm.egg-info/SOURCES.txt +4 -0
- claude_mpm-4.2.0/BUILD_NUMBER +0 -1
- claude_mpm-4.2.0/VERSION +0 -1
- claude_mpm-4.2.0/src/claude_mpm/VERSION +0 -1
- claude_mpm-4.2.0/src/claude_mpm/agents/templates/gcp_ops_agent.json +0 -238
- claude_mpm-4.2.0/src/claude_mpm/agents/templates/web_qa.json +0 -254
- claude_mpm-4.2.0/src/claude_mpm/cli/commands/monitor.py +0 -156
- claude_mpm-4.2.0/src/claude_mpm/dashboard/static/dist/components/code-tree.js +0 -2
- claude_mpm-4.2.0/src/claude_mpm/dashboard/static/js/components/code-simple.js +0 -322
- claude_mpm-4.2.0/src/claude_mpm/dashboard/templates/code_simple.html +0 -74
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/CLAUDE.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/LICENSE +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/MANIFEST.in +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/README.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/scripts/ticket +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/setup.cfg +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/BUILD_NUMBER +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/__main__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/BASE_AGENT_TEMPLATE.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/BASE_DOCUMENTATION.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/BASE_ENGINEER.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/BASE_OPS.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/BASE_PM.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/BASE_QA.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/BASE_RESEARCH.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/INSTRUCTIONS.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/MEMORY.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/OUTPUT_STYLE.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/WORKFLOW.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/agent-template.yaml +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/agent_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/agent_loader_integration.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/agents_metadata.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/async_agent_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/base_agent.json +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/base_agent_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/frontmatter_validator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/system_agent_config.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/.claude-mpm/memories/README.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/.claude-mpm/memories/engineer_memories.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/agent-manager.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/logs/prompts/agent_engineer_20250826_014258_728.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/agents/templates/logs/prompts/agent_engineer_20250901_010124_142.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/__main__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/agent_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/aggregate.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/analyze.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/analyze_code.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/cleanup.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/cleanup_orphaned_agents.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/config.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/configure.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/configure_tui.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/debug.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/doctor.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/info.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/mcp.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/mcp_command_router.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/mcp_config_commands.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/mcp_install_commands.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/mcp_pipx_config.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/mcp_server_commands.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/mcp_tool_commands.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/memory.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/mpm_init.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/mpm_init_handler.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/socketio_monitor.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/commands/tickets.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/agent_manager_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/agents_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/analyze_code_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/analyze_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/base_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/config_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/configure_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/dashboard_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/debug_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/mcp_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/memory_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/monitor_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/mpm_init_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/run_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/parsers/tickets_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/shared/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/shared/argument_patterns.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/shared/base_command.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/shared/error_handling.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/shared/output_formatters.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/startup_logging.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/ticket_cli.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli/utils.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli_module/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli_module/args.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli_module/commands.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/cli_module/migration_example.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/commands/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/commands/mpm-agents.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/commands/mpm-config.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/commands/mpm-doctor.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/commands/mpm-help.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/commands/mpm-init.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/commands/mpm-status.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/commands/mpm-tickets.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/commands/mpm.md +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/config/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/config/agent_config.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/config/experimental_features.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/config/paths.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/config/socketio_config.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/constants.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/agent_name_normalizer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/agent_registry.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/agent_session_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/base_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/cache.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/claude_runner.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/config_aliases.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/config_constants.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/constants.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/container.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/exceptions.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/factories.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/framework_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/hook_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/hook_performance_config.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/injectable_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/instruction_reinforcement_hook.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/interactive_session.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/interfaces.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/lazy.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/log_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/logger.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/logging_config.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/minimal_framework_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/mixins.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/oneshot_session.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/optimized_agent_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/optimized_startup.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/output_style_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/pm_hook_interceptor.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/service_registry.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/session_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/shared/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/shared/config_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/shared/path_resolver.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/shared/singleton_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/socketio_pool.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/tool_access_control.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/types.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/typing_utils.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/unified_config.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/core/unified_paths.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/.claude-mpm/socketio-instances.json +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/analysis_runner.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/api/simple_directory.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/index.html +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/open_dashboard.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/activity-tree.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/agent-inference.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/code-tree.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/code-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/event-processor.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/event-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/export-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/file-tool-tracker.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/hud-library-loader.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/hud-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/hud-visualizer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/module-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/session-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/socket-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/ui-state-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/unified-data-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/components/working-directory.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/dashboard.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/built/socket-client.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/css/activity.css +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/css/code-tree.css +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/css/connection-status.css +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/css/dashboard.css +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/activity-tree.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/agent-inference.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/code-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/event-processor.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/event-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/export-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/file-tool-tracker.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/hud-library-loader.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/hud-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/hud-visualizer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/module-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/session-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/socket-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/ui-state-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/unified-data-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/components/working-directory.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/dashboard.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/dist/socket-client.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/activity-tree.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/agent-hierarchy.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/agent-inference.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/build-tracker.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/code-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/connection-debug.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/event-processor.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/event-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/export-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/file-tool-tracker.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/hud-library-loader.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/hud-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/hud-visualizer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/module-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/session-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/socket-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/ui-state-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/unified-data-viewer.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/components/working-directory.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/connection-manager.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/dashboard.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/extension-error-handler.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/js/socket-client.js +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/test-simple.html +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/static/test_debug.html +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/dashboard/test_dashboard.html +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/experimental/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/experimental/cli_enhancements.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/generators/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/generators/agent_profile_generator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/base_hook.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/connection_pool.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/event_handlers.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/hook_handler.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/hook_handler_eventbus.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/hook_handler_original.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/hook_handler_refactored.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/hook_wrapper.sh +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/installer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/memory_integration.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/response_tracking.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/services/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/services/connection_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/services/connection_manager_http.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/services/duplicate_detector.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/services/state_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/services/subagent_processor.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/claude_hooks/tool_analysis.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/memory_integration_hook.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/tool_call_interceptor.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/hooks/validation_hooks.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/init.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/models/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/models/agent_definition.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/models/agent_session.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/schemas/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/scripts/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/scripts/claude-hook-handler.sh +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/scripts/mcp_server.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/scripts/mcp_wrapper.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/scripts/mpm_doctor.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/scripts/socketio_daemon.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/scripts/socketio_daemon_hardened.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/scripts/socketio_daemon_wrapper.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/scripts/socketio_server_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/scripts/start_activity_logging.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agent_capabilities_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/agent_builder.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_config_provider.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_configuration_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_definition_factory.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_environment_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_filesystem_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_frontmatter_validator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager_refactored.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_metrics_collector.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_operation_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_record_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_restore_handler.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_state_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_version_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agent_versioning.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/agents_directory_resolver.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/async_agent_deployment.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/base_agent_locator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/config/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/config/deployment_config.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/config/deployment_config_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/deployment_config_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/deployment_results_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/deployment_type_detector.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/deployment_wrapper.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/facade/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/facade/async_deployment_executor.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/facade/deployment_executor.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/facade/deployment_facade.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/facade/sync_deployment_executor.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/interface_adapter.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/lifecycle_health_checker.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/lifecycle_performance_tracker.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/pipeline/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_builder.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_context.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_executor.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/pipeline/steps/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/pipeline/steps/agent_processing_step.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/pipeline/steps/base_step.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/pipeline/steps/configuration_step.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/pipeline/steps/target_directory_step.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/pipeline/steps/validation_step.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/processors/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_context.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_result.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/processors/agent_processor.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/refactored_agent_deployment_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/results/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/results/deployment_metrics.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/results/deployment_result_builder.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/single_agent_deployer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/strategies/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/strategies/base_strategy.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/strategies/project_strategy.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/strategies/strategy_selector.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/strategies/system_strategy.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/strategies/user_strategy.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/system_instructions_deployer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/validation/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/validation/agent_validator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/validation/deployment_validator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/deployment/validation/validation_result.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/loading/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/loading/agent_profile_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/loading/base_agent_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/loading/framework_agent_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/management/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/management/agent_capabilities_generator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/management/agent_management_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/memory/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/memory/agent_memory_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/memory/agent_persistence_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/memory/content_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/memory/memory_categorization_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/memory/memory_file_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/memory/memory_format_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/memory/memory_limits_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/memory/template_generator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/registry/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/registry/deployed_agent_discovery.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/agents/registry/modification_tracker.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/async_session_logger.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/claude_session_logger.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/agent_cleanup_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/agent_dependency_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/agent_output_formatter.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/agent_validation_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/dashboard_launcher.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/memory_crud_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/memory_output_formatter.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/session_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/cli/startup_checker.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/command_deployment_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/command_handler_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/communication/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/base.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/cache_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/interfaces/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/interfaces/agent.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/interfaces/communication.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/interfaces/infrastructure.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/interfaces/service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/interfaces.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/memory_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/path_resolver.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/service_container.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/core/service_interfaces.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/agent_check.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/base_check.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/claude_desktop_check.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/common_issues_check.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/configuration_check.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/filesystem_check.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/installation_check.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/instructions_check.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/mcp_check.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/monitor_check.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/checks/startup_log_check.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/diagnostic_runner.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/doctor_reporter.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/diagnostics/models.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/event_aggregator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/event_bus/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/event_bus/config.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/event_bus/direct_relay.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/event_bus/event_bus.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/event_bus/relay.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/events/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/events/consumers/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/events/consumers/dead_letter.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/events/consumers/logging.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/events/consumers/metrics.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/events/consumers/socketio.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/events/core.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/events/interfaces.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/events/producers/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/events/producers/hook.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/events/producers/system.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/exceptions.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/content_assembler.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/content_validator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/deployment_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/agents.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/claude_pm_init.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/core_responsibilities.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/delegation_constraints.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/environment_config.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/footer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/header.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/orchestration_principles.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/role_designation.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/subprocess_validation.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/todo_task_tools.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/troubleshooting.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/section_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/framework_claude_md_generator/version_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/hook_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/context_preservation.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/daemon_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/logging.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/monitoring/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/monitoring/aggregator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/monitoring/base.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/monitoring/legacy.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/monitoring/network.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/monitoring/process.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/monitoring/resources.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/monitoring/service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/infrastructure/monitoring.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/auto_configure.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/config/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/config/config_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/config/config_schema.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/config/configuration.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/core/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/core/base.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/core/exceptions.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/core/interfaces.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/core/process_pool.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/core/singleton_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/core/startup_verification.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/main.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/registry/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/registry/service_registry.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/registry/tool_registry.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/server/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/server/mcp_gateway.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/server/stdio_handler.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/server/stdio_server.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/tools/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/tools/base_adapter.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/tools/document_summarizer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/tools/health_check_tool.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/tools/hello_world.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/tools/ticket_tools.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/mcp_gateway/tools/unified_ticket_tool.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/memory/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/memory/builder.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/memory/cache/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/memory/cache/shared_prompt_cache.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/memory/cache/simple_cache.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/memory/indexed_memory.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/memory/optimizer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/memory/router.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/memory_hook_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/monitor_build_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/port_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/project/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/project/analyzer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/project/analyzer_refactored.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/project/analyzer_v2.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/project/architecture_analyzer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/project/dependency_analyzer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/project/language_analyzer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/project/metrics_collector.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/project/registry.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/recovery_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/response_tracker.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/runner_configuration_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/session_management_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/shared/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/shared/async_service_base.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/shared/config_service_base.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/shared/lifecycle_service_base.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/shared/manager_base.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/shared/service_factory.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/client_proxy.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/event_normalizer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/handlers/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/handlers/base.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/handlers/code_analysis.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/handlers/connection.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/handlers/connection_handler.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/handlers/file.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/handlers/git.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/handlers/hook.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/handlers/memory.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/handlers/project.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/handlers/registry.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/migration_utils.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/server/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/server/broadcaster.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/server/connection_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/server/core.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/server/eventbus_integration.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio/server/main.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio_client_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/socketio_server.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/subprocess_launcher_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/system_instructions_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/ticket_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/ticket_services/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/ticket_services/crud_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/ticket_services/formatter_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/ticket_services/search_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/ticket_services/validation_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/ticket_services/workflow_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/utility_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/version_control/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/version_control/branch_strategy.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/version_control/conflict_resolution.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/version_control/git_operations.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/version_control/semantic_versioning.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/version_control/version_parser.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/version_service.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/visualization/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/services/visualization/mermaid_generator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/storage/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/storage/state_storage.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/ticket_wrapper.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/tools/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/tools/__main__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/tools/code_tree_analyzer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/tools/code_tree_builder.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/tools/code_tree_events.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/tools/socketio_debug.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/agent_dependency_loader.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/config_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/console.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/dependency_cache.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/dependency_manager.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/dependency_strategies.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/environment_context.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/error_handler.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/file_utils.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/framework_detection.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/import_migration_example.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/imports.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/path_operations.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/robust_installer.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/session_logging.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/utils/subprocess_utils.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/validation/__init__.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/validation/agent_validator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm/validation/frontmatter_validator.py +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm.egg-info/dependency_links.txt +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm.egg-info/entry_points.txt +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm.egg-info/requires.txt +0 -0
- {claude_mpm-4.2.0 → claude_mpm-4.2.2}/src/claude_mpm.egg-info/top_level.txt +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
332
|
claude_mpm-4.2.2/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
4.2.2
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "claude-mpm"
|
|
7
|
-
version = "4.2.
|
|
7
|
+
version = "4.2.2"
|
|
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"
|
|
@@ -248,7 +248,7 @@ ignore-imports = false
|
|
|
248
248
|
|
|
249
249
|
[tool.commitizen]
|
|
250
250
|
name = "cz_conventional_commits"
|
|
251
|
-
version = "4.2.
|
|
251
|
+
version = "4.2.2"
|
|
252
252
|
version_files = [
|
|
253
253
|
"VERSION",
|
|
254
254
|
"src/claude_mpm/VERSION",
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
4.2.2
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Clean architecture specialist with code reduction focus and dependency injection",
|
|
4
4
|
"schema_version": "1.3.0",
|
|
5
5
|
"agent_id": "engineer",
|
|
6
|
-
"agent_version": "3.8.
|
|
6
|
+
"agent_version": "3.8.1",
|
|
7
7
|
"template_version": "2.2.0",
|
|
8
8
|
"template_changelog": [
|
|
9
9
|
{
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
]
|
|
66
66
|
}
|
|
67
67
|
},
|
|
68
|
-
"instructions": "
|
|
68
|
+
"instructions": "You are an expert software engineer with deep expertise across multiple programming paradigms, languages, and architectural patterns. Your approach combines technical excellence with pragmatic problem-solving to deliver robust, scalable solutions.\n\n**Core Responsibilities:**\n\nYou will analyze requirements and implement solutions that prioritize:\n- Clean, readable, and maintainable code following established best practices\n- Appropriate design patterns and architectural decisions for the problem domain\n- Performance optimization without premature optimization\n- Comprehensive error handling and edge case management\n- Security considerations and input validation\n- Testability and modularity\n\n**Development Methodology:**\n\nWhen implementing solutions, you will:\n\n1. **Understand Requirements**: Carefully analyze the problem statement, identifying both explicit requirements and implicit constraints. Ask clarifying questions when specifications are ambiguous.\n\n2. **Design Before Coding**: Plan your approach by:\n - Identifying the appropriate data structures and algorithms\n - Considering scalability and performance implications\n - Evaluating trade-offs between different implementation strategies\n - Ensuring alignment with existing codebase patterns and standards\n\n3. **Write Quality Code**: Implement solutions that:\n - Follow language-specific idioms and conventions\n - Include clear, purposeful comments for complex logic\n - Use descriptive variable and function names\n - Maintain consistent formatting and style\n - Implement proper separation of concerns\n\n4. **Consider Edge Cases**: Proactively handle:\n - Boundary conditions and null/empty inputs\n - Concurrent access and race conditions where applicable\n - Resource management and cleanup\n - Graceful degradation and fallback strategies\n\n5. **Optimize Thoughtfully**: Balance performance with maintainability by:\n - Profiling before optimizing\n - Choosing appropriate data structures for the use case\n - Implementing caching strategies where beneficial\n - Avoiding premature optimization\n\n**Quality Assurance:**\n\nYou will ensure code quality through:\n- Self-review for logic errors and potential bugs\n- Consideration of test cases and test coverage\n- Documentation of complex algorithms or business logic\n- Verification that the solution meets all stated requirements\n- Validation of assumptions about external dependencies\n\n**Communication Style:**\n\nWhen presenting solutions, you will:\n- Explain your architectural decisions and trade-offs\n- Highlight any assumptions made during implementation\n- Suggest areas for future improvement or optimization\n- Provide clear documentation for API interfaces\n- Include usage examples when implementing libraries or utilities\n\n**Technology Adaptation:**\n\nYou will adapt your approach based on:\n- The specific programming language and its ecosystem\n- Framework conventions and established patterns\n- Team coding standards and style guides\n- Performance requirements and constraints\n- Deployment environment considerations\n\n**Continuous Improvement:**\n\nYou will actively:\n- Suggest refactoring opportunities when working with existing code\n- Identify technical debt and propose remediation strategies\n- Recommend modern best practices and patterns\n- Consider long-term maintainability in all decisions\n- Balance innovation with stability\n\nYour goal is to deliver code that not only solves the immediate problem but also serves as a solid foundation for future development. Every line of code you write should be purposeful, tested, and maintainable.",
|
|
69
69
|
"knowledge": {
|
|
70
70
|
"domain_expertise": [
|
|
71
71
|
"SOLID principles in production",
|
|
@@ -0,0 +1,243 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schema_version": "1.2.0",
|
|
3
|
+
"agent_id": "gcp-ops-agent",
|
|
4
|
+
"agent_version": "1.0.1",
|
|
5
|
+
"template_version": "1.0.0",
|
|
6
|
+
"template_changelog": [
|
|
7
|
+
{
|
|
8
|
+
"version": "1.0.0",
|
|
9
|
+
"date": "2025-09-01",
|
|
10
|
+
"description": "Initial GCP ops agent template with comprehensive GCP authentication, gcloud CLI, and resource management capabilities"
|
|
11
|
+
}
|
|
12
|
+
],
|
|
13
|
+
"agent_type": "ops",
|
|
14
|
+
"metadata": {
|
|
15
|
+
"name": "Google Cloud Ops Agent",
|
|
16
|
+
"description": "Specialized agent for Google Cloud Platform operations, authentication, and resource management",
|
|
17
|
+
"category": "operations",
|
|
18
|
+
"tags": [
|
|
19
|
+
"gcp",
|
|
20
|
+
"google-cloud",
|
|
21
|
+
"gcloud",
|
|
22
|
+
"oauth",
|
|
23
|
+
"service-account",
|
|
24
|
+
"iam",
|
|
25
|
+
"cloud-run",
|
|
26
|
+
"ops",
|
|
27
|
+
"deployment",
|
|
28
|
+
"infrastructure"
|
|
29
|
+
],
|
|
30
|
+
"author": "Claude MPM Team",
|
|
31
|
+
"created_at": "2025-09-01T00:00:00.000000Z",
|
|
32
|
+
"updated_at": "2025-09-01T00:00:00.000000Z",
|
|
33
|
+
"color": "blue"
|
|
34
|
+
},
|
|
35
|
+
"capabilities": {
|
|
36
|
+
"model": "sonnet",
|
|
37
|
+
"tools": [
|
|
38
|
+
"Read",
|
|
39
|
+
"Write",
|
|
40
|
+
"Edit",
|
|
41
|
+
"Bash",
|
|
42
|
+
"Grep",
|
|
43
|
+
"Glob",
|
|
44
|
+
"TodoWrite",
|
|
45
|
+
"WebSearch"
|
|
46
|
+
],
|
|
47
|
+
"resource_tier": "standard",
|
|
48
|
+
"max_tokens": 8192,
|
|
49
|
+
"temperature": 0.1,
|
|
50
|
+
"timeout": 600,
|
|
51
|
+
"memory_limit": 3072,
|
|
52
|
+
"cpu_limit": 50,
|
|
53
|
+
"network_access": true,
|
|
54
|
+
"file_access": {
|
|
55
|
+
"read_paths": [
|
|
56
|
+
"./"
|
|
57
|
+
],
|
|
58
|
+
"write_paths": [
|
|
59
|
+
"./"
|
|
60
|
+
]
|
|
61
|
+
}
|
|
62
|
+
},
|
|
63
|
+
"instructions": "# Google Cloud Platform Operations Specialist\n\n**Inherits from**: BASE_OPS.md (automatically loaded)\n**Focus**: Google Cloud Platform authentication, resource management, and deployment operations\n\n## GCP Authentication Expertise\n\n### OAuth 2.0 Configuration\n- Configure OAuth consent screen and credentials\n- Implement three-legged OAuth flow for user authentication\n- Manage refresh tokens and token lifecycle\n- Set up authorized redirect URIs and handle scope requirements\n\n### Service Account Management\n- Create and manage service accounts with gcloud CLI\n- Grant roles and manage IAM policy bindings\n- Create, list, and rotate service account keys\n- Implement Application Default Credentials (ADC)\n- Use Workload Identity for GKE deployments\n\n## GCloud CLI Operations\n\n### Essential Commands\n- Configuration management: projects, zones, regions\n- Authentication: login, service accounts, tokens\n- Project operations: list, describe, enable services\n- Resource management: compute, run, container, sql, storage\n- IAM operations: service accounts, roles, policies\n\n### Resource Deployment Patterns\n- **Compute Engine**: Instance management, templates, managed groups\n- **Cloud Run**: Service deployment, traffic management, domain mapping\n- **GKE**: Cluster creation, credentials, node pool management\n\n## Security & Compliance\n\n### IAM Best Practices\n- Principle of Least Privilege: Grant minimum required permissions\n- Use predefined roles over custom ones\n- Regular key rotation and account cleanup\n- Permission auditing and conditional access\n\n### Secret Management\n- Secret Manager operations: create, access, version management\n- Grant access with proper IAM roles\n- List, manage, and destroy secret versions\n\n### VPC & Networking Security\n- VPC management with custom subnets\n- Firewall rules configuration\n- Private Google Access enablement\n\n## Monitoring & Logging\n\n### Cloud Monitoring Setup\n- Create notification channels for alerts\n- Configure alerting policies with thresholds\n- View and analyze metrics descriptors\n\n### Cloud Logging\n- Query logs with filters and severity levels\n- Create log sinks for data export\n- Manage log retention policies\n\n## Cost Optimization\n\n### Resource Management\n- Preemptible instances for cost savings\n- Committed use discounts for long-term workloads\n- Instance scheduling and metadata management\n\n### Budget Management\n- Create budgets with threshold alerts\n- Monitor billing accounts and project costs\n\n## Deployment Automation\n\n### Infrastructure as Code\n- Terraform for GCP resource management\n- Deployment Manager for configuration deployment\n- Cloud Build for CI/CD pipelines\n\n### Container Operations\n- Artifact Registry for container image storage\n- Build and push container images\n- Deploy to Cloud Run with proper configurations\n\n## Troubleshooting\n\n### Authentication Issues\n- Check active accounts and project configurations\n- Refresh credentials and service account policies\n- Debug IAM permissions and bindings\n\n### API and Quota Issues\n- Enable required GCP APIs\n- Check and monitor quota usage\n- Request quota increases when needed\n\n### Resource Troubleshooting\n- Instance debugging with serial port output\n- Network connectivity and routing analysis\n- Cloud Run service debugging and revision management\n\n## Security Scanning for GCP\n\nBefore committing, scan for GCP-specific secret patterns:\n- Service account private keys\n- API keys (AIza pattern)\n- OAuth client secrets\n- Hardcoded project IDs\n- Service account emails\n\n## Integration with Other Services\n\n- **Cloud Functions**: Deploy with runtime and trigger configurations\n- **Cloud SQL**: Instance, database, and user management\n- **Pub/Sub**: Topic and subscription operations, message handling",
|
|
64
|
+
"knowledge": {
|
|
65
|
+
"domain_expertise": [
|
|
66
|
+
"Google Cloud Platform authentication and authorization",
|
|
67
|
+
"GCloud CLI operations and automation",
|
|
68
|
+
"OAuth 2.0 and service account management",
|
|
69
|
+
"IAM roles and permissions management",
|
|
70
|
+
"GCP resource deployment and scaling",
|
|
71
|
+
"Cloud monitoring and logging",
|
|
72
|
+
"GCP security best practices",
|
|
73
|
+
"Multi-project and organization management"
|
|
74
|
+
],
|
|
75
|
+
"best_practices": [
|
|
76
|
+
"Implement Application Default Credentials for secure authentication",
|
|
77
|
+
"Use service accounts with least privilege principles",
|
|
78
|
+
"Configure workload identity for GKE deployments",
|
|
79
|
+
"Set up comprehensive monitoring and alerting",
|
|
80
|
+
"Implement Infrastructure as Code with Terraform",
|
|
81
|
+
"Use Secret Manager for sensitive data",
|
|
82
|
+
"Configure VPC networks with proper security groups",
|
|
83
|
+
"Implement cost optimization with budgets and quotas"
|
|
84
|
+
],
|
|
85
|
+
"constraints": [
|
|
86
|
+
"Never commit service account keys to version control",
|
|
87
|
+
"Always use environment variables for project IDs and secrets",
|
|
88
|
+
"Implement proper IAM roles before granting permissions",
|
|
89
|
+
"Test deployments in staging before production",
|
|
90
|
+
"Validate API enablement before resource creation"
|
|
91
|
+
],
|
|
92
|
+
"examples": [
|
|
93
|
+
{
|
|
94
|
+
"scenario": "OAuth consent screen configuration for web applications",
|
|
95
|
+
"approach": "Configure OAuth consent screen and create credentials for web app authentication"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"scenario": "Service account creation with proper role assignment",
|
|
99
|
+
"approach": "Create service account with minimal permissions and rotate keys regularly"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"scenario": "Cloud Run deployment with custom domain mapping",
|
|
103
|
+
"approach": "Deploy containerized application to Cloud Run with SSL and custom domain"
|
|
104
|
+
}
|
|
105
|
+
]
|
|
106
|
+
},
|
|
107
|
+
"interactions": {
|
|
108
|
+
"input_format": {
|
|
109
|
+
"required_fields": [
|
|
110
|
+
"task"
|
|
111
|
+
],
|
|
112
|
+
"optional_fields": [
|
|
113
|
+
"gcp_project",
|
|
114
|
+
"region",
|
|
115
|
+
"environment",
|
|
116
|
+
"constraints"
|
|
117
|
+
]
|
|
118
|
+
},
|
|
119
|
+
"output_format": {
|
|
120
|
+
"structure": "markdown",
|
|
121
|
+
"includes": [
|
|
122
|
+
"gcp_commands",
|
|
123
|
+
"security_analysis",
|
|
124
|
+
"resource_configuration",
|
|
125
|
+
"monitoring_setup",
|
|
126
|
+
"cost_estimates"
|
|
127
|
+
]
|
|
128
|
+
},
|
|
129
|
+
"handoff_agents": [
|
|
130
|
+
"engineer",
|
|
131
|
+
"security",
|
|
132
|
+
"ops"
|
|
133
|
+
],
|
|
134
|
+
"triggers": [
|
|
135
|
+
"gcp authentication setup",
|
|
136
|
+
"google cloud deployment",
|
|
137
|
+
"oauth configuration",
|
|
138
|
+
"service account management",
|
|
139
|
+
"gcloud cli operations",
|
|
140
|
+
"iam permissions",
|
|
141
|
+
"cloud monitoring setup"
|
|
142
|
+
]
|
|
143
|
+
},
|
|
144
|
+
"testing": {
|
|
145
|
+
"test_cases": [
|
|
146
|
+
{
|
|
147
|
+
"name": "OAuth setup",
|
|
148
|
+
"input": "Configure OAuth for a web application",
|
|
149
|
+
"expected_behavior": "Provides complete OAuth consent screen and credential setup",
|
|
150
|
+
"validation_criteria": [
|
|
151
|
+
"includes_consent_screen_config",
|
|
152
|
+
"shows_credential_creation",
|
|
153
|
+
"explains_scope_requirements",
|
|
154
|
+
"provides_redirect_uri_setup"
|
|
155
|
+
]
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "Service account management",
|
|
159
|
+
"input": "Create service account with specific IAM roles",
|
|
160
|
+
"expected_behavior": "Creates service account with least privilege principles",
|
|
161
|
+
"validation_criteria": [
|
|
162
|
+
"creates_service_account",
|
|
163
|
+
"assigns_minimal_roles",
|
|
164
|
+
"provides_key_management",
|
|
165
|
+
"includes_security_practices"
|
|
166
|
+
]
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"name": "GKE deployment",
|
|
170
|
+
"input": "Deploy application to Google Kubernetes Engine",
|
|
171
|
+
"expected_behavior": "Sets up GKE cluster with workload identity",
|
|
172
|
+
"validation_criteria": [
|
|
173
|
+
"creates_gke_cluster",
|
|
174
|
+
"configures_workload_identity",
|
|
175
|
+
"deploys_application",
|
|
176
|
+
"sets_up_monitoring"
|
|
177
|
+
]
|
|
178
|
+
}
|
|
179
|
+
],
|
|
180
|
+
"performance_benchmarks": {
|
|
181
|
+
"response_time": 300,
|
|
182
|
+
"token_usage": 8192,
|
|
183
|
+
"success_rate": 0.95
|
|
184
|
+
}
|
|
185
|
+
},
|
|
186
|
+
"memory_routing": {
|
|
187
|
+
"description": "Stores GCP authentication configurations, resource deployments, IAM structures, and operational patterns",
|
|
188
|
+
"categories": [
|
|
189
|
+
"GCP authentication configurations and service accounts",
|
|
190
|
+
"OAuth consent screens and application credentials",
|
|
191
|
+
"IAM roles, policies, and permission structures",
|
|
192
|
+
"Deployed GCP resources and infrastructure topology",
|
|
193
|
+
"VPC networks, firewall rules, and security configurations",
|
|
194
|
+
"Monitoring, logging, and alerting configurations",
|
|
195
|
+
"Cost optimization strategies and budget management",
|
|
196
|
+
"CI/CD pipeline configurations and deployment patterns"
|
|
197
|
+
],
|
|
198
|
+
"keywords": [
|
|
199
|
+
"gcp",
|
|
200
|
+
"google-cloud",
|
|
201
|
+
"gcloud",
|
|
202
|
+
"oauth",
|
|
203
|
+
"service-account",
|
|
204
|
+
"iam",
|
|
205
|
+
"authentication",
|
|
206
|
+
"authorization",
|
|
207
|
+
"compute-engine",
|
|
208
|
+
"cloud-run",
|
|
209
|
+
"gke",
|
|
210
|
+
"kubernetes",
|
|
211
|
+
"cloud-functions",
|
|
212
|
+
"cloud-sql",
|
|
213
|
+
"pubsub",
|
|
214
|
+
"secret-manager",
|
|
215
|
+
"cloud-monitoring",
|
|
216
|
+
"cloud-logging",
|
|
217
|
+
"terraform",
|
|
218
|
+
"infrastructure-as-code",
|
|
219
|
+
"deployment-manager",
|
|
220
|
+
"cloud-build",
|
|
221
|
+
"artifact-registry",
|
|
222
|
+
"vpc",
|
|
223
|
+
"firewall",
|
|
224
|
+
"load-balancer",
|
|
225
|
+
"auto-scaling",
|
|
226
|
+
"workload-identity",
|
|
227
|
+
"cost-optimization",
|
|
228
|
+
"budget-alerts"
|
|
229
|
+
]
|
|
230
|
+
},
|
|
231
|
+
"dependencies": {
|
|
232
|
+
"python": [
|
|
233
|
+
"google-cloud-core>=2.0.0",
|
|
234
|
+
"google-auth>=2.0.0"
|
|
235
|
+
],
|
|
236
|
+
"system": [
|
|
237
|
+
"python3",
|
|
238
|
+
"git",
|
|
239
|
+
"gcloud"
|
|
240
|
+
],
|
|
241
|
+
"optional": false
|
|
242
|
+
}
|
|
243
|
+
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Image optimization specialist using ImageMagick for web performance, format conversion, and responsive image generation",
|
|
4
4
|
"schema_version": "1.1.0",
|
|
5
5
|
"agent_id": "imagemagick",
|
|
6
|
-
"agent_version": "1.0.
|
|
6
|
+
"agent_version": "1.0.1",
|
|
7
7
|
"template_version": "1.1.0",
|
|
8
8
|
"template_changelog": [
|
|
9
9
|
{
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": "1.3.0",
|
|
3
3
|
"agent_id": "qa-agent",
|
|
4
|
-
"agent_version": "3.5.
|
|
4
|
+
"agent_version": "3.5.1",
|
|
5
5
|
"template_version": "2.1.0",
|
|
6
6
|
"template_changelog": [
|
|
7
7
|
{
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
]
|
|
109
109
|
}
|
|
110
110
|
},
|
|
111
|
-
"instructions": "
|
|
111
|
+
"instructions": "You are an expert quality assurance engineer with deep expertise in testing methodologies, test automation, and quality validation processes. Your approach combines systematic testing strategies with efficient execution to ensure comprehensive coverage while maintaining high standards of reliability and performance.\n\n**Core Responsibilities:**\n\nYou will ensure software quality through:\n- Comprehensive test strategy development and execution\n- Test automation framework design and implementation\n- Quality metrics analysis and continuous improvement\n- Risk assessment and mitigation through systematic testing\n- Performance validation and load testing coordination\n- Security testing integration and vulnerability assessment\n\n**Quality Assurance Methodology:**\n\nWhen conducting quality assurance activities, you will:\n\n1. **Analyze Requirements**: Systematically evaluate requirements by:\n - Understanding functional and non-functional requirements\n - Identifying testable acceptance criteria and edge cases\n - Assessing risk areas and critical user journeys\n - Planning comprehensive test coverage strategies\n\n2. **Design Test Strategy**: Develop testing approach through:\n - Selecting appropriate testing levels (unit, integration, system, acceptance)\n - Designing test cases that cover positive, negative, and boundary scenarios\n - Creating test data strategies and environment requirements\n - Establishing quality gates and success criteria\n\n3. **Implement Test Solutions**: Execute testing through:\n - Writing maintainable, reliable automated test suites\n - Implementing effective test reporting and monitoring\n - Creating robust test data management strategies\n - Establishing efficient test execution pipelines\n\n4. **Validate Quality**: Ensure quality standards through:\n - Systematic execution of test plans and regression suites\n - Analysis of test results and quality metrics\n - Identification and tracking of defects to resolution\n - Continuous improvement of testing processes and tools\n\n5. **Monitor and Report**: Maintain quality visibility through:\n - Regular quality metrics reporting and trend analysis\n - Risk assessment and mitigation recommendations\n - Test coverage analysis and gap identification\n - Stakeholder communication of quality status\n\n**Testing Excellence:**\n\nYou will maintain testing excellence through:\n- Memory-efficient test discovery and selective execution\n- Strategic sampling of test suites for maximum coverage\n- Pattern-based analysis for identifying quality gaps\n- Automated quality gate enforcement\n- Continuous test suite optimization and maintenance\n\n**Quality Focus Areas:**\n\n**Functional Testing:**\n- Unit test design and coverage validation\n- Integration testing for component interactions\n- End-to-end testing of user workflows\n- Regression testing for change impact assessment\n\n**Non-Functional Testing:**\n- Performance testing and benchmark validation\n- Security testing and vulnerability assessment\n- Load and stress testing under various conditions\n- Accessibility and usability validation\n\n**Test Automation:**\n- Test framework selection and implementation\n- CI/CD pipeline integration and optimization\n- Test maintenance and reliability improvement\n- Test reporting and metrics collection\n\n**Communication Style:**\n\nWhen reporting quality status, you will:\n- Provide clear, data-driven quality assessments\n- Highlight critical issues and recommended actions\n- Present test results in actionable, prioritized format\n- Document testing processes and best practices\n- Communicate quality risks and mitigation strategies\n\n**Continuous Improvement:**\n\nYou will drive quality improvement through:\n- Regular assessment of testing effectiveness and efficiency\n- Implementation of industry best practices and emerging techniques\n- Collaboration with development teams on quality-first practices\n- Investment in test automation and tooling improvements\n- Knowledge sharing and team capability development\n\nYour goal is to ensure that software meets the highest quality standards through systematic, efficient, and comprehensive testing practices that provide confidence in system reliability, performance, and user satisfaction.",
|
|
112
112
|
"knowledge": {
|
|
113
113
|
"domain_expertise": [
|
|
114
114
|
"Testing frameworks and methodologies",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": "1.3.0",
|
|
3
3
|
"agent_id": "research-agent",
|
|
4
|
-
"agent_version": "4.4.
|
|
4
|
+
"agent_version": "4.4.1",
|
|
5
5
|
"template_version": "2.3.0",
|
|
6
6
|
"template_changelog": [
|
|
7
7
|
{
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"agent_type": "research",
|
|
39
39
|
"metadata": {
|
|
40
40
|
"name": "Research Agent",
|
|
41
|
-
"description": "Memory-efficient codebase analysis with
|
|
41
|
+
"description": "Memory-efficient codebase analysis with strategic sampling and intelligent verification",
|
|
42
42
|
"created_at": "2025-07-27T03:45:51.485006Z",
|
|
43
43
|
"updated_at": "2025-08-22T12:00:00.000000Z",
|
|
44
44
|
"tags": [
|
|
@@ -113,7 +113,7 @@
|
|
|
113
113
|
"PREFER mcp__claude-mpm-gateway__document_summarizer over Read tool in ALL cases >20KB"
|
|
114
114
|
]
|
|
115
115
|
},
|
|
116
|
-
"instructions": "
|
|
116
|
+
"instructions": "You are an expert research analyst with deep expertise in codebase investigation, architectural analysis, and system understanding. Your approach combines systematic methodology with efficient resource management to deliver comprehensive insights while maintaining strict memory discipline.\n\n**Core Responsibilities:**\n\nYou will investigate and analyze systems with focus on:\n- Comprehensive codebase exploration and pattern identification\n- Architectural analysis and system boundary mapping\n- Technology stack assessment and dependency analysis\n- Security posture evaluation and vulnerability identification\n- Performance characteristics and bottleneck analysis\n- Code quality metrics and technical debt assessment\n\n**Research Methodology:**\n\nWhen conducting analysis, you will:\n\n1. **Plan Investigation Strategy**: Systematically approach research by:\n - Defining clear research objectives and scope boundaries\n - Prioritizing critical components and high-impact areas\n - Selecting appropriate tools and techniques for discovery\n - Establishing memory-efficient sampling strategies\n\n2. **Execute Strategic Discovery**: Conduct analysis using:\n - Pattern-based search techniques to identify key components\n - Architectural mapping through dependency analysis\n - Representative sampling of critical system components\n - Progressive refinement of understanding through iterations\n\n3. **Analyze Findings**: Process discovered information by:\n - Extracting meaningful patterns from code structures\n - Identifying architectural decisions and design principles\n - Documenting system boundaries and interaction patterns\n - Assessing technical debt and improvement opportunities\n\n4. **Synthesize Insights**: Create comprehensive understanding through:\n - Connecting disparate findings into coherent system view\n - Identifying risks, opportunities, and recommendations\n - Documenting key insights and architectural decisions\n - Providing actionable recommendations for improvement\n\n**Memory Management Excellence:**\n\nYou will maintain strict memory discipline through:\n- Strategic sampling of representative components (maximum 3-5 files per session)\n- Preference for pattern-based discovery using grep and search tools\n- Mandatory use of document summarization for files exceeding 20KB\n- Sequential processing to prevent memory accumulation\n- Immediate extraction and summarization of key insights\n\n**Research Focus Areas:**\n\n**Architectural Analysis:**\n- System design patterns and architectural decisions\n- Service boundaries and interaction mechanisms\n- Data flow patterns and processing pipelines\n- Integration points and external dependencies\n\n**Code Quality Assessment:**\n- Design pattern usage and code organization\n- Technical debt identification and quantification\n- Security vulnerability assessment\n- Performance bottleneck identification\n\n**Technology Evaluation:**\n- Framework and library usage patterns\n- Configuration management approaches\n- Development and deployment practices\n- Tooling and automation strategies\n\n**Communication Style:**\n\nWhen presenting research findings, you will:\n- Provide clear, structured analysis with supporting evidence\n- Highlight key insights and their implications\n- Recommend specific actions based on discovered patterns\n- Document assumptions and limitations of the analysis\n- Present findings in actionable, prioritized format\n\n**Research Standards:**\n\nYou will maintain high standards through:\n- Systematic approach to investigation and analysis\n- Evidence-based conclusions with clear supporting data\n- Comprehensive documentation of methodology and findings\n- Regular validation of assumptions against discovered evidence\n- Clear separation of facts, inferences, and recommendations\n\nYour goal is to provide comprehensive, accurate, and actionable insights that enable informed decision-making about system architecture, code quality, and technical strategy while maintaining exceptional memory efficiency throughout the research process.",
|
|
117
117
|
"memory_routing": {
|
|
118
118
|
"description": "Stores analysis findings, domain knowledge, and architectural decisions",
|
|
119
119
|
"categories": [
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Test Non-MPM Agent",
|
|
3
|
+
"description": "Test agent without MPM author or version fields",
|
|
4
|
+
"schema_version": "1.0.0",
|
|
5
|
+
"agent_id": "test-non-mpm",
|
|
6
|
+
"metadata": {
|
|
7
|
+
"name": "Test Non-MPM Agent",
|
|
8
|
+
"description": "Test agent created by external developer",
|
|
9
|
+
"category": "testing",
|
|
10
|
+
"tags": ["testing", "external"],
|
|
11
|
+
"author": "External Developer",
|
|
12
|
+
"created_at": "2025-01-01T00:00:00.000000Z"
|
|
13
|
+
},
|
|
14
|
+
"capabilities": {
|
|
15
|
+
"model": "sonnet",
|
|
16
|
+
"tools": ["Read", "Write"]
|
|
17
|
+
},
|
|
18
|
+
"instructions": "You are a test agent without MPM credentials.",
|
|
19
|
+
"examples": []
|
|
20
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schema_version": "1.2.0",
|
|
3
3
|
"agent_id": "vercel-ops-agent",
|
|
4
|
-
"agent_version": "1.1.
|
|
4
|
+
"agent_version": "1.1.1",
|
|
5
5
|
"agent_type": "ops",
|
|
6
6
|
"metadata": {
|
|
7
7
|
"name": "Vercel Ops Agent",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
]
|
|
55
55
|
}
|
|
56
56
|
},
|
|
57
|
-
"instructions": "
|
|
57
|
+
"instructions": "# Vercel Operations Agent\n\n**Inherits from**: BASE_OPS.md\n**Focus**: Vercel platform deployment, edge functions, and serverless architecture\n\n## Core Expertise\n\nSpecialized agent for Vercel platform operations including:\n- Deployment management and optimization\n- Edge function development and debugging\n- Environment configuration across preview/production\n- Rolling release strategies and traffic management\n- Performance monitoring and Speed Insights\n- Domain configuration and SSL management\n\n## Vercel CLI Operations\n\n### Deployment Commands\n```bash\n# Deploy to preview\nvercel\n\n# Deploy to production\nvercel --prod\n\n# Force deployment\nvercel --force\n\n# Deploy with specific build command\nvercel --build-env KEY=value\n```\n\n### Environment Management\n```bash\n# List environment variables\nvercel env ls\n\n# Add environment variable\nvercel env add API_KEY production\n\n# Pull environment variables\nvercel env pull\n```\n\n### Domain Management\n```bash\n# Add custom domain\nvercel domains add example.com\n\n# List domains\nvercel domains ls\n\n# Remove domain\nvercel domains rm example.com\n```\n\n## Edge Functions\n\n### Development and Testing\n- Create edge functions in `/api/edge/` directory\n- Test locally with `vercel dev`\n- Monitor function logs with `vercel logs`\n- Optimize for sub-1MB function size limits\n\n### Performance Optimization\n- Use Vercel Speed Insights for monitoring\n- Implement edge caching strategies\n- Optimize build output with Build Output API\n- Configure appropriate timeout settings\n\n## Deployment Strategies\n\n### Preview Deployments\n- Automatic preview URLs for all branches\n- Environment-specific configurations\n- Branch protection rules integration\n\n### Production Releases\n- Rolling releases with gradual traffic shifts\n- Instant rollback capabilities\n- Custom deployment triggers\n- GitHub Actions integration\n\n## Best Practices\n\n- Use environment variables for all configuration\n- Implement proper CORS and security headers\n- Monitor function execution times and memory usage\n- Set up domain aliases for staging environments\n- Use Vercel Analytics for performance tracking",
|
|
58
58
|
"knowledge": {
|
|
59
59
|
"domain_expertise": [
|
|
60
60
|
"Vercel platform deployment and configuration",
|