claude-mpm 4.2.15__tar.gz → 4.2.17__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 (670) hide show
  1. claude_mpm-4.2.17/BUILD_NUMBER +1 -0
  2. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/PKG-INFO +1 -1
  3. claude_mpm-4.2.17/VERSION +1 -0
  4. claude_mpm-4.2.17/pyproject.toml +107 -0
  5. claude_mpm-4.2.17/src/claude_mpm/VERSION +1 -0
  6. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/BASE_PM.md +108 -58
  7. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/INSTRUCTIONS.md +122 -34
  8. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/WORKFLOW.md +53 -46
  9. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/agent-manager.json +1 -1
  10. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/agent_manager.py +650 -8
  11. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/monitor.py +27 -6
  12. claude_mpm-4.2.17/src/claude_mpm/cli/interactive/__init__.py +18 -0
  13. claude_mpm-4.2.17/src/claude_mpm/cli/interactive/agent_wizard.py +962 -0
  14. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/agent_manager_parser.py +161 -1
  15. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/framework_loader.py +120 -3
  16. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/unified_agent_registry.py +85 -3
  17. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/built/components/session-manager.js +2 -0
  18. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/built/components/working-directory.js +2 -0
  19. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/built/dashboard.js +2 -0
  20. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/built/socket-client.js +2 -0
  21. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/dist/components/code-tree.js +2 -0
  22. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/dist/components/file-viewer.js +2 -0
  23. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/dist/components/module-viewer.js +2 -0
  24. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/dist/components/session-manager.js +2 -0
  25. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/dist/components/unified-data-viewer.js +2 -0
  26. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/dist/components/working-directory.js +2 -0
  27. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/dist/dashboard.js +2 -0
  28. claude_mpm-4.2.17/src/claude_mpm/dashboard/static/dist/socket-client.js +2 -0
  29. claude_mpm-4.2.17/src/claude_mpm/services/agents/deployment/local_template_deployment.py +357 -0
  30. claude_mpm-4.2.17/src/claude_mpm/services/agents/local_template_manager.py +749 -0
  31. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/daemon.py +65 -2
  32. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/server.py +2 -1
  33. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm.egg-info/PKG-INFO +1 -1
  34. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm.egg-info/SOURCES.txt +5 -0
  35. claude_mpm-4.2.15/BUILD_NUMBER +0 -1
  36. claude_mpm-4.2.15/VERSION +0 -1
  37. claude_mpm-4.2.15/pyproject.toml +0 -259
  38. claude_mpm-4.2.15/src/claude_mpm/VERSION +0 -1
  39. claude_mpm-4.2.15/src/claude_mpm/dashboard/static/built/components/code-tree.js +0 -2
  40. claude_mpm-4.2.15/src/claude_mpm/dashboard/static/built/components/module-viewer.js +0 -2
  41. claude_mpm-4.2.15/src/claude_mpm/dashboard/static/built/components/session-manager.js +0 -2
  42. claude_mpm-4.2.15/src/claude_mpm/dashboard/static/built/components/unified-data-viewer.js +0 -2
  43. claude_mpm-4.2.15/src/claude_mpm/dashboard/static/built/components/working-directory.js +0 -2
  44. claude_mpm-4.2.15/src/claude_mpm/dashboard/static/built/dashboard.js +0 -2
  45. claude_mpm-4.2.15/src/claude_mpm/dashboard/static/built/socket-client.js +0 -2
  46. claude_mpm-4.2.15/src/claude_mpm/dashboard/static/dist/components/session-manager.js +0 -2
  47. claude_mpm-4.2.15/src/claude_mpm/dashboard/static/dist/components/working-directory.js +0 -2
  48. claude_mpm-4.2.15/src/claude_mpm/dashboard/static/dist/dashboard.js +0 -2
  49. claude_mpm-4.2.15/src/claude_mpm/dashboard/static/dist/socket-client.js +0 -2
  50. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/CLAUDE.md +0 -0
  51. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/LICENSE +0 -0
  52. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/MANIFEST.in +0 -0
  53. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/README.md +0 -0
  54. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/scripts/ticket +0 -0
  55. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/setup.cfg +0 -0
  56. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/BUILD_NUMBER +0 -0
  57. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/__init__.py +0 -0
  58. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/__main__.py +0 -0
  59. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/BASE_AGENT_TEMPLATE.md +0 -0
  60. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/BASE_DOCUMENTATION.md +0 -0
  61. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/BASE_ENGINEER.md +0 -0
  62. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/BASE_OPS.md +0 -0
  63. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/BASE_QA.md +0 -0
  64. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/BASE_RESEARCH.md +0 -0
  65. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/MEMORY.md +0 -0
  66. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/OUTPUT_STYLE.md +0 -0
  67. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/__init__.py +0 -0
  68. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/agent-template.yaml +0 -0
  69. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/agent_loader.py +0 -0
  70. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/agent_loader_integration.py +0 -0
  71. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/agents_metadata.py +0 -0
  72. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/async_agent_loader.py +0 -0
  73. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/base_agent.json +0 -0
  74. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/base_agent_loader.py +0 -0
  75. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/frontmatter_validator.py +0 -0
  76. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/system_agent_config.py +0 -0
  77. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/.claude-mpm/memories/README.md +0 -0
  78. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/.claude-mpm/memories/engineer_memories.md +0 -0
  79. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/__init__.py +0 -0
  80. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/agent-manager.md +0 -0
  81. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/agentic_coder_optimizer.json +0 -0
  82. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/api_qa.json +0 -0
  83. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/code_analyzer.json +0 -0
  84. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/data_engineer.json +0 -0
  85. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/documentation.json +0 -0
  86. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/engineer.json +0 -0
  87. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/gcp_ops_agent.json +0 -0
  88. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/imagemagick.json +0 -0
  89. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/logs/prompts/agent_engineer_20250826_014258_728.md +0 -0
  90. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/logs/prompts/agent_engineer_20250901_010124_142.md +0 -0
  91. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/memory_manager.json +0 -0
  92. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/ops.json +0 -0
  93. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/project_organizer.json +0 -0
  94. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/qa.json +0 -0
  95. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/refactoring_engineer.json +0 -0
  96. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/research.json +0 -0
  97. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/security.json +0 -0
  98. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/test-non-mpm.json +0 -0
  99. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/ticketing.json +0 -0
  100. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/vercel_ops_agent.json +0 -0
  101. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/version_control.json +0 -0
  102. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/web_qa.json +0 -0
  103. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/agents/templates/web_ui.json +0 -0
  104. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/__init__.py +0 -0
  105. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/__main__.py +0 -0
  106. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/__init__.py +0 -0
  107. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/agents.py +0 -0
  108. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/aggregate.py +0 -0
  109. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/analyze.py +0 -0
  110. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/analyze_code.py +0 -0
  111. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/cleanup.py +0 -0
  112. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/cleanup_orphaned_agents.py +0 -0
  113. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/config.py +0 -0
  114. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/configure.py +0 -0
  115. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/configure_tui.py +0 -0
  116. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/dashboard.py +0 -0
  117. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/debug.py +0 -0
  118. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/doctor.py +0 -0
  119. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/info.py +0 -0
  120. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/mcp.py +0 -0
  121. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/mcp_command_router.py +0 -0
  122. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/mcp_config_commands.py +0 -0
  123. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/mcp_install_commands.py +0 -0
  124. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/mcp_pipx_config.py +0 -0
  125. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/mcp_server_commands.py +0 -0
  126. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/mcp_tool_commands.py +0 -0
  127. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/memory.py +0 -0
  128. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/mpm_init.py +0 -0
  129. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/mpm_init_handler.py +0 -0
  130. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/run.py +0 -0
  131. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/commands/tickets.py +0 -0
  132. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parser.py +0 -0
  133. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/__init__.py +0 -0
  134. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/agents_parser.py +0 -0
  135. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/analyze_code_parser.py +0 -0
  136. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/analyze_parser.py +0 -0
  137. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/base_parser.py +0 -0
  138. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/config_parser.py +0 -0
  139. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/configure_parser.py +0 -0
  140. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/dashboard_parser.py +0 -0
  141. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/debug_parser.py +0 -0
  142. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/mcp_parser.py +0 -0
  143. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/memory_parser.py +0 -0
  144. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/monitor_parser.py +0 -0
  145. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/mpm_init_parser.py +0 -0
  146. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/run_parser.py +0 -0
  147. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/parsers/tickets_parser.py +0 -0
  148. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/shared/__init__.py +0 -0
  149. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/shared/argument_patterns.py +0 -0
  150. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/shared/base_command.py +0 -0
  151. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/shared/error_handling.py +0 -0
  152. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/shared/output_formatters.py +0 -0
  153. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/startup_logging.py +0 -0
  154. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/ticket_cli.py +0 -0
  155. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli/utils.py +0 -0
  156. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli_module/__init__.py +0 -0
  157. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli_module/args.py +0 -0
  158. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli_module/commands.py +0 -0
  159. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/cli_module/migration_example.py +0 -0
  160. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/commands/__init__.py +0 -0
  161. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/commands/mpm-agents.md +0 -0
  162. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/commands/mpm-config.md +0 -0
  163. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/commands/mpm-doctor.md +0 -0
  164. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/commands/mpm-help.md +0 -0
  165. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/commands/mpm-init.md +0 -0
  166. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/commands/mpm-status.md +0 -0
  167. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/commands/mpm-tickets.md +0 -0
  168. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/commands/mpm.md +0 -0
  169. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/config/__init__.py +0 -0
  170. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/config/agent_config.py +0 -0
  171. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/config/experimental_features.py +0 -0
  172. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/config/paths.py +0 -0
  173. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/config/socketio_config.py +0 -0
  174. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/constants.py +0 -0
  175. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/__init__.py +0 -0
  176. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/agent_name_normalizer.py +0 -0
  177. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/agent_registry.py +0 -0
  178. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/agent_session_manager.py +0 -0
  179. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/base_service.py +0 -0
  180. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/cache.py +0 -0
  181. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/claude_runner.py +0 -0
  182. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/config.py +0 -0
  183. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/config_aliases.py +0 -0
  184. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/config_constants.py +0 -0
  185. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/constants.py +0 -0
  186. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/container.py +0 -0
  187. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/error_handler.py +0 -0
  188. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/exceptions.py +0 -0
  189. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/factories.py +0 -0
  190. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/file_utils.py +0 -0
  191. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/hook_manager.py +0 -0
  192. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/hook_performance_config.py +0 -0
  193. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/injectable_service.py +0 -0
  194. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/instruction_reinforcement_hook.py +0 -0
  195. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/interactive_session.py +0 -0
  196. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/interfaces.py +0 -0
  197. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/lazy.py +0 -0
  198. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/log_manager.py +0 -0
  199. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/logger.py +0 -0
  200. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/logging_config.py +0 -0
  201. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/logging_utils.py +0 -0
  202. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/minimal_framework_loader.py +0 -0
  203. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/mixins.py +0 -0
  204. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/oneshot_session.py +0 -0
  205. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/optimized_agent_loader.py +0 -0
  206. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/optimized_startup.py +0 -0
  207. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/output_style_manager.py +0 -0
  208. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/pm_hook_interceptor.py +0 -0
  209. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/service_registry.py +0 -0
  210. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/session_manager.py +0 -0
  211. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/shared/__init__.py +0 -0
  212. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/shared/config_loader.py +0 -0
  213. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/shared/path_resolver.py +0 -0
  214. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/shared/singleton_manager.py +0 -0
  215. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/socketio_pool.py +0 -0
  216. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/tool_access_control.py +0 -0
  217. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/types.py +0 -0
  218. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/typing_utils.py +0 -0
  219. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/unified_config.py +0 -0
  220. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/core/unified_paths.py +0 -0
  221. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/.claude-mpm/socketio-instances.json +0 -0
  222. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/__init__.py +0 -0
  223. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/analysis_runner.py +0 -0
  224. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/api/simple_directory.py +0 -0
  225. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/index.html +0 -0
  226. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/open_dashboard.py +0 -0
  227. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/activity-tree.js +0 -0
  228. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/agent-inference.js +0 -0
  229. {claude_mpm-4.2.15/src/claude_mpm/dashboard/static/dist → claude_mpm-4.2.17/src/claude_mpm/dashboard/static/built}/components/code-tree.js +0 -0
  230. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/code-viewer.js +0 -0
  231. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/event-processor.js +0 -0
  232. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/event-viewer.js +0 -0
  233. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/export-manager.js +0 -0
  234. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/file-tool-tracker.js +0 -0
  235. {claude_mpm-4.2.15/src/claude_mpm/dashboard/static/dist → claude_mpm-4.2.17/src/claude_mpm/dashboard/static/built}/components/file-viewer.js +0 -0
  236. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/hud-library-loader.js +0 -0
  237. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/hud-manager.js +0 -0
  238. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/hud-visualizer.js +0 -0
  239. {claude_mpm-4.2.15/src/claude_mpm/dashboard/static/dist → claude_mpm-4.2.17/src/claude_mpm/dashboard/static/built}/components/module-viewer.js +0 -0
  240. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/socket-manager.js +0 -0
  241. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/built/components/ui-state-manager.js +0 -0
  242. {claude_mpm-4.2.15/src/claude_mpm/dashboard/static/dist → claude_mpm-4.2.17/src/claude_mpm/dashboard/static/built}/components/unified-data-viewer.js +0 -0
  243. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/css/activity.css +0 -0
  244. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/css/code-tree.css +0 -0
  245. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/css/connection-status.css +0 -0
  246. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/css/dashboard.css +0 -0
  247. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/activity-tree.js +0 -0
  248. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/agent-inference.js +0 -0
  249. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/code-viewer.js +0 -0
  250. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/event-processor.js +0 -0
  251. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/event-viewer.js +0 -0
  252. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/export-manager.js +0 -0
  253. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/file-tool-tracker.js +0 -0
  254. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/hud-library-loader.js +0 -0
  255. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/hud-manager.js +0 -0
  256. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/hud-visualizer.js +0 -0
  257. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/socket-manager.js +0 -0
  258. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/dist/components/ui-state-manager.js +0 -0
  259. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/activity-tree.js +0 -0
  260. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/agent-hierarchy.js +0 -0
  261. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/agent-inference.js +0 -0
  262. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/build-tracker.js +0 -0
  263. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/code-simple.js +0 -0
  264. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/code-tree/tree-breadcrumb.js +0 -0
  265. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/code-tree/tree-constants.js +0 -0
  266. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/code-tree/tree-search.js +0 -0
  267. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/code-tree/tree-utils.js +0 -0
  268. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/code-tree.js +0 -0
  269. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/code-viewer.js +0 -0
  270. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/connection-debug.js +0 -0
  271. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/event-processor.js +0 -0
  272. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/event-viewer.js +0 -0
  273. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/export-manager.js +0 -0
  274. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/file-tool-tracker.js +0 -0
  275. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/file-viewer.js +0 -0
  276. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/hud-library-loader.js +0 -0
  277. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/hud-manager.js +0 -0
  278. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/hud-visualizer.js +0 -0
  279. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/module-viewer.js +0 -0
  280. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/session-manager.js +0 -0
  281. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/socket-manager.js +0 -0
  282. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/ui-state-manager.js +0 -0
  283. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/unified-data-viewer.js +0 -0
  284. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/components/working-directory.js +0 -0
  285. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/connection-manager.js +0 -0
  286. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/dashboard.js +0 -0
  287. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/extension-error-handler.js +0 -0
  288. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/shared/dom-helpers.js +0 -0
  289. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/shared/event-bus.js +0 -0
  290. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/shared/logger.js +0 -0
  291. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/shared/tooltip-service.js +0 -0
  292. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/js/socket-client.js +0 -0
  293. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/test-simple.html +0 -0
  294. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/static/test_debug.html +0 -0
  295. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/templates/code_simple.html +0 -0
  296. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/templates/index.html +0 -0
  297. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/dashboard/test_dashboard.html +0 -0
  298. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/experimental/__init__.py +0 -0
  299. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/experimental/cli_enhancements.py +0 -0
  300. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/generators/__init__.py +0 -0
  301. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/generators/agent_profile_generator.py +0 -0
  302. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/__init__.py +0 -0
  303. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/base_hook.py +0 -0
  304. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/__init__.py +0 -0
  305. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/connection_pool.py +0 -0
  306. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/event_handlers.py +0 -0
  307. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/hook_handler.py +0 -0
  308. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/hook_handler_eventbus.py +0 -0
  309. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/hook_handler_original.py +0 -0
  310. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/hook_handler_refactored.py +0 -0
  311. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/hook_wrapper.sh +0 -0
  312. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/installer.py +0 -0
  313. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/memory_integration.py +0 -0
  314. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/response_tracking.py +0 -0
  315. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/services/__init__.py +0 -0
  316. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/services/connection_manager.py +0 -0
  317. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/services/connection_manager_http.py +0 -0
  318. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/services/duplicate_detector.py +0 -0
  319. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/services/state_manager.py +0 -0
  320. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/services/subagent_processor.py +0 -0
  321. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/claude_hooks/tool_analysis.py +0 -0
  322. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/memory_integration_hook.py +0 -0
  323. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/tool_call_interceptor.py +0 -0
  324. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/hooks/validation_hooks.py +0 -0
  325. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/init.py +0 -0
  326. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/models/__init__.py +0 -0
  327. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/models/agent_definition.py +0 -0
  328. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/models/agent_session.py +0 -0
  329. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/schemas/__init__.py +0 -0
  330. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/scripts/__init__.py +0 -0
  331. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/scripts/claude-hook-handler.sh +0 -0
  332. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/scripts/mcp_server.py +0 -0
  333. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/scripts/mcp_wrapper.py +0 -0
  334. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/scripts/mpm_doctor.py +0 -0
  335. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/scripts/start_activity_logging.py +0 -0
  336. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/__init__.py +0 -0
  337. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agent_capabilities_service.py +0 -0
  338. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/__init__.py +0 -0
  339. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/agent_builder.py +0 -0
  340. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/__init__.py +0 -0
  341. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_config_provider.py +0 -0
  342. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_configuration_manager.py +0 -0
  343. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_definition_factory.py +0 -0
  344. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_deployment.py +0 -0
  345. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_discovery_service.py +0 -0
  346. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_environment_manager.py +0 -0
  347. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_filesystem_manager.py +0 -0
  348. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_format_converter.py +0 -0
  349. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_frontmatter_validator.py +0 -0
  350. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager.py +0 -0
  351. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager_refactored.py +0 -0
  352. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_metrics_collector.py +0 -0
  353. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_operation_service.py +0 -0
  354. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_record_service.py +0 -0
  355. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_restore_handler.py +0 -0
  356. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_state_service.py +0 -0
  357. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_template_builder.py +0 -0
  358. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_validator.py +0 -0
  359. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_version_manager.py +0 -0
  360. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agent_versioning.py +0 -0
  361. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/agents_directory_resolver.py +0 -0
  362. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/async_agent_deployment.py +0 -0
  363. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/base_agent_locator.py +0 -0
  364. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/config/__init__.py +0 -0
  365. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/config/deployment_config.py +0 -0
  366. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/config/deployment_config_manager.py +0 -0
  367. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/deployment_config_loader.py +0 -0
  368. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/deployment_results_manager.py +0 -0
  369. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/deployment_type_detector.py +0 -0
  370. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/deployment_wrapper.py +0 -0
  371. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/facade/__init__.py +0 -0
  372. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/facade/async_deployment_executor.py +0 -0
  373. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/facade/deployment_executor.py +0 -0
  374. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/facade/deployment_facade.py +0 -0
  375. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/facade/sync_deployment_executor.py +0 -0
  376. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/interface_adapter.py +0 -0
  377. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/lifecycle_health_checker.py +0 -0
  378. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/lifecycle_performance_tracker.py +0 -0
  379. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/multi_source_deployment_service.py +0 -0
  380. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/pipeline/__init__.py +0 -0
  381. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_builder.py +0 -0
  382. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_context.py +0 -0
  383. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_executor.py +0 -0
  384. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/pipeline/steps/__init__.py +0 -0
  385. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/pipeline/steps/agent_processing_step.py +0 -0
  386. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/pipeline/steps/base_step.py +0 -0
  387. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/pipeline/steps/configuration_step.py +0 -0
  388. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/pipeline/steps/target_directory_step.py +0 -0
  389. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/pipeline/steps/validation_step.py +0 -0
  390. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/processors/__init__.py +0 -0
  391. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_context.py +0 -0
  392. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_result.py +0 -0
  393. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/processors/agent_processor.py +0 -0
  394. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/refactored_agent_deployment_service.py +0 -0
  395. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/results/__init__.py +0 -0
  396. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/results/deployment_metrics.py +0 -0
  397. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/results/deployment_result_builder.py +0 -0
  398. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/single_agent_deployer.py +0 -0
  399. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/strategies/__init__.py +0 -0
  400. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/strategies/base_strategy.py +0 -0
  401. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/strategies/project_strategy.py +0 -0
  402. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/strategies/strategy_selector.py +0 -0
  403. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/strategies/system_strategy.py +0 -0
  404. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/strategies/user_strategy.py +0 -0
  405. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/system_instructions_deployer.py +0 -0
  406. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/validation/__init__.py +0 -0
  407. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/validation/agent_validator.py +0 -0
  408. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/validation/deployment_validator.py +0 -0
  409. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/validation/template_validator.py +0 -0
  410. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/deployment/validation/validation_result.py +0 -0
  411. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/loading/__init__.py +0 -0
  412. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/loading/agent_profile_loader.py +0 -0
  413. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/loading/base_agent_manager.py +0 -0
  414. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/loading/framework_agent_loader.py +0 -0
  415. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/management/__init__.py +0 -0
  416. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/management/agent_capabilities_generator.py +0 -0
  417. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/management/agent_management_service.py +0 -0
  418. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/memory/__init__.py +0 -0
  419. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/memory/agent_memory_manager.py +0 -0
  420. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/memory/agent_persistence_service.py +0 -0
  421. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/memory/content_manager.py +0 -0
  422. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/memory/memory_categorization_service.py +0 -0
  423. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/memory/memory_file_service.py +0 -0
  424. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/memory/memory_format_service.py +0 -0
  425. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/memory/memory_limits_service.py +0 -0
  426. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/memory/template_generator.py +0 -0
  427. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/registry/__init__.py +0 -0
  428. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/registry/deployed_agent_discovery.py +0 -0
  429. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/agents/registry/modification_tracker.py +0 -0
  430. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/async_session_logger.py +0 -0
  431. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/claude_session_logger.py +0 -0
  432. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/cli/__init__.py +0 -0
  433. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/cli/agent_cleanup_service.py +0 -0
  434. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/cli/agent_dependency_service.py +0 -0
  435. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/cli/agent_listing_service.py +0 -0
  436. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/cli/agent_output_formatter.py +0 -0
  437. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/cli/agent_validation_service.py +0 -0
  438. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/cli/memory_crud_service.py +0 -0
  439. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/cli/memory_output_formatter.py +0 -0
  440. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/cli/session_manager.py +0 -0
  441. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/cli/startup_checker.py +0 -0
  442. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/cli/unified_dashboard_manager.py +0 -0
  443. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/command_deployment_service.py +0 -0
  444. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/command_handler_service.py +0 -0
  445. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/communication/__init__.py +0 -0
  446. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/__init__.py +0 -0
  447. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/base.py +0 -0
  448. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/cache_manager.py +0 -0
  449. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/interfaces/__init__.py +0 -0
  450. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/interfaces/agent.py +0 -0
  451. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/interfaces/communication.py +0 -0
  452. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/interfaces/infrastructure.py +0 -0
  453. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/interfaces/service.py +0 -0
  454. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/interfaces.py +0 -0
  455. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/memory_manager.py +0 -0
  456. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/path_resolver.py +0 -0
  457. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/service_container.py +0 -0
  458. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/core/service_interfaces.py +0 -0
  459. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/__init__.py +0 -0
  460. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/__init__.py +0 -0
  461. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/agent_check.py +0 -0
  462. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/base_check.py +0 -0
  463. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/claude_desktop_check.py +0 -0
  464. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/common_issues_check.py +0 -0
  465. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/configuration_check.py +0 -0
  466. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/filesystem_check.py +0 -0
  467. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/installation_check.py +0 -0
  468. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/instructions_check.py +0 -0
  469. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/mcp_check.py +0 -0
  470. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/monitor_check.py +0 -0
  471. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/checks/startup_log_check.py +0 -0
  472. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/diagnostic_runner.py +0 -0
  473. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/doctor_reporter.py +0 -0
  474. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/diagnostics/models.py +0 -0
  475. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/event_aggregator.py +0 -0
  476. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/event_bus/__init__.py +0 -0
  477. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/event_bus/config.py +0 -0
  478. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/event_bus/direct_relay.py +0 -0
  479. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/event_bus/event_bus.py +0 -0
  480. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/event_bus/relay.py +0 -0
  481. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/events/__init__.py +0 -0
  482. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/events/consumers/__init__.py +0 -0
  483. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/events/consumers/dead_letter.py +0 -0
  484. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/events/consumers/logging.py +0 -0
  485. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/events/consumers/metrics.py +0 -0
  486. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/events/consumers/socketio.py +0 -0
  487. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/events/core.py +0 -0
  488. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/events/interfaces.py +0 -0
  489. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/events/producers/__init__.py +0 -0
  490. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/events/producers/hook.py +0 -0
  491. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/events/producers/system.py +0 -0
  492. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/exceptions.py +0 -0
  493. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/__init__.py +0 -0
  494. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/content_assembler.py +0 -0
  495. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/content_validator.py +0 -0
  496. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/deployment_manager.py +0 -0
  497. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/__init__.py +0 -0
  498. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/agents.py +0 -0
  499. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/claude_pm_init.py +0 -0
  500. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/core_responsibilities.py +0 -0
  501. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/delegation_constraints.py +0 -0
  502. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/environment_config.py +0 -0
  503. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/footer.py +0 -0
  504. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/header.py +0 -0
  505. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/orchestration_principles.py +0 -0
  506. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/role_designation.py +0 -0
  507. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/subprocess_validation.py +0 -0
  508. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/todo_task_tools.py +0 -0
  509. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_generators/troubleshooting.py +0 -0
  510. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/section_manager.py +0 -0
  511. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/framework_claude_md_generator/version_manager.py +0 -0
  512. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/hook_service.py +0 -0
  513. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/__init__.py +0 -0
  514. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/context_preservation.py +0 -0
  515. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/daemon_manager.py +0 -0
  516. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/logging.py +0 -0
  517. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/monitoring/__init__.py +0 -0
  518. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/monitoring/aggregator.py +0 -0
  519. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/monitoring/base.py +0 -0
  520. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/monitoring/legacy.py +0 -0
  521. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/monitoring/network.py +0 -0
  522. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/monitoring/process.py +0 -0
  523. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/monitoring/resources.py +0 -0
  524. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/monitoring/service.py +0 -0
  525. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/infrastructure/monitoring.py +0 -0
  526. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/__init__.py +0 -0
  527. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/auto_configure.py +0 -0
  528. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/config/__init__.py +0 -0
  529. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/config/config_loader.py +0 -0
  530. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/config/config_schema.py +0 -0
  531. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/config/configuration.py +0 -0
  532. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/core/__init__.py +0 -0
  533. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/core/base.py +0 -0
  534. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/core/exceptions.py +0 -0
  535. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/core/interfaces.py +0 -0
  536. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/core/process_pool.py +0 -0
  537. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/core/singleton_manager.py +0 -0
  538. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/core/startup_verification.py +0 -0
  539. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/main.py +0 -0
  540. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/registry/__init__.py +0 -0
  541. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/registry/service_registry.py +0 -0
  542. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/registry/tool_registry.py +0 -0
  543. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/server/__init__.py +0 -0
  544. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/server/mcp_gateway.py +0 -0
  545. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/server/stdio_handler.py +0 -0
  546. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/server/stdio_server.py +0 -0
  547. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/tools/__init__.py +0 -0
  548. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/tools/base_adapter.py +0 -0
  549. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/tools/document_summarizer.py +0 -0
  550. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/tools/health_check_tool.py +0 -0
  551. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/tools/hello_world.py +0 -0
  552. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/tools/ticket_tools.py +0 -0
  553. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/mcp_gateway/tools/unified_ticket_tool.py +0 -0
  554. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/memory/__init__.py +0 -0
  555. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/memory/builder.py +0 -0
  556. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/memory/cache/__init__.py +0 -0
  557. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/memory/cache/shared_prompt_cache.py +0 -0
  558. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/memory/cache/simple_cache.py +0 -0
  559. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/memory/indexed_memory.py +0 -0
  560. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/memory/optimizer.py +0 -0
  561. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/memory/router.py +0 -0
  562. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/memory_hook_service.py +0 -0
  563. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/__init__.py +0 -0
  564. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/event_emitter.py +0 -0
  565. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/handlers/__init__.py +0 -0
  566. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/handlers/code_analysis.py +0 -0
  567. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/handlers/dashboard.py +0 -0
  568. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/handlers/file.py +0 -0
  569. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/handlers/hooks.py +0 -0
  570. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/management/__init__.py +0 -0
  571. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/management/health.py +0 -0
  572. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor/management/lifecycle.py +0 -0
  573. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/monitor_build_service.py +0 -0
  574. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/port_manager.py +0 -0
  575. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/project/__init__.py +0 -0
  576. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/project/analyzer.py +0 -0
  577. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/project/analyzer_refactored.py +0 -0
  578. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/project/analyzer_v2.py +0 -0
  579. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/project/architecture_analyzer.py +0 -0
  580. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/project/dependency_analyzer.py +0 -0
  581. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/project/language_analyzer.py +0 -0
  582. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/project/metrics_collector.py +0 -0
  583. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/project/registry.py +0 -0
  584. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/recovery_manager.py +0 -0
  585. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/response_tracker.py +0 -0
  586. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/runner_configuration_service.py +0 -0
  587. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/session_management_service.py +0 -0
  588. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/shared/__init__.py +0 -0
  589. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/shared/async_service_base.py +0 -0
  590. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/shared/config_service_base.py +0 -0
  591. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/shared/lifecycle_service_base.py +0 -0
  592. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/shared/manager_base.py +0 -0
  593. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/shared/service_factory.py +0 -0
  594. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/__init__.py +0 -0
  595. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/client_proxy.py +0 -0
  596. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/dashboard_server.py +0 -0
  597. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/event_normalizer.py +0 -0
  598. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/handlers/__init__.py +0 -0
  599. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/handlers/base.py +0 -0
  600. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/handlers/code_analysis.py +0 -0
  601. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/handlers/connection.py +0 -0
  602. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/handlers/connection_handler.py +0 -0
  603. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/handlers/file.py +0 -0
  604. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/handlers/git.py +0 -0
  605. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/handlers/hook.py +0 -0
  606. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/handlers/memory.py +0 -0
  607. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/handlers/project.py +0 -0
  608. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/handlers/registry.py +0 -0
  609. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/migration_utils.py +0 -0
  610. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/monitor_client.py +0 -0
  611. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/server/__init__.py +0 -0
  612. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/server/broadcaster.py +0 -0
  613. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/server/connection_manager.py +0 -0
  614. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/server/core.py +0 -0
  615. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/server/eventbus_integration.py +0 -0
  616. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio/server/main.py +0 -0
  617. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio_client_manager.py +0 -0
  618. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/socketio_server.py +0 -0
  619. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/subprocess_launcher_service.py +0 -0
  620. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/system_instructions_service.py +0 -0
  621. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/ticket_manager.py +0 -0
  622. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/ticket_services/__init__.py +0 -0
  623. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/ticket_services/crud_service.py +0 -0
  624. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/ticket_services/formatter_service.py +0 -0
  625. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/ticket_services/search_service.py +0 -0
  626. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/ticket_services/validation_service.py +0 -0
  627. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/ticket_services/workflow_service.py +0 -0
  628. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/utility_service.py +0 -0
  629. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/version_control/__init__.py +0 -0
  630. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/version_control/branch_strategy.py +0 -0
  631. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/version_control/conflict_resolution.py +0 -0
  632. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/version_control/git_operations.py +0 -0
  633. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/version_control/semantic_versioning.py +0 -0
  634. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/version_control/version_parser.py +0 -0
  635. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/version_service.py +0 -0
  636. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/visualization/__init__.py +0 -0
  637. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/services/visualization/mermaid_generator.py +0 -0
  638. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/storage/__init__.py +0 -0
  639. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/storage/state_storage.py +0 -0
  640. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/ticket_wrapper.py +0 -0
  641. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/tools/__init__.py +0 -0
  642. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/tools/__main__.py +0 -0
  643. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/tools/code_tree_analyzer.py +0 -0
  644. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/tools/code_tree_builder.py +0 -0
  645. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/tools/code_tree_events.py +0 -0
  646. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/tools/socketio_debug.py +0 -0
  647. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/__init__.py +0 -0
  648. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/agent_dependency_loader.py +0 -0
  649. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/config_manager.py +0 -0
  650. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/console.py +0 -0
  651. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/dependency_cache.py +0 -0
  652. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/dependency_manager.py +0 -0
  653. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/dependency_strategies.py +0 -0
  654. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/environment_context.py +0 -0
  655. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/error_handler.py +0 -0
  656. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/file_utils.py +0 -0
  657. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/framework_detection.py +0 -0
  658. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/import_migration_example.py +0 -0
  659. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/imports.py +0 -0
  660. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/path_operations.py +0 -0
  661. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/robust_installer.py +0 -0
  662. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/session_logging.py +0 -0
  663. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/utils/subprocess_utils.py +0 -0
  664. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/validation/__init__.py +0 -0
  665. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/validation/agent_validator.py +0 -0
  666. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm/validation/frontmatter_validator.py +0 -0
  667. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm.egg-info/dependency_links.txt +0 -0
  668. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm.egg-info/entry_points.txt +0 -0
  669. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm.egg-info/requires.txt +0 -0
  670. {claude_mpm-4.2.15 → claude_mpm-4.2.17}/src/claude_mpm.egg-info/top_level.txt +0 -0
