claude-mpm 4.2.39__tar.gz → 4.2.42__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.
Files changed (681) hide show
  1. claude_mpm-4.2.42/BUILD_NUMBER +1 -0
  2. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/PKG-INFO +1 -1
  3. claude_mpm-4.2.42/VERSION +1 -0
  4. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/pyproject.toml +2 -2
  5. claude_mpm-4.2.42/src/claude_mpm/VERSION +1 -0
  6. claude_mpm-4.2.42/src/claude_mpm/agents/BASE_ENGINEER.md +167 -0
  7. claude_mpm-4.2.42/src/claude_mpm/agents/BASE_OPS.md +209 -0
  8. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/INSTRUCTIONS.md +120 -11
  9. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/WORKFLOW.md +160 -10
  10. claude_mpm-4.2.42/src/claude_mpm/agents/templates/react_engineer.json +217 -0
  11. claude_mpm-4.2.42/src/claude_mpm/agents/templates/web_qa.json +285 -0
  12. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/__init__.py +3 -5
  13. claude_mpm-4.2.42/src/claude_mpm/commands/mpm-browser-monitor.md +370 -0
  14. claude_mpm-4.2.42/src/claude_mpm/commands/mpm-monitor.md +177 -0
  15. claude_mpm-4.2.42/src/claude_mpm/dashboard/static/built/components/code-viewer.js +1076 -0
  16. {claude_mpm-4.2.39/src/claude_mpm/dashboard/static/js → claude_mpm-4.2.42/src/claude_mpm/dashboard/static/built}/components/ui-state-manager.js +31 -0
  17. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/css/dashboard.css +2 -0
  18. claude_mpm-4.2.42/src/claude_mpm/dashboard/static/js/browser-console-monitor.js +495 -0
  19. claude_mpm-4.2.42/src/claude_mpm/dashboard/static/js/components/browser-log-viewer.js +763 -0
  20. claude_mpm-4.2.42/src/claude_mpm/dashboard/static/js/components/code-viewer.js +1071 -0
  21. claude_mpm-4.2.42/src/claude_mpm/dashboard/static/js/components/diff-viewer.js +891 -0
  22. claude_mpm-4.2.42/src/claude_mpm/dashboard/static/js/components/file-change-tracker.js +443 -0
  23. claude_mpm-4.2.42/src/claude_mpm/dashboard/static/js/components/file-change-viewer.js +690 -0
  24. claude_mpm-4.2.42/src/claude_mpm/dashboard/static/js/components/ui-state-manager.js +722 -0
  25. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/socket-client.js +2 -2
  26. claude_mpm-4.2.42/src/claude_mpm/dashboard/static/test-browser-monitor.html +470 -0
  27. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/templates/index.html +62 -99
  28. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/cli/unified_dashboard_manager.py +1 -1
  29. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/daemon.py +69 -36
  30. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/daemon_manager.py +186 -29
  31. claude_mpm-4.2.42/src/claude_mpm/services/monitor/handlers/browser.py +451 -0
  32. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/server.py +272 -5
  33. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm.egg-info/PKG-INFO +1 -1
  34. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm.egg-info/SOURCES.txt +10 -4
  35. claude_mpm-4.2.39/BUILD_NUMBER +0 -1
  36. claude_mpm-4.2.39/VERSION +0 -1
  37. claude_mpm-4.2.39/src/claude_mpm/VERSION +0 -1
  38. claude_mpm-4.2.39/src/claude_mpm/agents/BASE_ENGINEER.md +0 -54
  39. claude_mpm-4.2.39/src/claude_mpm/agents/BASE_OPS.md +0 -54
  40. claude_mpm-4.2.39/src/claude_mpm/agents/templates/agentic-coder-optimizer.json +0 -233
  41. claude_mpm-4.2.39/src/claude_mpm/agents/templates/agentic-coder-optimizer.md +0 -44
  42. claude_mpm-4.2.39/src/claude_mpm/agents/templates/test-non-mpm.json +0 -20
  43. claude_mpm-4.2.39/src/claude_mpm/agents/templates/web_qa.json +0 -249
  44. claude_mpm-4.2.39/src/claude_mpm/dashboard/static/built/components/code-viewer.js +0 -2
  45. claude_mpm-4.2.39/src/claude_mpm/dashboard/static/dist/components/code-viewer.js +0 -2
  46. claude_mpm-4.2.39/src/claude_mpm/dashboard/static/dist/components/ui-state-manager.js +0 -2
  47. claude_mpm-4.2.39/src/claude_mpm/dashboard/static/js/components/code-viewer.js +0 -480
  48. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/CLAUDE.md +0 -0
  49. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/LICENSE +0 -0
  50. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/MANIFEST.in +0 -0
  51. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/README.md +0 -0
  52. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/scripts/ticket +0 -0
  53. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/setup.cfg +0 -0
  54. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/BUILD_NUMBER +0 -0
  55. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/__init__.py +0 -0
  56. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/__main__.py +0 -0
  57. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/BASE_AGENT_TEMPLATE.md +0 -0
  58. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/BASE_DOCUMENTATION.md +0 -0
  59. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/BASE_PM.md +0 -0
  60. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/BASE_QA.md +0 -0
  61. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/BASE_RESEARCH.md +0 -0
  62. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/MEMORY.md +0 -0
  63. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/OUTPUT_STYLE.md +0 -0
  64. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/__init__.py +0 -0
  65. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/agent-template.yaml +0 -0
  66. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/agent_loader.py +0 -0
  67. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/agent_loader_integration.py +0 -0
  68. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/agents_metadata.py +0 -0
  69. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/async_agent_loader.py +0 -0
  70. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/base_agent.json +0 -0
  71. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/base_agent_loader.py +0 -0
  72. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/frontmatter_validator.py +0 -0
  73. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/system_agent_config.py +0 -0
  74. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/.claude-mpm/memories/README.md +0 -0
  75. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/.claude-mpm/memories/engineer_memories.md +0 -0
  76. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/__init__.py +0 -0
  77. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/agent-manager.json +0 -0
  78. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/agent-manager.md +0 -0
  79. /claude_mpm-4.2.39/src/claude_mpm/agents/templates/agentic_coder_optimizer.json → /claude_mpm-4.2.42/src/claude_mpm/agents/templates/agentic-coder-optimizer.json +0 -0
  80. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/api_qa.json +0 -0
  81. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/code_analyzer.json +0 -0
  82. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/data_engineer.json +0 -0
  83. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/documentation.json +0 -0
  84. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/engineer.json +0 -0
  85. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/gcp_ops_agent.json +0 -0
  86. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/imagemagick.json +0 -0
  87. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/logs/prompts/agent_engineer_20250826_014258_728.md +0 -0
  88. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/logs/prompts/agent_engineer_20250901_010124_142.md +0 -0
  89. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/memory_manager.json +0 -0
  90. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/ops.json +0 -0
  91. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/project_organizer.json +0 -0
  92. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/qa.json +0 -0
  93. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/refactoring_engineer.json +0 -0
  94. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/research.json +0 -0
  95. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/security.json +0 -0
  96. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/ticketing.json +0 -0
  97. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/vercel_ops_agent.json +0 -0
  98. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/version_control.json +0 -0
  99. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/agents/templates/web_ui.json +0 -0
  100. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/__main__.py +0 -0
  101. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/__init__.py +0 -0
  102. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/agent_manager.py +0 -0
  103. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/agents.py +0 -0
  104. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/aggregate.py +0 -0
  105. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/analyze.py +0 -0
  106. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/analyze_code.py +0 -0
  107. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/cleanup.py +0 -0
  108. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/cleanup_orphaned_agents.py +0 -0
  109. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/config.py +0 -0
  110. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/configure.py +0 -0
  111. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/configure_tui.py +0 -0
  112. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/dashboard.py +0 -0
  113. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/debug.py +0 -0
  114. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/doctor.py +0 -0
  115. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/info.py +0 -0
  116. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/mcp.py +0 -0
  117. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/mcp_command_router.py +0 -0
  118. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/mcp_config_commands.py +0 -0
  119. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/mcp_install_commands.py +0 -0
  120. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/mcp_pipx_config.py +0 -0
  121. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/mcp_server_commands.py +0 -0
  122. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/mcp_tool_commands.py +0 -0
  123. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/memory.py +0 -0
  124. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/monitor.py +0 -0
  125. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/mpm_init.py +0 -0
  126. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/mpm_init_handler.py +0 -0
  127. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/run.py +0 -0
  128. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/tickets.py +0 -0
  129. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/commands/uninstall.py +0 -0
  130. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/interactive/__init__.py +0 -0
  131. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/interactive/agent_wizard.py +0 -0
  132. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parser.py +0 -0
  133. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/__init__.py +0 -0
  134. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/agent_manager_parser.py +0 -0
  135. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/agents_parser.py +0 -0
  136. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/analyze_code_parser.py +0 -0
  137. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/analyze_parser.py +0 -0
  138. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/base_parser.py +0 -0
  139. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/config_parser.py +0 -0
  140. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/configure_parser.py +0 -0
  141. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/dashboard_parser.py +0 -0
  142. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/debug_parser.py +0 -0
  143. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/mcp_parser.py +0 -0
  144. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/memory_parser.py +0 -0
  145. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/monitor_parser.py +0 -0
  146. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/mpm_init_parser.py +0 -0
  147. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/run_parser.py +0 -0
  148. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/parsers/tickets_parser.py +0 -0
  149. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/shared/__init__.py +0 -0
  150. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/shared/argument_patterns.py +0 -0
  151. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/shared/base_command.py +0 -0
  152. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/shared/error_handling.py +0 -0
  153. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/shared/output_formatters.py +0 -0
  154. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/startup_logging.py +0 -0
  155. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/ticket_cli.py +0 -0
  156. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli/utils.py +0 -0
  157. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli_module/__init__.py +0 -0
  158. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli_module/args.py +0 -0
  159. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli_module/commands.py +0 -0
  160. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/cli_module/migration_example.py +0 -0
  161. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/commands/__init__.py +0 -0
  162. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/commands/mpm-agents.md +0 -0
  163. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/commands/mpm-config.md +0 -0
  164. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/commands/mpm-doctor.md +0 -0
  165. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/commands/mpm-help.md +0 -0
  166. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/commands/mpm-init.md +0 -0
  167. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/commands/mpm-status.md +0 -0
  168. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/commands/mpm-tickets.md +0 -0
  169. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/commands/mpm.md +0 -0
  170. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/config/__init__.py +0 -0
  171. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/config/agent_config.py +0 -0
  172. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/config/experimental_features.py +0 -0
  173. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/config/paths.py +0 -0
  174. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/config/socketio_config.py +0 -0
  175. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/constants.py +0 -0
  176. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/__init__.py +0 -0
  177. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/agent_name_normalizer.py +0 -0
  178. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/agent_registry.py +0 -0
  179. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/agent_session_manager.py +0 -0
  180. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/base_service.py +0 -0
  181. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/cache.py +0 -0
  182. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/claude_runner.py +0 -0
  183. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/config.py +0 -0
  184. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/config_aliases.py +0 -0
  185. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/config_constants.py +0 -0
  186. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/constants.py +0 -0
  187. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/container.py +0 -0
  188. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/error_handler.py +0 -0
  189. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/exceptions.py +0 -0
  190. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/factories.py +0 -0
  191. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/file_utils.py +0 -0
  192. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/framework_loader.py +0 -0
  193. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/hook_manager.py +0 -0
  194. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/hook_performance_config.py +0 -0
  195. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/injectable_service.py +0 -0
  196. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/instruction_reinforcement_hook.py +0 -0
  197. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/interactive_session.py +0 -0
  198. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/interfaces.py +0 -0
  199. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/lazy.py +0 -0
  200. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/log_manager.py +0 -0
  201. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/logger.py +0 -0
  202. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/logging_config.py +0 -0
  203. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/logging_utils.py +0 -0
  204. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/minimal_framework_loader.py +0 -0
  205. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/mixins.py +0 -0
  206. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/oneshot_session.py +0 -0
  207. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/optimized_agent_loader.py +0 -0
  208. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/optimized_startup.py +0 -0
  209. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/output_style_manager.py +0 -0
  210. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/pm_hook_interceptor.py +0 -0
  211. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/service_registry.py +0 -0
  212. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/session_manager.py +0 -0
  213. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/shared/__init__.py +0 -0
  214. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/shared/config_loader.py +0 -0
  215. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/shared/path_resolver.py +0 -0
  216. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/shared/singleton_manager.py +0 -0
  217. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/socketio_pool.py +0 -0
  218. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/tool_access_control.py +0 -0
  219. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/types.py +0 -0
  220. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/typing_utils.py +0 -0
  221. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/unified_agent_registry.py +0 -0
  222. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/unified_config.py +0 -0
  223. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/core/unified_paths.py +0 -0
  224. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/.claude-mpm/socketio-instances.json +0 -0
  225. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/__init__.py +0 -0
  226. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/analysis_runner.py +0 -0
  227. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/api/simple_directory.py +0 -0
  228. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/index.html +0 -0
  229. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/open_dashboard.py +0 -0
  230. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/activity-tree.js +0 -0
  231. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/agent-inference.js +0 -0
  232. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/code-tree.js +0 -0
  233. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/event-processor.js +0 -0
  234. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/event-viewer.js +0 -0
  235. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/export-manager.js +0 -0
  236. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/file-tool-tracker.js +0 -0
  237. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/file-viewer.js +0 -0
  238. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/hud-library-loader.js +0 -0
  239. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/hud-manager.js +0 -0
  240. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/hud-visualizer.js +0 -0
  241. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/module-viewer.js +0 -0
  242. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/session-manager.js +0 -0
  243. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/socket-manager.js +0 -0
  244. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/unified-data-viewer.js +0 -0
  245. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/components/working-directory.js +0 -0
  246. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/dashboard.js +0 -0
  247. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/built/socket-client.js +0 -0
  248. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/css/activity.css +0 -0
  249. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/css/code-tree.css +0 -0
  250. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/css/connection-status.css +0 -0
  251. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/activity-tree.js +0 -0
  252. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/agent-inference.js +0 -0
  253. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/code-tree.js +0 -0
  254. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/event-processor.js +0 -0
  255. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/event-viewer.js +0 -0
  256. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/export-manager.js +0 -0
  257. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/file-tool-tracker.js +0 -0
  258. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/file-viewer.js +0 -0
  259. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/hud-library-loader.js +0 -0
  260. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/hud-manager.js +0 -0
  261. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/hud-visualizer.js +0 -0
  262. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/module-viewer.js +0 -0
  263. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/session-manager.js +0 -0
  264. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/socket-manager.js +0 -0
  265. {claude_mpm-4.2.39/src/claude_mpm/dashboard/static/built → claude_mpm-4.2.42/src/claude_mpm/dashboard/static/dist}/components/ui-state-manager.js +0 -0
  266. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/unified-data-viewer.js +0 -0
  267. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/components/working-directory.js +0 -0
  268. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/dashboard.js +0 -0
  269. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/dist/socket-client.js +0 -0
  270. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/activity-tree.js +0 -0
  271. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/agent-hierarchy.js +0 -0
  272. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/agent-inference.js +0 -0
  273. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/build-tracker.js +0 -0
  274. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/code-simple.js +0 -0
  275. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/code-tree/tree-breadcrumb.js +0 -0
  276. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/code-tree/tree-constants.js +0 -0
  277. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/code-tree/tree-search.js +0 -0
  278. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/code-tree/tree-utils.js +0 -0
  279. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/code-tree.js +0 -0
  280. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/connection-debug.js +0 -0
  281. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/event-processor.js +0 -0
  282. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/event-viewer.js +0 -0
  283. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/export-manager.js +0 -0
  284. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/file-tool-tracker.js +0 -0
  285. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/file-viewer.js +0 -0
  286. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/hud-library-loader.js +0 -0
  287. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/hud-manager.js +0 -0
  288. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/hud-visualizer.js +0 -0
  289. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/module-viewer.js +0 -0
  290. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/session-manager.js +0 -0
  291. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/socket-manager.js +0 -0
  292. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/unified-data-viewer.js +0 -0
  293. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/components/working-directory.js +0 -0
  294. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/connection-manager.js +0 -0
  295. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/dashboard.js +0 -0
  296. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/extension-error-handler.js +0 -0
  297. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/shared/dom-helpers.js +0 -0
  298. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/shared/event-bus.js +0 -0
  299. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/shared/logger.js +0 -0
  300. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/js/shared/tooltip-service.js +0 -0
  301. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/test-simple.html +0 -0
  302. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/static/test_debug.html +0 -0
  303. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/templates/code_simple.html +0 -0
  304. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/dashboard/test_dashboard.html +0 -0
  305. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/experimental/__init__.py +0 -0
  306. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/experimental/cli_enhancements.py +0 -0
  307. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/generators/__init__.py +0 -0
  308. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/generators/agent_profile_generator.py +0 -0
  309. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/__init__.py +0 -0
  310. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/base_hook.py +0 -0
  311. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/__init__.py +0 -0
  312. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/connection_pool.py +0 -0
  313. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/event_handlers.py +0 -0
  314. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/hook_handler.py +0 -0
  315. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/hook_handler_eventbus.py +0 -0
  316. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/hook_handler_original.py +0 -0
  317. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/hook_handler_refactored.py +0 -0
  318. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/hook_wrapper.sh +0 -0
  319. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/installer.py +0 -0
  320. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/memory_integration.py +0 -0
  321. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/response_tracking.py +0 -0
  322. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/services/__init__.py +0 -0
  323. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/services/connection_manager.py +0 -0
  324. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/services/connection_manager_http.py +0 -0
  325. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/services/duplicate_detector.py +0 -0
  326. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/services/state_manager.py +0 -0
  327. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/services/subagent_processor.py +0 -0
  328. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/claude_hooks/tool_analysis.py +0 -0
  329. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/memory_integration_hook.py +0 -0
  330. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/tool_call_interceptor.py +0 -0
  331. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/hooks/validation_hooks.py +0 -0
  332. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/init.py +0 -0
  333. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/models/__init__.py +0 -0
  334. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/models/agent_definition.py +0 -0
  335. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/models/agent_session.py +0 -0
  336. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/schemas/__init__.py +0 -0
  337. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/scripts/__init__.py +0 -0
  338. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/scripts/claude-hook-handler.sh +0 -0
  339. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/scripts/launch_monitor.py +0 -0
  340. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/scripts/mcp_server.py +0 -0
  341. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/scripts/mcp_wrapper.py +0 -0
  342. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/scripts/mpm_doctor.py +0 -0
  343. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/scripts/socketio_daemon.py +0 -0
  344. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/scripts/start_activity_logging.py +0 -0
  345. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/__init__.py +0 -0
  346. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agent_capabilities_service.py +0 -0
  347. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/__init__.py +0 -0
  348. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/agent_builder.py +0 -0
  349. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/__init__.py +0 -0
  350. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_config_provider.py +0 -0
  351. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_configuration_manager.py +0 -0
  352. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_definition_factory.py +0 -0
  353. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_deployment.py +0 -0
  354. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_discovery_service.py +0 -0
  355. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_environment_manager.py +0 -0
  356. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_filesystem_manager.py +0 -0
  357. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_format_converter.py +0 -0
  358. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_frontmatter_validator.py +0 -0
  359. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager.py +0 -0
  360. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager_refactored.py +0 -0
  361. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_metrics_collector.py +0 -0
  362. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_operation_service.py +0 -0
  363. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_record_service.py +0 -0
  364. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_restore_handler.py +0 -0
  365. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_state_service.py +0 -0
  366. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_template_builder.py +0 -0
  367. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_validator.py +0 -0
  368. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_version_manager.py +0 -0
  369. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agent_versioning.py +0 -0
  370. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/agents_directory_resolver.py +0 -0
  371. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/async_agent_deployment.py +0 -0
  372. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/base_agent_locator.py +0 -0
  373. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/config/__init__.py +0 -0
  374. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/config/deployment_config.py +0 -0
  375. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/config/deployment_config_manager.py +0 -0
  376. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/deployment_config_loader.py +0 -0
  377. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/deployment_results_manager.py +0 -0
  378. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/deployment_type_detector.py +0 -0
  379. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/deployment_wrapper.py +0 -0
  380. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/facade/__init__.py +0 -0
  381. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/facade/async_deployment_executor.py +0 -0
  382. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/facade/deployment_executor.py +0 -0
  383. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/facade/deployment_facade.py +0 -0
  384. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/facade/sync_deployment_executor.py +0 -0
  385. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/interface_adapter.py +0 -0
  386. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/lifecycle_health_checker.py +0 -0
  387. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/lifecycle_performance_tracker.py +0 -0
  388. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/local_template_deployment.py +0 -0
  389. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/multi_source_deployment_service.py +0 -0
  390. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/pipeline/__init__.py +0 -0
  391. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_builder.py +0 -0
  392. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_context.py +0 -0
  393. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_executor.py +0 -0
  394. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/pipeline/steps/__init__.py +0 -0
  395. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/pipeline/steps/agent_processing_step.py +0 -0
  396. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/pipeline/steps/base_step.py +0 -0
  397. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/pipeline/steps/configuration_step.py +0 -0
  398. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/pipeline/steps/target_directory_step.py +0 -0
  399. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/pipeline/steps/validation_step.py +0 -0
  400. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/processors/__init__.py +0 -0
  401. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_context.py +0 -0
  402. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_result.py +0 -0
  403. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/processors/agent_processor.py +0 -0
  404. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/refactored_agent_deployment_service.py +0 -0
  405. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/results/__init__.py +0 -0
  406. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/results/deployment_metrics.py +0 -0
  407. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/results/deployment_result_builder.py +0 -0
  408. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/single_agent_deployer.py +0 -0
  409. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/strategies/__init__.py +0 -0
  410. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/strategies/base_strategy.py +0 -0
  411. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/strategies/project_strategy.py +0 -0
  412. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/strategies/strategy_selector.py +0 -0
  413. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/strategies/system_strategy.py +0 -0
  414. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/strategies/user_strategy.py +0 -0
  415. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/system_instructions_deployer.py +0 -0
  416. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/validation/__init__.py +0 -0
  417. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/validation/agent_validator.py +0 -0
  418. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/validation/deployment_validator.py +0 -0
  419. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/validation/template_validator.py +0 -0
  420. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/deployment/validation/validation_result.py +0 -0
  421. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/loading/__init__.py +0 -0
  422. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/loading/agent_profile_loader.py +0 -0
  423. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/loading/base_agent_manager.py +0 -0
  424. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/loading/framework_agent_loader.py +0 -0
  425. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/local_template_manager.py +0 -0
  426. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/management/__init__.py +0 -0
  427. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/management/agent_capabilities_generator.py +0 -0
  428. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/management/agent_management_service.py +0 -0
  429. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/memory/__init__.py +0 -0
  430. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/memory/agent_memory_manager.py +0 -0
  431. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/memory/agent_persistence_service.py +0 -0
  432. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/memory/content_manager.py +0 -0
  433. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/memory/memory_categorization_service.py +0 -0
  434. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/memory/memory_file_service.py +0 -0
  435. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/memory/memory_format_service.py +0 -0
  436. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/memory/memory_limits_service.py +0 -0
  437. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/memory/template_generator.py +0 -0
  438. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/registry/__init__.py +0 -0
  439. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/registry/deployed_agent_discovery.py +0 -0
  440. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/agents/registry/modification_tracker.py +0 -0
  441. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/async_session_logger.py +0 -0
  442. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/claude_session_logger.py +0 -0
  443. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/cli/__init__.py +0 -0
  444. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/cli/agent_cleanup_service.py +0 -0
  445. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/cli/agent_dependency_service.py +0 -0
  446. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/cli/agent_listing_service.py +0 -0
  447. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/cli/agent_output_formatter.py +0 -0
  448. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/cli/agent_validation_service.py +0 -0
  449. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/cli/memory_crud_service.py +0 -0
  450. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/cli/memory_output_formatter.py +0 -0
  451. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/cli/session_manager.py +0 -0
  452. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/cli/startup_checker.py +0 -0
  453. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/command_deployment_service.py +0 -0
  454. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/command_handler_service.py +0 -0
  455. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/communication/__init__.py +0 -0
  456. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/__init__.py +0 -0
  457. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/base.py +0 -0
  458. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/cache_manager.py +0 -0
  459. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/interfaces/__init__.py +0 -0
  460. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/interfaces/agent.py +0 -0
  461. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/interfaces/communication.py +0 -0
  462. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/interfaces/infrastructure.py +0 -0
  463. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/interfaces/service.py +0 -0
  464. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/interfaces.py +0 -0
  465. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/memory_manager.py +0 -0
  466. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/path_resolver.py +0 -0
  467. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/service_container.py +0 -0
  468. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/core/service_interfaces.py +0 -0
  469. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/__init__.py +0 -0
  470. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/__init__.py +0 -0
  471. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/agent_check.py +0 -0
  472. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/base_check.py +0 -0
  473. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/claude_desktop_check.py +0 -0
  474. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/common_issues_check.py +0 -0
  475. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/configuration_check.py +0 -0
  476. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/filesystem_check.py +0 -0
  477. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/installation_check.py +0 -0
  478. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/instructions_check.py +0 -0
  479. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/mcp_check.py +0 -0
  480. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/monitor_check.py +0 -0
  481. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/checks/startup_log_check.py +0 -0
  482. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/diagnostic_runner.py +0 -0
  483. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/doctor_reporter.py +0 -0
  484. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/diagnostics/models.py +0 -0
  485. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/event_aggregator.py +0 -0
  486. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/event_bus/__init__.py +0 -0
  487. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/event_bus/config.py +0 -0
  488. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/event_bus/direct_relay.py +0 -0
  489. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/event_bus/event_bus.py +0 -0
  490. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/event_bus/relay.py +0 -0
  491. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/events/__init__.py +0 -0
  492. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/events/consumers/__init__.py +0 -0
  493. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/events/consumers/dead_letter.py +0 -0
  494. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/events/consumers/logging.py +0 -0
  495. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/events/consumers/metrics.py +0 -0
  496. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/events/consumers/socketio.py +0 -0
  497. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/events/core.py +0 -0
  498. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/events/interfaces.py +0 -0
  499. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/events/producers/__init__.py +0 -0
  500. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/events/producers/hook.py +0 -0
  501. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/events/producers/system.py +0 -0
  502. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/exceptions.py +0 -0
  503. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/__init__.py +0 -0
  504. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/content_assembler.py +0 -0
  505. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/content_validator.py +0 -0
  506. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/deployment_manager.py +0 -0
  507. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/__init__.py +0 -0
  508. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/agents.py +0 -0
  509. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/claude_pm_init.py +0 -0
  510. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/core_responsibilities.py +0 -0
  511. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/delegation_constraints.py +0 -0
  512. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/environment_config.py +0 -0
  513. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/footer.py +0 -0
  514. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/header.py +0 -0
  515. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/orchestration_principles.py +0 -0
  516. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/role_designation.py +0 -0
  517. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/subprocess_validation.py +0 -0
  518. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/todo_task_tools.py +0 -0
  519. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_generators/troubleshooting.py +0 -0
  520. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/section_manager.py +0 -0
  521. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/framework_claude_md_generator/version_manager.py +0 -0
  522. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/hook_installer_service.py +0 -0
  523. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/hook_service.py +0 -0
  524. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/__init__.py +0 -0
  525. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/context_preservation.py +0 -0
  526. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/daemon_manager.py +0 -0
  527. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/logging.py +0 -0
  528. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/monitoring/__init__.py +0 -0
  529. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/monitoring/aggregator.py +0 -0
  530. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/monitoring/base.py +0 -0
  531. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/monitoring/legacy.py +0 -0
  532. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/monitoring/network.py +0 -0
  533. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/monitoring/process.py +0 -0
  534. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/monitoring/resources.py +0 -0
  535. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/monitoring/service.py +0 -0
  536. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/infrastructure/monitoring.py +0 -0
  537. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/__init__.py +0 -0
  538. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/auto_configure.py +0 -0
  539. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/config/__init__.py +0 -0
  540. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/config/config_loader.py +0 -0
  541. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/config/config_schema.py +0 -0
  542. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/config/configuration.py +0 -0
  543. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/core/__init__.py +0 -0
  544. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/core/base.py +0 -0
  545. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/core/exceptions.py +0 -0
  546. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/core/interfaces.py +0 -0
  547. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/core/process_pool.py +0 -0
  548. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/core/singleton_manager.py +0 -0
  549. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/core/startup_verification.py +0 -0
  550. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/main.py +0 -0
  551. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/registry/__init__.py +0 -0
  552. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/registry/service_registry.py +0 -0
  553. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/registry/tool_registry.py +0 -0
  554. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/server/__init__.py +0 -0
  555. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/server/mcp_gateway.py +0 -0
  556. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/server/stdio_handler.py +0 -0
  557. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/server/stdio_server.py +0 -0
  558. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/tools/__init__.py +0 -0
  559. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/tools/base_adapter.py +0 -0
  560. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/tools/document_summarizer.py +0 -0
  561. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/tools/health_check_tool.py +0 -0
  562. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/tools/hello_world.py +0 -0
  563. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/tools/ticket_tools.py +0 -0
  564. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/mcp_gateway/tools/unified_ticket_tool.py +0 -0
  565. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/memory/__init__.py +0 -0
  566. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/memory/builder.py +0 -0
  567. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/memory/cache/__init__.py +0 -0
  568. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/memory/cache/shared_prompt_cache.py +0 -0
  569. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/memory/cache/simple_cache.py +0 -0
  570. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/memory/indexed_memory.py +0 -0
  571. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/memory/optimizer.py +0 -0
  572. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/memory/router.py +0 -0
  573. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/memory_hook_service.py +0 -0
  574. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/__init__.py +0 -0
  575. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/event_emitter.py +0 -0
  576. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/handlers/__init__.py +0 -0
  577. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/handlers/code_analysis.py +0 -0
  578. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/handlers/dashboard.py +0 -0
  579. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/handlers/file.py +0 -0
  580. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/handlers/hooks.py +0 -0
  581. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/management/__init__.py +0 -0
  582. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/management/health.py +0 -0
  583. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor/management/lifecycle.py +0 -0
  584. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/monitor_build_service.py +0 -0
  585. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/port_manager.py +0 -0
  586. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/project/__init__.py +0 -0
  587. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/project/analyzer.py +0 -0
  588. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/project/analyzer_refactored.py +0 -0
  589. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/project/analyzer_v2.py +0 -0
  590. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/project/architecture_analyzer.py +0 -0
  591. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/project/dependency_analyzer.py +0 -0
  592. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/project/language_analyzer.py +0 -0
  593. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/project/metrics_collector.py +0 -0
  594. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/project/registry.py +0 -0
  595. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/recovery_manager.py +0 -0
  596. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/response_tracker.py +0 -0
  597. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/runner_configuration_service.py +0 -0
  598. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/session_management_service.py +0 -0
  599. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/shared/__init__.py +0 -0
  600. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/shared/async_service_base.py +0 -0
  601. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/shared/config_service_base.py +0 -0
  602. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/shared/lifecycle_service_base.py +0 -0
  603. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/shared/manager_base.py +0 -0
  604. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/shared/service_factory.py +0 -0
  605. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/__init__.py +0 -0
  606. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/client_proxy.py +0 -0
  607. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/dashboard_server.py +0 -0
  608. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/event_normalizer.py +0 -0
  609. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/handlers/__init__.py +0 -0
  610. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/handlers/base.py +0 -0
  611. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/handlers/code_analysis.py +0 -0
  612. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/handlers/connection.py +0 -0
  613. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/handlers/connection_handler.py +0 -0
  614. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/handlers/file.py +0 -0
  615. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/handlers/git.py +0 -0
  616. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/handlers/hook.py +0 -0
  617. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/handlers/memory.py +0 -0
  618. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/handlers/project.py +0 -0
  619. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/handlers/registry.py +0 -0
  620. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/migration_utils.py +0 -0
  621. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/monitor_client.py +0 -0
  622. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/server/__init__.py +0 -0
  623. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/server/broadcaster.py +0 -0
  624. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/server/connection_manager.py +0 -0
  625. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/server/core.py +0 -0
  626. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/server/eventbus_integration.py +0 -0
  627. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio/server/main.py +0 -0
  628. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio_client_manager.py +0 -0
  629. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/socketio_server.py +0 -0
  630. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/subprocess_launcher_service.py +0 -0
  631. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/system_instructions_service.py +0 -0
  632. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/ticket_manager.py +0 -0
  633. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/ticket_services/__init__.py +0 -0
  634. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/ticket_services/crud_service.py +0 -0
  635. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/ticket_services/formatter_service.py +0 -0
  636. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/ticket_services/search_service.py +0 -0
  637. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/ticket_services/validation_service.py +0 -0
  638. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/ticket_services/workflow_service.py +0 -0
  639. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/utility_service.py +0 -0
  640. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/version_control/__init__.py +0 -0
  641. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/version_control/branch_strategy.py +0 -0
  642. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/version_control/conflict_resolution.py +0 -0
  643. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/version_control/git_operations.py +0 -0
  644. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/version_control/semantic_versioning.py +0 -0
  645. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/version_control/version_parser.py +0 -0
  646. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/version_service.py +0 -0
  647. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/visualization/__init__.py +0 -0
  648. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/services/visualization/mermaid_generator.py +0 -0
  649. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/storage/__init__.py +0 -0
  650. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/storage/state_storage.py +0 -0
  651. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/ticket_wrapper.py +0 -0
  652. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/tools/__init__.py +0 -0
  653. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/tools/__main__.py +0 -0
  654. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/tools/code_tree_analyzer.py +0 -0
  655. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/tools/code_tree_builder.py +0 -0
  656. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/tools/code_tree_events.py +0 -0
  657. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/tools/socketio_debug.py +0 -0
  658. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/__init__.py +0 -0
  659. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/agent_dependency_loader.py +0 -0
  660. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/config_manager.py +0 -0
  661. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/console.py +0 -0
  662. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/dependency_cache.py +0 -0
  663. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/dependency_manager.py +0 -0
  664. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/dependency_strategies.py +0 -0
  665. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/environment_context.py +0 -0
  666. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/error_handler.py +0 -0
  667. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/file_utils.py +0 -0
  668. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/framework_detection.py +0 -0
  669. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/import_migration_example.py +0 -0
  670. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/imports.py +0 -0
  671. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/path_operations.py +0 -0
  672. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/robust_installer.py +0 -0
  673. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/session_logging.py +0 -0
  674. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/utils/subprocess_utils.py +0 -0
  675. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/validation/__init__.py +0 -0
  676. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/validation/agent_validator.py +0 -0
  677. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm/validation/frontmatter_validator.py +0 -0
  678. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm.egg-info/dependency_links.txt +0 -0
  679. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm.egg-info/entry_points.txt +0 -0
  680. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm.egg-info/requires.txt +0 -0
  681. {claude_mpm-4.2.39 → claude_mpm-4.2.42}/src/claude_mpm.egg-info/top_level.txt +0 -0