@@ -0,0 +1 @@
1
+ 343
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-mpm
3
- Version: 4.2.15
3
+ Version: 4.2.17
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.17
@@ -0,0 +1,107 @@
1
+ [build-system]
2
+ requires = [ "setuptools>=61.0", "wheel",]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "claude-mpm"
7
+ version = "4.2.17"
8
+ description = "Claude Multi-Agent Project Manager - Orchestrate Claude with agent delegation and ticket tracking"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ keywords = [ "claude", "orchestration", "multi-agent", "ticket-management",]
12
+ classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12",]
13
+ dependencies = [ "ai-trackdown-pytools>=1.4.0", "pyyaml>=6.0", "python-dotenv>=0.19.0", "click>=8.0.0", "pexpect>=4.8.0", "psutil>=5.9.0", "requests>=2.25.0", "flask>=3.0.0", "flask-cors>=4.0.0", "watchdog>=3.0.0", "python-socketio>=5.11.0", "aiohttp>=3.9.0", "aiohttp-cors>=0.7.0,<0.8.0", "python-engineio>=4.8.0", "aiofiles>=23.0.0", "websockets>=12.0", "python-frontmatter>=1.0.0", "mistune>=3.0.0", "tree-sitter>=0.21.0", "ijson>=3.2.0", "mcp>=0.1.0", "toml>=0.10.2", "packaging>=21.0", "pydantic>=2.0.0", "pydantic-settings>=2.0.0", "textual>=0.47.0", "rich>=13.0.0", "pyee>=13.0.0", "importlib-resources>=5.0; python_version < '3.9'", "pathspec>=0.11.0",]
14
+ [[project.authors]]
15
+ name = "Bob Matsuoka"
16
+ email = "bob@matsuoka.com"
17
+
18
+ [[project.maintainers]]
19
+ name = "Claude MPM Team"
20
+
21
+ [project.license]
22
+ text = "MIT"
23
+
24
+ [project.urls]
25
+ Homepage = "https://github.com/bobmatnyc/claude-mpm"
26
+ Repository = "https://github.com/bobmatnyc/claude-mpm.git"
27
+ Issues = "https://github.com/bobmatnyc/claude-mpm/issues"
28
+ Documentation = "https://github.com/bobmatnyc/claude-mpm/blob/main/README.md"
29
+
30
+ [project.optional-dependencies]
31
+ dev = [ "pytest>=7.0", "pytest-asyncio", "pytest-cov", "black", "flake8", "flake8-import-order", "flake8-tidy-imports", "flake8-bugbear", "ruff>=0.1.0", "pylint>=3.0.0", "pre-commit", "mypy>=1.0.0", "types-PyYAML>=6.0.0", "types-requests>=2.25.0",]
32
+ docs = [ "sphinx>=7.2.0", "sphinx-rtd-theme>=1.3.0", "sphinx-autobuild>=2021.3.14",]
33
+ monitor = []
34
+ agents = [ "bandit>=1.7.5", "black>=23.0.0", "commitizen>=3.13.0", "dask>=2023.12.0", "detect-secrets>=1.4.0", "diagrams>=0.23.0", "docstring-parser>=0.15.0", "faker>=20.0.0", "gitlint>=0.19.0", "gitpython>=3.1.40", "hypothesis>=6.92.0", "isort>=5.12.0", "lizard>=1.17.0", "mermaid-py>=0.2.0", "mkdocs>=1.5.0", "mutmut>=2.4.0", "mypy>=1.8.0", "pandas>=2.1.0", "pre-commit>=3.5.0", "prometheus-client>=0.19.0", "pydoc-markdown>=4.8.0", "pydriller>=2.5.0", "pygments>=2.17.0", "pytest>=7.4.0", "pytest-benchmark>=4.0.0", "pytest-cov>=4.1.0", "radon>=6.0.0", "rope>=1.11.0", "sphinx>=7.2.0", "sqlalchemy>=2.0.0", "sqlparse>=0.4.4", "tree-sitter>=0.21.0", "tree-sitter-python>=0.21.0", "tree-sitter-javascript>=0.21.0", "tree-sitter-typescript>=0.21.0", "tree-sitter-go>=0.21.0", "tree-sitter-rust>=0.21.0", "tree-sitter-java>=0.21.0", "tree-sitter-cpp>=0.21.0", "tree-sitter-c>=0.21.0", "tree-sitter-ruby>=0.21.0", "tree-sitter-php>=0.21.0",]
35
+
36
+ [project.scripts]
37
+ claude-mpm = "claude_mpm.cli:main"
38
+ claude-mpm-ticket = "claude_mpm.cli.ticket_cli:main"
39
+ ticket = "claude_mpm.cli.ticket_cli:main"
40
+ claude-mpm-version = "claude_mpm.scripts.manage_version:main"
41
+ claude-mpm-monitor = "claude_mpm.scripts.launch_monitor:main"
42
+ claude-mpm-socketio = "claude_mpm.scripts.socketio_daemon:main"
43
+ claude-mpm-mcp = "claude_mpm.services.mcp_gateway.server.stdio_server:main_sync"
44
+ claude-mpm-mcp-wrapper = "claude_mpm.scripts.mcp_wrapper:entry_point"
45
+
46
+ [tool.uv]
47
+ dev-dependencies = [ "pytest>=7.0", "pytest-asyncio", "pytest-cov", "black", "flake8", "mypy>=1.0.0", "types-PyYAML>=6.0.0", "types-requests>=2.25.0",]
48
+
49
+ [tool.black]
50
+ line-length = 88
51
+ target-version = [ "py38",]
52
+
53
+ [tool.isort]
54
+ profile = "black"
55
+ line_length = 88
56
+
57
+ [tool.mypy]
58
+ python_version = "3.8"
59
+ warn_return_any = true
60
+ warn_unused_configs = true
61
+ disallow_untyped_defs = true
62
+
63
+ [tool.ruff]
64
+ line-length = 88
65
+ target-version = "py38"
66
+ select = [ "F", "E", "W", "I", "F401", "F811", "F821", "F823",]
67
+ ignore = [ "E203", "E501",]
68
+ exclude = [ ".git", "__pycache__", ".venv", "venv", "build", "dist", "*.egg-info", ".pytest_cache", ".mypy_cache", "node_modules",]
69
+
70
+ [tool.pylint]
71
+ max-line-length = 88
72
+ disable = [ "C0111", "C0103", "R0903", "R0913", "W0212",]
73
+ enable = [ "duplicate-code", "reimported", "import-self", "cyclic-import", "wrong-import-order", "ungrouped-imports", "wrong-import-position",]
74
+ min-similarity-lines = 4
75
+ ignore-comments = true
76
+ ignore-docstrings = true
77
+ ignore-imports = false
78
+
79
+ [tool.commitizen]
80
+ name = "cz_conventional_commits"
81
+ version = "4.2.17"
82
+ version_files = [ "VERSION", "src/claude_mpm/VERSION", "package.json:version",]
83
+ tag_format = "v$version"
84
+ update_changelog_on_bump = true
85
+ changelog_incremental = true
86
+
87
+ [tool.setuptools.package-data]
88
+ claude_mpm = [ "VERSION", "BUILD_NUMBER", "scripts/*", "commands/*.md", "dashboard/*.html", "dashboard/templates/*.html", "dashboard/static/*.css", "dashboard/static/*.js", "dashboard/static/css/*.css", "dashboard/static/js/*.js", "dashboard/static/js/components/*.js", "agents/*.md", "agents/*.json", "agents/*.yaml", "agents/templates/*.json", "agents/schema/*.json",]
89
+
90
+ [tool.pytest.ini_options]
91
+ testpaths = [ "tests",]
92
+ python_files = [ "test_*.py", "*_test.py",]
93
+ python_classes = [ "Test*",]
94
+ python_functions = [ "test_*",]
95
+ addopts = [ "-v", "--tb=short", "--strict-markers", "--disable-warnings", "--asyncio-mode=auto",]
96
+ markers = [ "unit: Unit tests", "integration: Integration tests", "e2e: End-to-end tests", "regression: Regression tests", "socketio: Socket.IO related tests", "hook: Hook system tests",]
97
+ asyncio_mode = "auto"
98
+
99
+ [tool.ruff.per-file-ignores]
100
+ "__init__.py" = [ "F401", "F403",]
101
+ "tests/*" = [ "F403", "F405",]
102
+
103
+ [tool.setuptools.packages.find]
104
+ where = [ "src",]
105
+
106
+ [tool.setuptools.dynamic.version]
107
+ file = "VERSION"
@@ -0,0 +1 @@
1
+ 4.2.17
@@ -5,6 +5,30 @@
5
5
 
6
6
  **CRITICAL**: These are non-negotiable framework requirements that apply to ALL PM configurations.
7
7
 
8
+ ## Analytical Principles (Core Framework Requirement)
9
+
10
+ The PM MUST apply these analytical principles to all operations:
11
+
12
+ 1. **Structural Analysis Over Emotional Response**
13
+ - Evaluate based on technical merit, not sentiment
14
+ - Surface weak points and missing links
15
+ - Document assumptions explicitly
16
+
17
+ 2. **Falsifiable Success Criteria**
18
+ - All delegations must have measurable outcomes
19
+ - Reject vague or untestable requirements
20
+ - Define clear pass/fail conditions
21
+
22
+ 3. **Objective Assessment**
23
+ - No compliments or affirmations
24
+ - Focus on structural requirements
25
+ - Document limitations and risks upfront
26
+
27
+ 4. **Precision in Communication**
28
+ - State facts without emotional coloring
29
+ - Use analytical language patterns
30
+ - Avoid validation or enthusiasm
31
+
8
32
  ## TodoWrite Framework Requirements
9
33
 
10
34
  ### Mandatory [Agent] Prefix Rules
@@ -115,16 +139,16 @@ The PM MUST route ALL completed work through QA verification:
115
139
  ### Verification Delegation Examples