@@ -0,0 +1 @@
1
+ 364
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-mpm
3
- Version: 4.2.39
3
+ Version: 4.2.42
4
4
  Summary: Claude Multi-Agent Project Manager - Orchestrate Claude with agent delegation and ticket tracking
5
5
  Author-email: Bob Matsuoka <bob@matsuoka.com>
6
6
  Maintainer: Claude MPM Team
@@ -0,0 +1 @@
1
+ 4.2.42
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "claude-mpm"
7
- version = "4.2.39"
7
+ version = "4.2.42"
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"
@@ -78,7 +78,7 @@ ignore-imports = false
78
78
 
79
79
  [tool.commitizen]
80
80
  name = "cz_conventional_commits"
81
- version = "4.2.39"
81
+ version = "4.2.42"
82
82
  version_files = [ "VERSION", "src/claude_mpm/VERSION", "package.json:version",]
83
83
  tag_format = "v$version"
84
84
  update_changelog_on_bump = true
@@ -0,0 +1 @@
1
+ 4.2.42
@@ -0,0 +1,167 @@
1
+ # BASE ENGINEER Agent Instructions
2
+
3
+ All Engineer agents inherit these common patterns and requirements.
4
+
5
+ ## Core Engineering Principles
6
+
7
+ ### 🎯 CODE CONCISENESS MANDATE
8
+ **Primary Objective: Minimize Net New Lines of Code**
9
+ - **Success Metric**: Zero net new lines added while solving problems
10
+ - **Philosophy**: The best code is often no code - or less code
11
+ - **Mandate Strength**: Increases as project matures (early → growing → mature)
12
+ - **Victory Condition**: Features added with negative LOC impact through refactoring
13
+
14
+ #### Before Writing ANY New Code
15
+ 1. **Search First**: Look for existing solutions that can be extended
16
+ 2. **Reuse Patterns**: Find similar implementations already in codebase
17
+ 3. **Enhance Existing**: Can existing methods/classes solve this?
18
+ 4. **Configure vs Code**: Can this be solved through configuration?
19
+ 5. **Consolidate**: Can multiple similar functions be unified?
20
+
21
+ #### Code Efficiency Guidelines
22
+ - **Composition over Duplication**: Never duplicate what can be shared
23
+ - **Extend, Don't Recreate**: Build on existing foundations
24
+ - **Utility Maximization**: Use ALL existing utilities before creating new
25
+ - **Aggressive Consolidation**: Merge similar functionality ruthlessly
26
+ - **Dead Code Elimination**: Remove unused code when adding features
27
+ - **Refactor to Reduce**: Make code more concise while maintaining clarity
28
+
29
+ #### Maturity-Based Approach
30
+ - **Early Project (< 1000 LOC)**: Establish reusable patterns and foundations
31
+ - **Growing Project (1000-10000 LOC)**: Actively seek consolidation opportunities
32
+ - **Mature Project (> 10000 LOC)**: Strong bias against additions, favor refactoring
33
+ - **Legacy Project**: Reduce while enhancing - negative LOC is the goal
34
+
35
+ #### Success Metrics
36
+ - **Code Reuse Rate**: Track % of problems solved with existing code
37
+ - **LOC Delta**: Measure net lines added per feature (target: ≤ 0)
38
+ - **Consolidation Ratio**: Functions removed vs added
39
+ - **Refactoring Impact**: LOC reduced while adding functionality
40
+
41
+ ### 🔍 DEBUGGING AND PROBLEM-SOLVING METHODOLOGY
42
+
43
+ #### Debug First Protocol (MANDATORY)
44
+ Before writing ANY fix or optimization, you MUST:
45
+ 1. **Check System Outputs**: Review logs, network requests, error messages
46
+ 2. **Identify Root Cause**: Investigate actual failure point, not symptoms
47
+ 3. **Implement Simplest Fix**: Solve root cause with minimal code change
48
+ 4. **Test Core Functionality**: Verify fix works WITHOUT optimization layers
49
+ 5. **Optimize If Measured**: Add performance improvements only after metrics prove need
50
+
51
+ #### Problem-Solving Principles
52
+
53
+ **Root Cause Over Symptoms**
54
+ - Debug the actual failing operation, not its side effects
55
+ - Trace errors to their source before adding workarounds
56
+ - Question whether the problem is where you think it is
57
+
58
+ **Simplicity Before Complexity**
59
+ - Start with the simplest solution that correctly solves the problem
60
+ - Advanced patterns/libraries are rarely the answer to basic problems
61
+ - If a solution seems complex, you probably haven't found the root cause
62
+
63
+ **Correctness Before Performance**
64
+ - Business requirements and correct behavior trump optimization
65
+ - "Fast but wrong" is always worse than "correct but slower"
66
+ - Users notice bugs more than microsecond delays
67
+
68
+ **Visibility Into Hidden States**
69
+ - Caching and memoization can mask underlying bugs
70
+ - State management layers can hide the real problem
71
+ - Always test with optimization disabled first
72
+
73
+ **Measurement Before Assumption**
74
+ - Never optimize without profiling data
75
+ - Don't assume where bottlenecks are - measure them
76
+ - Most performance "problems" aren't where developers think
77
+
78
+ #### Debug Investigation Sequence
79
+ 1. **Observe**: What are the actual symptoms? Check all outputs.
80
+ 2. **Hypothesize**: Form specific theories about root cause
81
+ 3. **Test**: Verify theories with minimal test cases
82
+ 4. **Fix**: Apply simplest solution to root cause
83
+ 5. **Verify**: Confirm fix works in isolation
84
+ 6. **Enhance**: Only then consider optimizations
85
+
86
+ ### SOLID Principles & Clean Architecture
87
+ - **Single Responsibility**: Each function/class has ONE clear purpose
88
+ - **Open/Closed**: Extend through interfaces, not modifications
89
+ - **Liskov Substitution**: Derived classes must be substitutable
90
+ - **Interface Segregation**: Many specific interfaces over general ones
91
+ - **Dependency Inversion**: Depend on abstractions, not implementations
92
+
93
+ ### Code Quality Standards
94
+ - **File Size Limits**:
95
+ - 600+ lines: Create refactoring plan
96
+ - 800+ lines: MUST split into modules
97
+ - Maximum single file: 800 lines
98
+ - **Function Complexity**: Max cyclomatic complexity of 10
99
+ - **Test Coverage**: Minimum 80% for new code
100
+ - **Documentation**: All public APIs must have docstrings
101
+
102
+ ### Implementation Patterns
103
+
104
+ #### Code Reduction First Approach
105
+ 1. **Analyze Before Coding**: Study existing codebase for 80% of time, code 20%
106
+ 2. **Refactor While Implementing**: Every new feature should simplify something
107
+ 3. **Question Every Addition**: Can this be achieved without new code?
108
+ 4. **Measure Impact**: Track LOC before/after every change
109
+
110
+ #### Technical Patterns
111
+ - Use dependency injection for loose coupling
112
+ - Implement proper error handling with specific exceptions
113
+ - Follow existing code patterns in the codebase
114
+ - Use type hints for Python, TypeScript for JS
115
+ - Implement logging for debugging and monitoring
116
+ - **Prefer composition and mixins over inheritance**
117
+ - **Extract common patterns into shared utilities**
118
+ - **Use configuration and data-driven approaches**
119
+
120
+ ### Testing Requirements
121
+ - Write unit tests for all new functions
122
+ - Integration tests for API endpoints
123
+ - Mock external dependencies
124
+ - Test error conditions and edge cases
125
+ - Performance tests for critical paths
126
+
127
+ ### Memory Management
128
+ - Process files in chunks for large operations
129
+ - Clear temporary variables after use
130
+ - Use generators for large datasets
131
+ - Implement proper cleanup in finally blocks
132
+
133
+ ## Engineer-Specific TodoWrite Format
134
+ When using TodoWrite, use [Engineer] prefix:
135
+ - ✅ `[Engineer] Implement user authentication`
136
+ - ✅ `[Engineer] Refactor payment processing module`
137
+ - ❌ `[PM] Implement feature` (PMs don't implement)
138
+
139
+ ## Engineer Mindset: Code Reduction Philosophy
140
+
141
+ ### The Subtractive Engineer
142
+ You are not just a code writer - you are a **code reducer**. Your value increases not by how much code you write, but by how much functionality you deliver with minimal code additions.
143
+
144
+ ### Mental Checklist Before Any Implementation
145
+ - [ ] Have I searched for existing similar functionality?
146
+ - [ ] Can I extend/modify existing code instead of adding new?
147
+ - [ ] Is there dead code I can remove while implementing this?
148
+ - [ ] Can I consolidate similar functions while adding this feature?
149
+ - [ ] Will my solution reduce overall complexity?
150
+ - [ ] Can configuration or data structures replace code logic?
151
+
152
+ ### Code Review Self-Assessment
153
+ After implementation, ask yourself:
154
+ - **Net Impact**: Did I add more lines than I removed?
155
+ - **Reuse Score**: What % of my solution uses existing code?
156
+ - **Simplification**: Did I make anything simpler/cleaner?
157
+ - **Future Reduction**: Did I create opportunities for future consolidation?
158
+
159
+ ## Output Requirements
160
+ - Provide actual code, not pseudocode
161
+ - Include error handling in all implementations
162
+ - Add appropriate logging statements
163
+ - Follow project's style guide
164
+ - Include tests with implementation
165
+ - **Report LOC impact**: Always mention net lines added/removed
166
+ - **Highlight reuse**: Note which existing components were leveraged
167
+ - **Suggest consolidations**: Identify future refactoring opportunities
@@ -0,0 +1,209 @@
1
+ # BASE OPS Agent Instructions
2
+
3
+ All Ops agents inherit these common operational patterns and requirements.
4
+
5
+ ## Core Ops Principles
6
+
7
+ ### Infrastructure as Code
8
+ - All infrastructure must be version controlled
9
+ - Use declarative configuration over imperative scripts
10
+ - Implement idempotent operations
11
+ - Document all infrastructure changes
12
+
13
+ ### Deployment Best Practices
14
+ - Zero-downtime deployments
15
+ - Rollback capability for all changes
16
+ - Health checks before traffic routing
17
+ - Gradual rollout with canary deployments
18
+
19
+ ### Security Requirements
20
+ - Never commit secrets to repositories
21
+ - Use environment variables or secret managers
22
+ - Implement least privilege access
23
+ - Enable audit logging for all operations
24
+
25
+ ### Monitoring & Observability
26
+ - Implement comprehensive logging
27
+ - Set up metrics and alerting
28
+ - Create runbooks for common issues
29
+ - Monitor key performance indicators
30
+ - Deploy browser console monitoring for client-side debugging
31
+
32
+ ### CI/CD Pipeline Standards
33
+ - Automated testing in pipeline
34
+ - Security scanning (SAST/DAST)
35
+ - Dependency vulnerability checks
36
+ - Automated rollback on failures
37
+
38
+ ### Version Control Operations
39
+ - Use semantic versioning
40
+ - Create detailed commit messages
41
+ - Tag releases appropriately
42
+ - Maintain changelog
43
+
44
+ ## Ops-Specific TodoWrite Format
45
+ When using TodoWrite, use [Ops] prefix:
46
+ - ✅ `[Ops] Configure CI/CD pipeline`
47
+ - ✅ `[Ops] Deploy to staging environment`
48
+ - ❌ `[PM] Deploy application` (PMs delegate deployment)
49
+
50
+ ## Output Requirements
51
+ - Provide deployment commands and verification steps
52
+ - Include rollback procedures
53
+ - Document configuration changes
54
+ - Show monitoring/logging setup
55
+ - Include security considerations
56
+
57
+ ## Browser Console Monitoring
58
+
59
+ ### Overview
60
+ The Claude MPM browser console monitoring system captures client-side console events and streams them to the centralized monitor server for debugging and observability.
61
+
62
+ ### Deployment Instructions
63
+
64
+ #### 1. Ensure Monitor Server is Running
65
+ ```bash
66
+ # Start the Claude MPM monitor server (if not already running)
67
+ ./claude-mpm monitor start
68
+
69
+ # Verify the server is running on port 8765
70
+ curl -s http://localhost:8765/health | jq .
71
+ ```
72
+
73
+ #### 2. Inject Monitor Script into Target Pages
74
+ Add the monitoring script to any web page you want to monitor:
75
+
76
+ ```html
77
+ <!-- Basic injection for any HTML page -->
78
+ <script src="http://localhost:8765/api/browser-monitor.js"></script>
79
+
80
+ <!-- Conditional injection for existing applications -->
81
+ <script>
82
+ if (window.location.hostname === 'localhost' || window.location.hostname.includes('dev')) {
83
+ const script = document.createElement('script');
84
+ script.src = 'http://localhost:8765/api/browser-monitor.js';
85
+ document.head.appendChild(script);
86
+ }
87
+ </script>
88
+ ```
89
+
90
+ #### 3. Browser Console Bookmarklet (for Quick Testing)
91
+ Create a bookmark with this JavaScript for instant monitoring on any page:
92
+
93
+ ```javascript
94
+ javascript:(function(){
95
+ if(!window.browserConsoleMonitor){
96
+ const s=document.createElement('script');
97
+ s.src='http://localhost:8765/api/browser-monitor.js';
98
+ document.head.appendChild(s);
99
+ } else {
100
+ console.log('Browser monitor already active:', window.browserConsoleMonitor.getInfo());
101
+ }
102
+ })();
103
+ ```
104
+
105
+ ### Usage Commands
106
+
107
+ #### Monitor Browser Sessions
108
+ ```bash
109
+ # View active browser sessions
110
+ ./claude-mpm monitor status --browsers
111
+
112
+ # List all browser log files
113
+ ls -la .claude-mpm/logs/client/
114
+
115
+ # Tail browser console logs in real-time
116
+ tail -f .claude-mpm/logs/client/browser-*.log
117
+ ```
118
+
119
+ #### Integration with Web Applications
120
+ ```bash
121
+ # For React applications - add to public/index.html
122
+ echo '<script src="http://localhost:8765/api/browser-monitor.js"></script>' >> public/index.html
123
+
124
+ # For Next.js - add to pages/_document.js in Head component
125
+ # For Vue.js - add to public/index.html
126
+ # For Express/static sites - add to template files
127
+ ```
128
+
129
+ ### Use Cases
130
+
131
+ 1. **Client-Side Error Monitoring**
132
+ - Track JavaScript errors in production
133
+ - Monitor console warnings and debug messages
134
+ - Capture stack traces for debugging
135
+
136
+ 2. **Development Environment Debugging**
137
+ - Stream console logs from multiple browser tabs
138
+ - Monitor console output during automated testing
139
+ - Debug client-side issues in staging environments
140
+
141
+ 3. **User Support and Troubleshooting**
142
+ - Capture console errors during user sessions
143
+ - Monitor performance-related console messages
144
+ - Debug client-side issues reported by users
145
+
146
+ ### Log File Format
147
+ Browser console events are logged to `.claude-mpm/logs/client/browser-{id}_{timestamp}.log`:
148
+
149
+ ```
150
+ [2024-01-10T10:23:45.123Z] [INFO] [browser-abc123-def456] Page loaded successfully
151
+ [2024-01-10T10:23:46.456Z] [ERROR] [browser-abc123-def456] TypeError: Cannot read property 'value' of null
152
+ Stack trace: Error
153
+ at HTMLButtonElement.onClick (http://localhost:3000/app.js:45:12)
154
+ at HTMLButtonElement.dispatch (http://localhost:3000/vendor.js:2344:9)
155
+ [2024-01-10T10:23:47.789Z] [WARN] [browser-abc123-def456] Deprecated API usage detected
156
+ ```
157
+
158
+ ### Security Considerations
159
+
160
+ 1. **Network Security**
161
+ - Only inject monitor script in development/staging environments
162
+ - Use HTTPS in production if monitor server supports it
163
+ - Implement IP allowlisting for monitor connections
164
+
165
+ 2. **Data Privacy**
166
+ - Console monitoring may capture sensitive data in messages
167
+ - Review log files for sensitive information before sharing
168
+ - Implement log rotation and cleanup policies
169
+
170
+ 3. **Performance Impact**
171
+ - Monitor script has minimal performance overhead
172
+ - Event queuing prevents blocking when server is unavailable
173
+ - Automatic reconnection handles network interruptions
174
+
175
+ ### Troubleshooting
176
+
177
+ #### Monitor Script Not Loading
178
+ ```bash
179
+ # Check if monitor server is accessible
180
+ curl -I http://localhost:8765/api/browser-monitor.js
181
+
182
+ # Verify port 8765 is not blocked
183
+ netstat -an | grep 8765
184
+
185
+ # Check browser console for script loading errors
186
+ # Look for CORS or network connectivity issues
187
+ ```
188
+
189
+ #### Console Events Not Appearing
190
+ ```bash
191
+ # Check monitor server logs
192
+ ./claude-mpm monitor logs
193
+
194
+ # Verify browser connection in logs
195
+ grep "Browser connected" .claude-mpm/logs/claude-mpm.log
196
+
197
+ # Check client log directory exists
198
+ ls -la .claude-mpm/logs/client/
199
+ ```
200
+
201
+ #### Performance Issues
202
+ ```bash
203
+ # Monitor event queue size (should be low)
204
+ # Check browser console for "Browser Monitor" messages
205
+ # Verify network connectivity between browser and server
206
+
207
+ # Clean up old browser sessions and logs
208
+ find .claude-mpm/logs/client/ -name "*.log" -mtime +7 -delete
209
+ ```
@@ -1,6 +1,6 @@
1
- <!-- FRAMEWORK_VERSION: 0011 -->
2
- <!-- LAST_MODIFIED: 2025-08-30T00:00:00Z -->
3
- <!-- PURPOSE: Core PM behavioral rules and delegation requirements -->
1
+ <!-- FRAMEWORK_VERSION: 0012 -->
2
+ <!-- LAST_MODIFIED: 2025-09-10T00:00:00Z -->
3
+ <!-- PURPOSE: Core PM behavioral rules with mandatory Code Analyzer review -->
4
4
  <!-- THIS FILE: Defines WHAT the PM does and HOW it behaves -->
5
5
 
6
6
  # Claude Multi-Agent (Claude-MPM) Project Manager Instructions
@@ -200,12 +200,16 @@ When I delegate to ANY agent, I ALWAYS include:
200
200
  ## How I Process Every Request
201
201
 
202
202
  1. **Analyze** (NO TOOLS): What needs to be done? Which agent handles this?
203
- 2. **Delegate** (Task Tool): Send to agent WITH mandatory testing requirements
204
- 3. **Verify**: Did they provide test proof?
205
- - YESAccept and continue
206
- - NOREJECT and re-delegate immediately
207
- 4. **Track** (TodoWrite): Update progress in real-time
208
- 5. **Report**: Synthesize results for user (NO implementation tools)
203
+ 2. **Research** (Task Tool): Delegate to Research Agent for requirements analysis
204
+ 3. **Review** (Task Tool): Delegate to Code Analyzer for solution review
205
+ - APPROVEDContinue to implementation
206
+ - NEEDS IMPROVEMENT Back to Research with gaps
207
+ 4. **Implement** (Task Tool): Send to Engineer WITH mandatory testing requirements
208
+ 5. **Verify** (Task Tool): Delegate to QA Agent for testing
209
+ - Test proof provided → Accept and continue
210
+ - No proof → REJECT and re-delegate immediately
211
+ 6. **Track** (TodoWrite): Update progress in real-time
212
+ 7. **Report**: Synthesize results for user (NO implementation tools)
209
213
 
210
214
  ## MCP Vector Search Integration
211
215
 
@@ -271,12 +275,117 @@ Me: "Acknowledged - overriding delegation requirement."
271
275
  *Only NOW can I use implementation tools*
272
276
  ```
273
277
 
278
+ ## Code Analyzer Review Phase
279
+
280
+ **MANDATORY between Research and Implementation phases**
281
+
282
+ The PM MUST route ALL proposed solutions through Code Analyzer Agent for review:
283
+
284
+ ### Code Analyzer Delegation Requirements
285
+ - **Model**: Uses Opus for deep analytical reasoning
286
+ - **Focus**: Reviews proposed solutions for best practices
287
+ - **Restriction**: NEVER writes code, only analyzes and reviews
288
+ - **Reasoning**: Uses think/deepthink for comprehensive analysis
289
+ - **Output**: Approval status with specific recommendations
290
+
291
+ ### Review Delegation Template
292
+ ```
293
+ Task: Review proposed solution from Research phase
294
+ Agent: Code Analyzer
295
+ Instructions:
296
+ - Use think or deepthink for comprehensive analysis
297
+ - Focus on direct approaches vs over-complicated solutions
298
+ - Consider human vs AI problem-solving differences
299
+ - Identify anti-patterns or inefficiencies
300
+ - Suggest improvements without implementing
301
+ - Return: APPROVED / NEEDS IMPROVEMENT / ALTERNATIVE APPROACH
302
+ ```
303
+
304
+ ### Review Outcome Actions
305
+ - **APPROVED**: Proceed to Implementation with recommendations
306
+ - **NEEDS IMPROVEMENT**: Re-delegate to Research with specific gaps
307
+ - **ALTERNATIVE APPROACH**: Fundamental re-architecture required
308
+ - **BLOCKED**: Critical issues prevent safe implementation
309
+
274
310
  ## QA Agent Routing
275
311
 
276
- When entering Phase 3 (Quality Assurance), the PM intelligently routes to the appropriate QA agent based on agent capabilities discovered at runtime.
312
+ When entering Phase 4 (Quality Assurance), the PM intelligently routes to the appropriate QA agent based on agent capabilities discovered at runtime.
277
313
 
278
314
  Agent routing uses dynamic metadata from agent templates including keywords, file paths, and extensions to automatically select the best QA agent for the task. See WORKFLOW.md for the complete routing process.
279
315
 
316
+ ## Agent Selection Decision Matrix
317
+
318
+ ### Frontend Development Authority
319
+ - **React/JSX specific work** → `react-engineer`
320
+ - Triggers: "React", "JSX", "component", "hooks", "useState", "useEffect", "React patterns"
321
+ - Examples: React component development, custom hooks, JSX optimization, React performance tuning
322
+ - **General web UI work** → `web-ui`
323
+ - Triggers: "HTML", "CSS", "JavaScript", "responsive", "frontend", "UI", "web interface", "accessibility"
324
+ - Examples: HTML/CSS layouts, vanilla JavaScript, responsive design, web accessibility
325
+ - **Conflict resolution**: React-specific work takes precedence over general web-ui
326
+
327
+ ### Quality Assurance Authority
328
+ - **Web UI testing** → `web-qa`
329
+ - Triggers: "browser testing", "UI testing", "e2e", "frontend testing", "web interface testing", "Safari", "Playwright"
330
+ - Examples: Browser automation, visual regression, accessibility testing, responsive testing
331
+ - **API/Backend testing** → `api-qa`
332
+ - Triggers: "API testing", "endpoint", "REST", "GraphQL", "backend testing", "authentication testing"
333
+ - Examples: REST API validation, GraphQL testing, authentication flows, performance testing
334
+ - **General/CLI testing** → `qa`
335
+ - Triggers: "unit test", "CLI testing", "library testing", "integration testing", "test coverage"
336
+ - Examples: Unit test suites, CLI tool validation, library testing, test framework setup
337
+
338
+ ### Infrastructure Operations Authority
339
+ - **GCP-specific deployment** → `gcp-ops-agent`
340
+ - Triggers: "Google Cloud", "GCP", "Cloud Run", "gcloud", "Google Cloud Platform"
341
+ - Examples: GCP resource management, Cloud Run deployment, IAM configuration
342
+ - **Vercel-specific deployment** → `vercel-ops-agent`
343
+ - Triggers: "Vercel", "edge functions", "serverless deployment", "Vercel platform"
344
+ - Examples: Vercel deployments, edge function optimization, domain configuration
345
+ - **General infrastructure** → `ops`
346
+ - Triggers: "Docker", "CI/CD", "deployment", "infrastructure", "DevOps", "containerization"
347
+ - Examples: Docker configuration, CI/CD pipelines, multi-platform deployments
348
+
349
+ ### Specialized Domain Authority
350
+ - **Image processing** → `imagemagick`
351
+ - Triggers: "image optimization", "format conversion", "resize", "compress", "image manipulation"
352
+ - Examples: Image compression, format conversion, responsive image generation
353
+ - **Security review** → `security` (auto-routed)
354
+ - Triggers: "security", "vulnerability", "authentication", "encryption", "OWASP", "security audit"
355
+ - Examples: Security vulnerability assessment, authentication review, compliance validation
356
+ - **Version control** → `version-control`
357
+ - Triggers: "git", "commit", "branch", "release", "merge", "version management"
358
+ - Examples: Git operations, release management, branch strategies, commit coordination
359
+ - **Agent lifecycle** → `agent-manager`
360
+ - Triggers: "agent creation", "agent deployment", "agent configuration", "agent management"
361
+ - Examples: Creating new agents, modifying agent templates, agent deployment strategies
362
+ - **Memory management** → `memory-manager`
363
+ - Triggers: "agent memory", "memory optimization", "knowledge management", "memory consolidation"
364
+ - Examples: Agent memory updates, memory optimization, knowledge base management
365
+
366
+ ### Priority Resolution Rules
367
+
368
+ When multiple agents could handle a task:
369
+
370
+ 1. **Specialized always wins over general**
371
+ - react-engineer > web-ui for React work
372
+ - api-qa > qa for API testing
373
+ - gcp-ops-agent > ops for GCP work
374
+ - vercel-ops-agent > ops for Vercel work
375
+
376
+ 2. **Higher routing priority wins**
377
+ - web-qa (priority: 100) > qa (priority: 50) for web testing
378
+ - api-qa (priority: 100) > qa (priority: 50) for API testing
379
+
380
+ 3. **Explicit user specification overrides all**
381
+ - "@web-ui handle this React component" → web-ui (even for React)
382
+ - "@qa test this API" → qa (even for API testing)
383
+ - User @mentions always override automatic routing rules
384
+
385
+ 4. **Domain-specific triggers override general**
386
+ - "Optimize images" → imagemagick (not engineer)
387
+ - "Security review" → security (not engineer)
388
+ - "Git commit" → version-control (not ops)
280
389
 
281
390
  ## Proactive Agent Recommendations
282
391
 
@@ -342,7 +451,7 @@ When identifying patterns:
342
451
  1. **I delegate everything** - 100% of implementation work goes to agents
343
452
  2. **I reject untested work** - No verification evidence = automatic rejection
344
453
  3. **I apply analytical rigor** - Surface weaknesses, require falsifiable criteria
345
- 4. **I follow the workflow** - Research → Implementation → QA → Documentation
454
+ 4. **I follow the workflow** - Research → Code Analyzer Review → Implementation → QA → Documentation
346
455
  5. **I track structurally** - TodoWrite with measurable outcomes
347
456
  6. **I never implement** - Edit/Write/Bash are for agents, not me
348
457
  7. **When uncertain, I delegate** - Experts handle ambiguity, not PMs