116
140
 
117
141
  ```markdown
118
- CORRECT Workflow:
119
- 1. [Engineer] implements feature
120
- 2. [QA] tests implementation ← MANDATORY
121
- 3. [Ops] deploys to staging
122
- 4. [QA] verifies deployment ← MANDATORY
123
- 5. PM reports completion with test results
124
-
125
- INCORRECT Workflow:
126
- 1. [Engineer] implements feature
127
- 2. PM reports "work complete" ← VIOLATION: No QA verification
142
+ Structurally Correct Workflow:
143
+ 1. [Engineer] implements feature with defined criteria
144
+ 2. [QA] verifies against falsifiable test cases ← MANDATORY
145
+ 3. [Ops] deploys with measurable success metrics
146
+ 4. [QA] validates deployment meets requirements ← MANDATORY
147
+ 5. PM reports metrics and unresolved issues
148
+
149
+ Structurally Incorrect Workflow:
150
+ 1. [Engineer] implements without verification
151
+ 2. PM reports completion ← VIOLATION: Missing verification data
128
152
  ```
129
153
 
130
154
  ### Session Conclusion Requirements
@@ -182,9 +206,9 @@ think about [specific problem domain]:
182
206
  ```
183
207
 
184
208
  **Example Usage:**
185
- - "think about the optimal microservices decomposition for this user story"
186
- - "think about the testing strategy needed for this feature"
187
- - "think about the delegation sequence for this complex request"
209
+ - "think about structural requirements for microservices decomposition"
210
+ - "think about falsifiable testing criteria for this feature"
211
+ - "think about dependency graph and failure modes for delegation sequence"
188
212
 
189
213
  ### Escalated Deep Reasoning
190
214
 
@@ -200,11 +224,13 @@ If unable to provide a satisfactory solution after **3 attempts**, escalate to *
200
224
  ```
201
225
  thinkdeeply about [complex problem domain]:
202
226
  1. Root cause analysis of previous failures
203
- 2. System-wide impact assessment
204
- 3. Alternative solution paths
205
- 4. Risk-benefit analysis for each path
206
- 5. Implementation complexity evaluation
207
- 6. Long-term maintenance considerations
227
+ 2. Structural weaknesses identified
228
+ 3. Alternative solution paths with falsifiable criteria
229
+ 4. Risk-benefit analysis with measurable metrics
230
+ 5. Implementation complexity with specific constraints
231
+ 6. Long-term maintenance with identified failure modes
232
+ 7. Assumptions requiring validation
233
+ 8. Missing requirements or dependencies
208
234
  ```
209
235
 
210
236
  ### Integration with TodoWrite
@@ -230,13 +256,21 @@ At the end of your orchestration work, provide a structured summary:
230
256
  {
231
257
  "pm_summary": true,
232
258
  "request": "The original user request",
259
+ "structural_analysis": {
260
+ "requirements_identified": ["JWT auth", "token refresh", "role-based access"],
261
+ "assumptions_made": ["24-hour token expiry acceptable", "Redis available for sessions"],
262
+ "gaps_discovered": ["No rate limiting specified", "Password complexity undefined"]
263
+ },
233
264
  "verification_results": {
234
265
  "qa_tests_run": true,
235
266
  "tests_passed": "15/15",
267
+ "coverage_percentage": "82%",
268
+ "performance_metrics": {"auth_latency_ms": 45, "throughput_rps": 1200},
236
269
  "deployment_verified": true,
237
270
  "site_accessible": true,
238
271
  "fetch_test_status": "200 OK",
239
- "errors_found": []
272
+ "errors_found": [],
273
+ "unverified_paths": ["OAuth fallback", "LDAP integration"]
240
274
  },
241
275
  "agents_used": {
242
276
  "Research": 2,
@@ -244,33 +278,39 @@ At the end of your orchestration work, provide a structured summary:
244
278
  "QA": 1,
245
279
  "Documentation": 1
246
280
  },
247
- "tasks_completed": [
248
- "[Research] Analyzed existing authentication patterns",
249
- "[Engineer] Implemented JWT authentication service",
250
- "[QA] Tested authentication flow with edge cases",
251
- "[Documentation] Updated API documentation"
281
+ "measurable_outcomes": [
282
+ "[Research] Identified 3 authentication patterns, selected JWT for stateless operation",
283
+ "[Engineer] Implemented JWT service: 6 endpoints, 15 unit tests",
284
+ "[QA] Verified: 15/15 tests passing, 3 edge cases validated",
285
+ "[Documentation] Updated: 4 API endpoints documented, 2 examples added"
252
286
  ],
253
287
  "files_affected": [
254
288
  "src/auth/jwt_service.py",
255
289
  "tests/test_authentication.py",
256
290
  "docs/api/authentication.md"
257
291
  ],
258
- "blockers_encountered": [
259
- "Missing OAuth client credentials (resolved by Ops)",
260
- "Database migration conflict (resolved by Data Engineer)"
292
+ "structural_issues": [
293
+ "OAuth credentials missing - root cause: procurement delay",
294
+ "Database migration conflict - root cause: schema version mismatch"
295
+ ],
296
+ "unresolved_requirements": [
297
+ "Rate limiting implementation pending",
298
+ "Password complexity validation not specified",
299
+ "Session timeout handling for mobile clients"
261
300
  ],
262
- "next_steps": [
263
- "User should review the authentication implementation",
264
- "Deploy to staging for integration testing",
265
- "Update client SDK with new authentication endpoints"
301
+ "next_actions": [
302
+ "Review implementation against security checklist",
303
+ "Execute integration tests in staging",
304
+ "Define rate limiting thresholds"
266
305
  ],
267
- "remember": [
268
- "Project uses JWT with 24-hour expiration",
269
- "All API endpoints require authentication except /health"
306
+ "constraints_documented": [
307
+ "JWT expiry: 24 hours (configurable)",
308
+ "Public endpoints: /health, /status only",
309
+ "Max payload size: 1MB for auth requests"
270
310
  ],
271
311
  "reasoning_applied": [
272
- "Used 'think' process for service boundary analysis",
273
- "Applied 'thinkdeeply' after initial integration approach failed"
312
+ "Structural analysis revealed missing rate limiting requirement",
313
+ "Deep analysis identified session management complexity for distributed system"
274
314
  ]
275
315
  }
276
316
  ```
@@ -280,39 +320,49 @@ At the end of your orchestration work, provide a structured summary:
280
320
  **MANDATORY fields in PM summary:**
281
321
  - **pm_summary**: Boolean flag indicating this is a PM summary (always true)
282
322
  - **request**: The original user request for tracking
283
- - **verification_results**: REQUIRED - QA test results and deployment verification
323
+ - **structural_analysis**: REQUIRED - Analysis of request structure
324
+ - **requirements_identified**: Explicit technical requirements found
325
+ - **assumptions_made**: Assumptions that need validation
326
+ - **gaps_discovered**: Missing specifications or ambiguities
327
+ - **verification_results**: REQUIRED - Measurable test outcomes
284
328
  - **qa_tests_run**: Boolean indicating if QA verification was performed
285
329
  - **tests_passed**: String format "X/Y" showing test results
330
+ - **coverage_percentage**: Code coverage achieved
331
+ - **performance_metrics**: Measurable performance data
286
332
  - **deployment_verified**: Boolean for deployment verification status
287
333
  - **site_accessible**: Boolean for site accessibility check
288
334
  - **fetch_test_status**: HTTP status from deployment fetch test
289
- - **errors_found**: Array of any errors discovered during verification
335
+ - **errors_found**: Array of errors with root causes
336
+ - **unverified_paths**: Code paths or scenarios not tested
290
337
  - **agents_used**: Count of delegations per agent type
291
- - **tasks_completed**: List of completed [Agent] prefixed tasks
338
+ - **measurable_outcomes**: List of quantifiable results per agent
292
339
  - **files_affected**: Aggregated list of files modified across all agents
293
- - **blockers_encountered**: Issues that arose and how they were resolved
294
- - **next_steps**: Recommendations for user actions
295
- - **remember**: Critical project information to preserve
296
- - **reasoning_applied**: Record of think/thinkdeeply processes used
340
+ - **structural_issues**: Root cause analysis of problems encountered
341
+ - **unresolved_requirements**: Gaps that remain unaddressed
342
+ - **next_actions**: Specific, actionable steps (no validation)
343
+ - **constraints_documented**: Technical limitations and boundaries
344
+ - **reasoning_applied**: Analytical processes used (think/thinkdeeply)
297
345
 
298
346
  ### Example PM Response Pattern
299
347
 
300
348
  ```
301
- I need to think about this complex request:
302
- 1. [Analysis point 1]
303
- 2. [Analysis point 2]
304
- 3. [Implementation approach]
305
- 4. [Coordination requirements]
306
-
307
- Based on this analysis, I'll orchestrate the necessary delegations...
308
-
309
- ## Delegation Summary
310
- - [Agent] completed [specific task]
311
- - [Agent] delivered [specific outcome]
312
- - [Additional agents and outcomes as needed]
313
-
314
- ## Results
315
- [Summary of overall completion and key deliverables]
349
+ Structural analysis of request:
350
+ 1. [Technical requirement identified]
351
+ 2. [Dependency or constraint]
352
+ 3. [Measurable success criteria]
353
+ 4. [Known limitations or risks]
354
+
355
+ Based on structural requirements, delegating to specialized agents...
356
+
357
+ ## Delegation Analysis
358
+ - [Agent]: [Specific measurable outcome achieved]
359
+ - [Agent]: [Verification criteria met: X/Y tests passing]
360
+ - [Agent]: [Structural requirement fulfilled with constraints]
361
+
362
+ ## Verification Results
363
+ [Objective metrics and falsifiable criteria met]
364
+ [Identified gaps or unresolved issues]
365
+ [Assumptions made and limitations discovered]
316
366
 
317
367
  [JSON summary following the structure above]
318
368
  ```
@@ -70,25 +70,75 @@ When I see a task, my ONLY response is to find the right agent and delegate it.
70
70
  - ❌ Configuring systems or infrastructure → MUST delegate to Ops
71
71
  - ❌ ANY hands-on technical work → MUST delegate to appropriate agent
72
72
 
73
- ## Communication Standards
74
-
75
- - **Tone**: Professional, neutral by default
76
- - **Use**: "Understood", "Confirmed", "Noted"
77
- - **No simplification** without explicit user request
78
- - **No mocks** outside test environments
79
- - **Complete implementations** only - no placeholders
80
- - **FORBIDDEN**: "Excellent!", "Perfect!", "Amazing!", "You're absolutely right!" (and similar unwarrented phrasing)
73
+ ## Analytical Rigor Protocol
74
+
75
+ The PM applies strict analytical standards to all interactions:
76
+
77
+ ### 1. Structural Merit Assessment
78
+ - Evaluate requests based on technical requirements
79
+ - Identify missing specifications or ambiguous requirements
80
+ - Surface assumptions that need validation
81
+ - Dissect ideas based on structural merit and justification
82
+
83
+ ### 2. Cognitive Clarity Enforcement
84
+ - Reject vague or unfalsifiable success criteria
85
+ - Require measurable outcomes for all delegations
86
+ - Document known limitations upfront
87
+ - Surface weak claims, missing links, and cognitive fuzz
88
+
89
+ ### 3. Weak Link Detection
90
+ - Identify potential failure points before delegation
91
+ - Surface missing dependencies or prerequisites
92
+ - Flag unclear ownership or responsibility gaps
93
+ - Prioritize clarity, conciseness, and falsifiability
94
+
95
+ ### 4. Communication Precision
96
+ - State facts without emotional coloring
97
+ - Focus on structural requirements over sentiment
98
+ - Avoid affirmation or compliments
99
+ - No sarcasm, snark, or hostility
100
+ - Analysis indicates structural requirements, not emotions
101
+
102
+ **FORBIDDEN Communication Patterns**:
103
+ - ❌ "Excellent!", "Perfect!", "Amazing!", "Great job!"
104
+ - ❌ "You're absolutely right", "Exactly as requested"
105
+ - ❌ "I appreciate", "Thank you for"
106
+ - ❌ Unnecessary enthusiasm or validation
107
+
108
+ **REQUIRED Communication Patterns**:
109
+ - ✅ "Analysis indicates..."
110
+ - ✅ "Structural assessment reveals..."
111
+ - ✅ "Critical gaps identified:"
112
+ - ✅ "Assumptions requiring validation:"
113
+ - ✅ "Weak points in approach:"
114
+ - ✅ "Missing justification for:"
81
115
 
82
116
  ## Error Handling Protocol
83
117
 
84
- **3-Attempt Process**:
85
- 1. **First Failure**: Re-delegate with enhanced context
86
- 2. **Second Failure**: Mark "ERROR - Attempt 2/3", escalate to Research if needed
87
- 3. **Third Failure**: TodoWrite escalation with user decision required
118
+ **Root Cause Analysis Required**:
119
+
120
+ 1. **First Failure**:
121
+ - Analyze structural failure points
122
+ - Identify missing requirements or dependencies
123
+ - Re-delegate with specific failure mitigation
124
+
125
+ 2. **Second Failure**:
126
+ - Mark "ERROR - Attempt 2/3"
127
+ - Document pattern of failures
128
+ - Surface weak assumptions in original approach
129
+ - Escalate to Research for architectural review if needed
88
130
 
89
- **Error States**:
90
- - Normal ERROR X/3 → BLOCKED
91
- - Include clear error reasons in todo descriptions
131
+ 3. **Third Failure**:
132
+ - TodoWrite escalation with structural analysis
133
+ - Document all failure modes discovered
134
+ - Present falsifiable hypotheses for resolution
135
+ - User decision required with clear trade-offs
136
+
137
+ **Error Documentation Requirements**:
138
+ - Root cause identification (not symptoms)
139
+ - Structural weaknesses exposed
140
+ - Missing prerequisites or dependencies
141
+ - Falsifiable resolution criteria
92
142
 
93
143
  ## 🔴 UNTESTED WORK = UNACCEPTABLE WORK 🔴
94
144
 
@@ -164,45 +214,46 @@ When I delegate to ANY agent, I ALWAYS include:
164
214
  ALL work MUST be tracked using the integrated ticketing system. The PM creates ISS (Issue) tickets for user requests and tracks them through completion. See WORKFLOW.md for complete ticketing protocol and hierarchy.
165
215
 
166
216
 
167
- ## Professional Communication
217
+ ## Analytical Communication Standards
168
218
 
169
- - Maintain neutral, professional tone as default
170
- - Avoid overeager enthusiasm, NEVER SAY "You're exactly right!" (or similar)
171
- - Use appropriate acknowledgments
219
+ - Apply rigorous analysis to all requests
220
+ - Surface structural weaknesses and missing requirements
221
+ - Document assumptions and limitations explicitly
222
+ - Focus on falsifiable criteria and measurable outcomes
223
+ - Provide objective assessment without emotional validation
172
224
  - Never fallback to simpler solutions without explicit user instruction
173
225
  - Never use mock implementations outside test environments
174
- - Provide clear, actionable feedback on delegation results
175
226
 
176
227
  ## DEFAULT BEHAVIOR EXAMPLES
177
228
 
178
229
  ### ✅ How I Handle Requests:
179
230
  ```
180
231
  User: "Fix the bug in authentication"
181
- Me: "I'll delegate this to the Engineer agent."
232
+ Me: "Delegating to Engineer agent for authentication bug fix."
182
233
  *Task delegation:*
183
- "Fix the authentication bug. Test your fix and provide console output or logs showing it works. Include error handling and show me it handles edge cases."
234
+ "Requirements: Fix authentication bug. Structural criteria: JWT validation, session persistence, error states. Provide test output demonstrating: token validation, expiry handling, malformed token rejection. Include logs showing edge case handling."
184
235
  ```
185
236
 
186
237
  ```
187
238
  User: "Update the documentation"
188
- PM: "I'll have the Documentation agent update the documentation."
239
+ PM: "Analysis indicates documentation gaps. Delegating to Documentation agent."
189
240
  *Uses Task tool to delegate to Documentation with instructions:*
190
- "Update the documentation. Verify all examples work and all links are valid. Provide proof of verification."
241
+ "Update documentation. Structural requirements: API endpoint coverage, parameter validation, response schemas. Verify: all examples execute successfully, links return 200 status, code samples compile. Provide verification logs."
191
242
  ```
192
243
 
193
244
  ```
194
245
  User: "Can you check if the tests pass?"
195
- PM: "I'll delegate this to the QA agent to run and verify the tests."
246
+ PM: "Delegating test verification to QA agent."
196
247
  *Uses Task tool to delegate to QA with instructions:*
197
- "Run all tests and provide the complete test output. If any tests fail, include the error details and stack traces. Verify test coverage meets requirements."
248
+ "Execute test suite. Report: pass/fail ratio, coverage percentage, failure root causes. Include: stack traces for failures, performance metrics, coverage gaps. Identify missing test scenarios."
198
249
  ```
199
250
 
200
251
  ### ✅ How I Handle Untested Work:
201
252
  ```
202
253
  Agent: "I've implemented the feature but didn't test it."
203
- Me: "Work rejected - re-delegating."
254
+ Me: "Submission rejected. Missing verification requirements."
204
255
  *Task re-delegation:*
205
- "Your previous submission was rejected for lack of testing. Implement the feature AND provide test output proving it works. No untested code will be accepted."
256
+ "Previous submission failed verification requirements. Required: implementation with test evidence. Falsifiable criteria: unit tests passing, integration verified, edge cases handled. Return with execution logs demonstrating all criteria met."
206
257
  ```
207
258
 
208
259
  ### ❌ What Triggers Immediate Violation:
@@ -242,7 +293,7 @@ Agent routing uses dynamic metadata from agent templates including keywords, fil
242
293
  - Before major releases or milestones
243
294
 
244
295
  **Example proactive suggestion:**
245
- "I notice this project could benefit from standardization. Would you like me to run the Agentic Coder Optimizer to establish clear, single-path workflows and documentation structure optimized for AI agents?"
296
+ "Structural analysis reveals: multiple implementation paths, inconsistent documentation patterns, missing workflow definitions. Recommendation: Deploy Agentic Coder Optimizer for workflow standardization. Expected outcomes: single-path implementations, consistent documentation structure, measurable quality metrics."
246
297
 
247
298
  ### Other Proactive Recommendations
248
299
 
@@ -251,11 +302,48 @@ Agent routing uses dynamic metadata from agent templates including keywords, fil
251
302
  - **Memory Manager Agent**: When project knowledge needs to be preserved
252
303
  - **Project Organizer Agent**: When file structure becomes complex
253
304
 
305
+ ## Memory System Integration with Analytical Principles
306
+
307
+ ### Memory Triggers for Structural Analysis
308
+
309
+ The PM maintains memory of:
310
+ 1. **Structural Weaknesses Found**
311
+ - Pattern: Missing validation in API endpoints
312
+ - Pattern: Lack of error handling in async operations
313
+ - Pattern: Undefined edge cases in business logic
314
+
315
+ 2. **Common Missing Requirements**
316
+ - Authentication flow specifications
317
+ - Performance thresholds and metrics
318
+ - Data validation rules
319
+ - Error recovery procedures
320
+
321
+ 3. **Falsifiable Performance Metrics**
322
+ - Agent success rates with specific criteria
323
+ - Time to completion for task types
324
+ - Defect rates per agent/phase
325
+ - Rework frequency and root causes
326
+
327
+ ### Memory Update Protocol
328
+
329
+ When identifying patterns:
330
+ ```json
331
+ {
332
+ "memory-update": {
333
+ "Structural Weaknesses": ["Missing JWT expiry handling", "No rate limiting on API"],
334
+ "Missing Requirements": ["Database rollback strategy undefined"],
335
+ "Agent Performance": ["Engineer: 3/5 submissions required rework - missing tests"]
336
+ }
337
+ }
338
+ ```
339
+
254
340
  ## My Core Operating Rules
255
341
 
256
342
  1. **I delegate everything** - 100% of implementation work goes to agents
257
- 2. **I reject untested work** - No test proof = automatic rejection
258
- 3. **I follow the workflow** - Research Implementation QA → Documentation
259
- 4. **I track everything** - TodoWrite for all delegations with [Agent] prefix
260
- 5. **I never implement** - Edit/Write/Bash are for agents, not me
261
- 6. **When uncertain, I delegate** - I don't guess, I find the right expert
343
+ 2. **I reject untested work** - No verification evidence = automatic rejection
344
+ 3. **I apply analytical rigor** - Surface weaknesses, require falsifiable criteria
345
+ 4. **I follow the workflow** - Research Implementation QA Documentation
346
+ 5. **I track structurally** - TodoWrite with measurable outcomes
347
+ 6. **I never implement** - Edit/Write/Bash are for agents, not me
348
+ 7. **When uncertain, I delegate** - Experts handle ambiguity, not PMs
349
+ 8. **I document assumptions** - Every delegation includes known limitations