claude-mpm 4.0.29__tar.gz → 4.0.31__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 (486) hide show
  1. claude_mpm-4.0.31/BUILD_NUMBER +1 -0
  2. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/CLAUDE.md +2 -2
  3. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/PKG-INFO +4 -1
  4. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/README.md +3 -0
  5. claude_mpm-4.0.31/VERSION +1 -0
  6. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/pyproject.toml +2 -2
  7. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/BASE_AGENT_TEMPLATE.md +48 -3
  8. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/BASE_PM.md +20 -15
  9. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/INSTRUCTIONS.md +12 -2
  10. claude_mpm-4.0.31/src/claude_mpm/agents/templates/documentation.json +177 -0
  11. claude_mpm-4.0.31/src/claude_mpm/agents/templates/engineer.json +159 -0
  12. claude_mpm-4.0.31/src/claude_mpm/agents/templates/ops.json +134 -0
  13. claude_mpm-4.0.31/src/claude_mpm/agents/templates/qa.json +152 -0
  14. claude_mpm-4.0.31/src/claude_mpm/agents/templates/refactoring_engineer.json +262 -0
  15. claude_mpm-4.0.31/src/claude_mpm/agents/templates/research.json +116 -0
  16. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/__init__.py +2 -0
  17. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/__init__.py +2 -0
  18. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/agent_manager.py +10 -6
  19. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/agents.py +2 -1
  20. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/cleanup.py +1 -1
  21. claude_mpm-4.0.31/src/claude_mpm/cli/commands/doctor.py +209 -0
  22. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/mcp.py +3 -3
  23. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/mcp_install_commands.py +12 -30
  24. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/mcp_server_commands.py +9 -9
  25. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/run.py +31 -2
  26. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/run_config_checker.py +1 -1
  27. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/parsers/agent_manager_parser.py +3 -3
  28. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/parsers/base_parser.py +5 -1
  29. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/parsers/mcp_parser.py +1 -1
  30. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/parsers/run_parser.py +1 -1
  31. claude_mpm-4.0.31/src/claude_mpm/cli/startup_logging.py +463 -0
  32. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/constants.py +1 -0
  33. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/claude_runner.py +78 -0
  34. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/framework_loader.py +45 -11
  35. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/interactive_session.py +82 -3
  36. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/output_style_manager.py +6 -6
  37. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/unified_paths.py +128 -0
  38. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/scripts/mcp_server.py +2 -2
  39. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_validator.py +1 -0
  40. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/multi_source_deployment_service.py +69 -1
  41. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/system_instructions_deployer.py +2 -2
  42. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/__init__.py +18 -0
  43. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/checks/__init__.py +30 -0
  44. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/checks/agent_check.py +319 -0
  45. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/checks/base_check.py +64 -0
  46. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/checks/claude_desktop_check.py +283 -0
  47. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/checks/common_issues_check.py +354 -0
  48. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/checks/configuration_check.py +300 -0
  49. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/checks/filesystem_check.py +233 -0
  50. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/checks/installation_check.py +255 -0
  51. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/checks/mcp_check.py +315 -0
  52. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/checks/monitor_check.py +282 -0
  53. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/checks/startup_log_check.py +322 -0
  54. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/diagnostic_runner.py +247 -0
  55. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/doctor_reporter.py +283 -0
  56. claude_mpm-4.0.31/src/claude_mpm/services/diagnostics/models.py +120 -0
  57. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/core/interfaces.py +1 -1
  58. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/main.py +1 -1
  59. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/server/mcp_gateway.py +3 -3
  60. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/server/stdio_handler.py +1 -1
  61. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/server/stdio_server.py +3 -3
  62. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/tools/ticket_tools.py +2 -2
  63. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/handlers/registry.py +39 -7
  64. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/server/core.py +72 -22
  65. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/validation/frontmatter_validator.py +1 -1
  66. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm.egg-info/PKG-INFO +4 -1
  67. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm.egg-info/SOURCES.txt +17 -0
  68. claude_mpm-4.0.29/BUILD_NUMBER +0 -1
  69. claude_mpm-4.0.29/VERSION +0 -1
  70. claude_mpm-4.0.29/src/claude_mpm/agents/templates/documentation.json +0 -164
  71. claude_mpm-4.0.29/src/claude_mpm/agents/templates/engineer.json +0 -145
  72. claude_mpm-4.0.29/src/claude_mpm/agents/templates/ops.json +0 -120
  73. claude_mpm-4.0.29/src/claude_mpm/agents/templates/qa.json +0 -139
  74. claude_mpm-4.0.29/src/claude_mpm/agents/templates/refactoring_engineer.json +0 -244
  75. claude_mpm-4.0.29/src/claude_mpm/agents/templates/research.json +0 -102
  76. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/LICENSE +0 -0
  77. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/MANIFEST.in +0 -0
  78. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/scripts/ticket +0 -0
  79. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/setup.cfg +0 -0
  80. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/BUILD_NUMBER +0 -0
  81. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/VERSION +0 -0
  82. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/__init__.py +0 -0
  83. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/__main__.py +0 -0
  84. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/MEMORY.md +0 -0
  85. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/OUTPUT_STYLE.md +0 -0
  86. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/WORKFLOW.md +0 -0
  87. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/__init__.py +0 -0
  88. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/agent-template.yaml +0 -0
  89. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/agent_loader.py +0 -0
  90. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/agent_loader_integration.py +0 -0
  91. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/agents_metadata.py +0 -0
  92. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/async_agent_loader.py +0 -0
  93. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/backups/INSTRUCTIONS.md +0 -0
  94. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/base_agent.json +0 -0
  95. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/base_agent_loader.py +0 -0
  96. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/frontmatter_validator.py +0 -0
  97. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/schema/agent_schema.json +0 -0
  98. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/system_agent_config.py +0 -0
  99. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/__init__.py +0 -0
  100. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/agent-manager.json +0 -0
  101. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/agent-manager.md +0 -0
  102. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/api_qa.json +0 -0
  103. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/backup/data_engineer_agent_20250726_234551.json +0 -0
  104. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/backup/documentation_agent_20250726_234551.json +0 -0
  105. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/backup/engineer_agent_20250726_234551.json +0 -0
  106. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/backup/ops_agent_20250726_234551.json +0 -0
  107. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/backup/qa_agent_20250726_234551.json +0 -0
  108. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/backup/research_agent_2025011_234551.json +0 -0
  109. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/backup/research_agent_20250726_234551.json +0 -0
  110. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/backup/research_memory_efficient.json +0 -0
  111. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/backup/security_agent_20250726_234551.json +0 -0
  112. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/backup/version_control_agent_20250726_234551.json +0 -0
  113. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/code_analyzer.json +0 -0
  114. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/data_engineer.json +0 -0
  115. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/memory_manager.json +0 -0
  116. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/project_organizer.json +0 -0
  117. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/security.json +0 -0
  118. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/ticketing.json +0 -0
  119. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/vercel_ops_agent.json +0 -0
  120. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/vercel_ops_instructions.md +0 -0
  121. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/version_control.json +0 -0
  122. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/web_qa.json +0 -0
  123. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/agents/templates/web_ui.json +0 -0
  124. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/__main__.py +0 -0
  125. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/aggregate.py +0 -0
  126. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/config.py +0 -0
  127. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/info.py +0 -0
  128. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/mcp_command_router.py +0 -0
  129. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/mcp_config_commands.py +0 -0
  130. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/mcp_tool_commands.py +0 -0
  131. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/memory.py +0 -0
  132. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/monitor.py +0 -0
  133. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/socketio_monitor.py +0 -0
  134. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/commands/tickets.py +0 -0
  135. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/parser.py +0 -0
  136. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/parsers/__init__.py +0 -0
  137. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/parsers/agents_parser.py +0 -0
  138. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/parsers/config_parser.py +0 -0
  139. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/parsers/memory_parser.py +0 -0
  140. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/parsers/monitor_parser.py +0 -0
  141. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/parsers/tickets_parser.py +0 -0
  142. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/shared/__init__.py +0 -0
  143. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/shared/argument_patterns.py +0 -0
  144. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/shared/base_command.py +0 -0
  145. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/shared/error_handling.py +0 -0
  146. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/shared/output_formatters.py +0 -0
  147. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/ticket_cli.py +0 -0
  148. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli/utils.py +0 -0
  149. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli_module/__init__.py +0 -0
  150. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli_module/args.py +0 -0
  151. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli_module/commands.py +0 -0
  152. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/cli_module/migration_example.py +0 -0
  153. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/config/__init__.py +0 -0
  154. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/config/agent_config.py +0 -0
  155. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/config/experimental_features.py +0 -0
  156. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/config/paths.py +0 -0
  157. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/config/socketio_config.py +0 -0
  158. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/__init__.py +0 -0
  159. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/agent_name_normalizer.py +0 -0
  160. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/agent_registry.py +0 -0
  161. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/agent_session_manager.py +0 -0
  162. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/base_service.py +0 -0
  163. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/cache.py +0 -0
  164. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/config.py +0 -0
  165. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/config_aliases.py +0 -0
  166. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/config_constants.py +0 -0
  167. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/constants.py +0 -0
  168. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/container.py +0 -0
  169. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/exceptions.py +0 -0
  170. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/factories.py +0 -0
  171. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/hook_manager.py +0 -0
  172. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/hook_performance_config.py +0 -0
  173. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/injectable_service.py +0 -0
  174. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/interfaces.py +0 -0
  175. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/lazy.py +0 -0
  176. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/logger.py +0 -0
  177. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/logging_config.py +0 -0
  178. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/minimal_framework_loader.py +0 -0
  179. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/mixins.py +0 -0
  180. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/oneshot_session.py +0 -0
  181. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/optimized_agent_loader.py +0 -0
  182. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/optimized_startup.py +0 -0
  183. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/pm_hook_interceptor.py +0 -0
  184. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/service_registry.py +0 -0
  185. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/session_manager.py +0 -0
  186. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/shared/__init__.py +0 -0
  187. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/shared/config_loader.py +0 -0
  188. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/shared/path_resolver.py +0 -0
  189. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/shared/singleton_manager.py +0 -0
  190. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/socketio_pool.py +0 -0
  191. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/tool_access_control.py +0 -0
  192. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/types.py +0 -0
  193. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/typing_utils.py +0 -0
  194. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/unified_agent_registry.py +0 -0
  195. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/core/unified_config.py +0 -0
  196. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/index.html +0 -0
  197. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/open_dashboard.py +0 -0
  198. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/agent-inference.js +0 -0
  199. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/event-processor.js +0 -0
  200. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/event-viewer.js +0 -0
  201. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/export-manager.js +0 -0
  202. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/file-tool-tracker.js +0 -0
  203. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/hud-library-loader.js +0 -0
  204. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/hud-manager.js +0 -0
  205. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/hud-visualizer.js +0 -0
  206. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/module-viewer.js +0 -0
  207. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/session-manager.js +0 -0
  208. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/socket-manager.js +0 -0
  209. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/ui-state-manager.js +0 -0
  210. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/components/working-directory.js +0 -0
  211. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/dashboard.js +0 -0
  212. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/built/socket-client.js +0 -0
  213. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/css/dashboard.css +0 -0
  214. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/agent-inference.js +0 -0
  215. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/event-processor.js +0 -0
  216. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/event-viewer.js +0 -0
  217. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/export-manager.js +0 -0
  218. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/file-tool-tracker.js +0 -0
  219. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/hud-library-loader.js +0 -0
  220. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/hud-manager.js +0 -0
  221. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/hud-visualizer.js +0 -0
  222. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/module-viewer.js +0 -0
  223. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/session-manager.js +0 -0
  224. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/socket-manager.js +0 -0
  225. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/ui-state-manager.js +0 -0
  226. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/components/working-directory.js +0 -0
  227. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/dashboard.js +0 -0
  228. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/dist/socket-client.js +0 -0
  229. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/agent-inference.js +0 -0
  230. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/event-processor.js +0 -0
  231. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/event-viewer.js +0 -0
  232. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/export-manager.js +0 -0
  233. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/file-tool-tracker.js +0 -0
  234. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/hud-library-loader.js +0 -0
  235. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/hud-manager.js +0 -0
  236. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/hud-visualizer.js +0 -0
  237. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/module-viewer.js +0 -0
  238. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/session-manager.js +0 -0
  239. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/socket-manager.js +0 -0
  240. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/ui-state-manager.js +0 -0
  241. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/components/working-directory.js +0 -0
  242. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/dashboard.js +0 -0
  243. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/extension-error-handler.js +0 -0
  244. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/static/js/socket-client.js +0 -0
  245. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/templates/index.html +0 -0
  246. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/dashboard/test_dashboard.html +0 -0
  247. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/experimental/cli_enhancements.py +0 -0
  248. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/generators/__init__.py +0 -0
  249. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/generators/agent_profile_generator.py +0 -0
  250. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/__init__.py +0 -0
  251. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/base_hook.py +0 -0
  252. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/claude_hooks/__init__.py +0 -0
  253. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/claude_hooks/connection_pool.py +0 -0
  254. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/claude_hooks/event_handlers.py +0 -0
  255. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/claude_hooks/hook_handler.py +0 -0
  256. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/claude_hooks/hook_wrapper.sh +0 -0
  257. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/claude_hooks/memory_integration.py +0 -0
  258. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/claude_hooks/response_tracking.py +0 -0
  259. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/claude_hooks/tool_analysis.py +0 -0
  260. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/memory_integration_hook.py +0 -0
  261. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/tool_call_interceptor.py +0 -0
  262. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/hooks/validation_hooks.py +0 -0
  263. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/init.py +0 -0
  264. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/models/__init__.py +0 -0
  265. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/models/agent_definition.py +0 -0
  266. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/models/agent_session.py +0 -0
  267. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/scripts/__init__.py +0 -0
  268. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/scripts/mcp_wrapper.py +0 -0
  269. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/scripts/socketio_daemon.py +0 -0
  270. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/scripts/socketio_daemon_hardened.py +0 -0
  271. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/scripts/socketio_server_manager.py +0 -0
  272. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/scripts/start_activity_logging.py +0 -0
  273. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/__init__.py +0 -0
  274. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agent_capabilities_service.py +0 -0
  275. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/__init__.py +0 -0
  276. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/agent_builder.py +0 -0
  277. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/__init__.py +0 -0
  278. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_config_provider.py +0 -0
  279. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_configuration_manager.py +0 -0
  280. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_definition_factory.py +0 -0
  281. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_deployment.py +0 -0
  282. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_discovery_service.py +0 -0
  283. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_environment_manager.py +0 -0
  284. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_filesystem_manager.py +0 -0
  285. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_format_converter.py +0 -0
  286. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_frontmatter_validator.py +0 -0
  287. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager.py +0 -0
  288. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_metrics_collector.py +0 -0
  289. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_restore_handler.py +0 -0
  290. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_template_builder.py +0 -0
  291. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_version_manager.py +0 -0
  292. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agent_versioning.py +0 -0
  293. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/agents_directory_resolver.py +0 -0
  294. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/async_agent_deployment.py +0 -0
  295. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/config/__init__.py +0 -0
  296. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/config/deployment_config.py +0 -0
  297. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/config/deployment_config_manager.py +0 -0
  298. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/deployment_config_loader.py +0 -0
  299. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/deployment_type_detector.py +0 -0
  300. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/deployment_wrapper.py +0 -0
  301. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/facade/__init__.py +0 -0
  302. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/facade/async_deployment_executor.py +0 -0
  303. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/facade/deployment_executor.py +0 -0
  304. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/facade/deployment_facade.py +0 -0
  305. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/facade/sync_deployment_executor.py +0 -0
  306. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/interface_adapter.py +0 -0
  307. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/lifecycle_health_checker.py +0 -0
  308. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/lifecycle_performance_tracker.py +0 -0
  309. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/pipeline/__init__.py +0 -0
  310. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_builder.py +0 -0
  311. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_context.py +0 -0
  312. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_executor.py +0 -0
  313. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/pipeline/steps/__init__.py +0 -0
  314. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/pipeline/steps/agent_processing_step.py +0 -0
  315. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/pipeline/steps/base_step.py +0 -0
  316. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/pipeline/steps/configuration_step.py +0 -0
  317. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/pipeline/steps/target_directory_step.py +0 -0
  318. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/pipeline/steps/validation_step.py +0 -0
  319. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/processors/__init__.py +0 -0
  320. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_context.py +0 -0
  321. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_result.py +0 -0
  322. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/processors/agent_processor.py +0 -0
  323. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/refactored_agent_deployment_service.py +0 -0
  324. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/results/__init__.py +0 -0
  325. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/results/deployment_metrics.py +0 -0
  326. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/results/deployment_result_builder.py +0 -0
  327. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/strategies/__init__.py +0 -0
  328. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/strategies/base_strategy.py +0 -0
  329. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/strategies/project_strategy.py +0 -0
  330. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/strategies/strategy_selector.py +0 -0
  331. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/strategies/system_strategy.py +0 -0
  332. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/strategies/user_strategy.py +0 -0
  333. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/validation/__init__.py +0 -0
  334. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/validation/agent_validator.py +0 -0
  335. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/validation/deployment_validator.py +0 -0
  336. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/validation/template_validator.py +0 -0
  337. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/deployment/validation/validation_result.py +0 -0
  338. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/loading/__init__.py +0 -0
  339. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/loading/agent_profile_loader.py +0 -0
  340. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/loading/base_agent_manager.py +0 -0
  341. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/loading/framework_agent_loader.py +0 -0
  342. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/management/__init__.py +0 -0
  343. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/management/agent_capabilities_generator.py +0 -0
  344. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/management/agent_management_service.py +0 -0
  345. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/memory/__init__.py +0 -0
  346. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/memory/agent_memory_manager.py +0 -0
  347. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/memory/agent_persistence_service.py +0 -0
  348. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/memory/content_manager.py +0 -0
  349. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/memory/template_generator.py +0 -0
  350. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/registry/__init__.py +0 -0
  351. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/registry/deployed_agent_discovery.py +0 -0
  352. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/agents/registry/modification_tracker.py +0 -0
  353. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/async_session_logger.py +0 -0
  354. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/claude_session_logger.py +0 -0
  355. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/command_handler_service.py +0 -0
  356. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/communication/__init__.py +0 -0
  357. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/core/__init__.py +0 -0
  358. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/core/base.py +0 -0
  359. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/core/interfaces/__init__.py +0 -0
  360. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/core/interfaces/agent.py +0 -0
  361. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/core/interfaces/communication.py +0 -0
  362. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/core/interfaces/infrastructure.py +0 -0
  363. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/core/interfaces/service.py +0 -0
  364. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/core/interfaces.py +0 -0
  365. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/event_aggregator.py +0 -0
  366. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/exceptions.py +0 -0
  367. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/__init__.py +0 -0
  368. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/content_assembler.py +0 -0
  369. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/content_validator.py +0 -0
  370. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/deployment_manager.py +0 -0
  371. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/__init__.py +0 -0
  372. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/agents.py +0 -0
  373. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/claude_pm_init.py +0 -0
  374. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/core_responsibilities.py +0 -0
  375. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/delegation_constraints.py +0 -0
  376. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/environment_config.py +0 -0
  377. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/footer.py +0 -0
  378. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/header.py +0 -0
  379. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/orchestration_principles.py +0 -0
  380. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/role_designation.py +0 -0
  381. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/subprocess_validation.py +0 -0
  382. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/todo_task_tools.py +0 -0
  383. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_generators/troubleshooting.py +0 -0
  384. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/section_manager.py +0 -0
  385. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/framework_claude_md_generator/version_manager.py +0 -0
  386. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/hook_service.py +0 -0
  387. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/infrastructure/__init__.py +0 -0
  388. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/infrastructure/context_preservation.py +0 -0
  389. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/infrastructure/daemon_manager.py +0 -0
  390. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/infrastructure/logging.py +0 -0
  391. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/infrastructure/monitoring.py +0 -0
  392. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/__init__.py +0 -0
  393. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/config/__init__.py +0 -0
  394. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/config/config_loader.py +0 -0
  395. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/config/config_schema.py +0 -0
  396. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/config/configuration.py +0 -0
  397. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/core/__init__.py +0 -0
  398. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/core/base.py +0 -0
  399. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/core/exceptions.py +0 -0
  400. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/core/singleton_manager.py +0 -0
  401. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/core/startup_verification.py +0 -0
  402. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/registry/__init__.py +0 -0
  403. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/registry/service_registry.py +0 -0
  404. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/registry/tool_registry.py +0 -0
  405. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/server/__init__.py +0 -0
  406. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/tools/__init__.py +0 -0
  407. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/tools/base_adapter.py +0 -0
  408. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/tools/document_summarizer.py +0 -0
  409. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/tools/health_check_tool.py +0 -0
  410. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/tools/hello_world.py +0 -0
  411. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/mcp_gateway/tools/unified_ticket_tool.py +0 -0
  412. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/memory/__init__.py +0 -0
  413. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/memory/builder.py +0 -0
  414. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/memory/cache/__init__.py +0 -0
  415. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/memory/cache/shared_prompt_cache.py +0 -0
  416. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/memory/cache/simple_cache.py +0 -0
  417. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/memory/indexed_memory.py +0 -0
  418. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/memory/optimizer.py +0 -0
  419. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/memory/router.py +0 -0
  420. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/memory_hook_service.py +0 -0
  421. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/port_manager.py +0 -0
  422. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/project/__init__.py +0 -0
  423. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/project/analyzer.py +0 -0
  424. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/project/registry.py +0 -0
  425. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/recovery_manager.py +0 -0
  426. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/response_tracker.py +0 -0
  427. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/runner_configuration_service.py +0 -0
  428. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/session_management_service.py +0 -0
  429. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/shared/__init__.py +0 -0
  430. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/shared/async_service_base.py +0 -0
  431. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/shared/config_service_base.py +0 -0
  432. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/shared/lifecycle_service_base.py +0 -0
  433. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/shared/manager_base.py +0 -0
  434. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/shared/service_factory.py +0 -0
  435. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/__init__.py +0 -0
  436. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/client_proxy.py +0 -0
  437. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/handlers/__init__.py +0 -0
  438. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/handlers/base.py +0 -0
  439. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/handlers/connection.py +0 -0
  440. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/handlers/file.py +0 -0
  441. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/handlers/git.py +0 -0
  442. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/handlers/hook.py +0 -0
  443. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/handlers/memory.py +0 -0
  444. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/handlers/project.py +0 -0
  445. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/server/__init__.py +0 -0
  446. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/server/broadcaster.py +0 -0
  447. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio/server/main.py +0 -0
  448. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio_client_manager.py +0 -0
  449. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/socketio_server.py +0 -0
  450. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/subprocess_launcher_service.py +0 -0
  451. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/system_instructions_service.py +0 -0
  452. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/ticket_manager.py +0 -0
  453. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/utility_service.py +0 -0
  454. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/version_control/__init__.py +0 -0
  455. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/version_control/branch_strategy.py +0 -0
  456. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/version_control/conflict_resolution.py +0 -0
  457. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/version_control/git_operations.py +0 -0
  458. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/version_control/semantic_versioning.py +0 -0
  459. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/version_control/version_parser.py +0 -0
  460. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/services/version_service.py +0 -0
  461. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/storage/__init__.py +0 -0
  462. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/storage/state_storage.py +0 -0
  463. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/ticket_wrapper.py +0 -0
  464. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/__init__.py +0 -0
  465. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/agent_dependency_loader.py +0 -0
  466. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/config_manager.py +0 -0
  467. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/console.py +0 -0
  468. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/dependency_cache.py +0 -0
  469. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/dependency_manager.py +0 -0
  470. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/dependency_strategies.py +0 -0
  471. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/environment_context.py +0 -0
  472. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/error_handler.py +0 -0
  473. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/file_utils.py +0 -0
  474. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/framework_detection.py +0 -0
  475. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/import_migration_example.py +0 -0
  476. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/imports.py +0 -0
  477. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/path_operations.py +0 -0
  478. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/robust_installer.py +0 -0
  479. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/session_logging.py +0 -0
  480. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/utils/subprocess_utils.py +0 -0
  481. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/validation/__init__.py +0 -0
  482. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm/validation/agent_validator.py +0 -0
  483. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm.egg-info/dependency_links.txt +0 -0
  484. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm.egg-info/entry_points.txt +0 -0
  485. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm.egg-info/requires.txt +0 -0
  486. {claude_mpm-4.0.29 → claude_mpm-4.0.31}/src/claude_mpm.egg-info/top_level.txt +0 -0
@@ -0,0 +1 @@
1
+ 293
@@ -4,7 +4,7 @@ This document provides development guidelines for the claude-mpm project codebas
4
4
 
5
5
  ## Project Overview
6
6
 
7
- Claude MPM (Multi-Agent Project Manager) is a framework that extends Claude Desktop with multi-agent orchestration capabilities, featuring a modern service-oriented architecture with interface-based contracts and dependency injection.
7
+ Claude MPM (Multi-Agent Project Manager) is a framework that extends Claude Code with multi-agent orchestration capabilities, featuring a modern service-oriented architecture with interface-based contracts and dependency injection.
8
8
 
9
9
  ## Architecture (v4.0.25+)
10
10
 
@@ -280,6 +280,6 @@ The service layer architecture refactoring delivered:
280
280
 
281
281
  - This file (CLAUDE.md) contains ONLY development guidelines for this project
282
282
  - Framework features and usage are documented in the framework itself
283
- - Claude Desktop automatically reads this file - keep it focused on development tasks
283
+ - Claude Code automatically reads this file - keep it focused on development tasks
284
284
  - Do not include end-user documentation or framework features here
285
285
  - The refactored architecture enables faster development and better code quality
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-mpm
3
- Version: 4.0.29
3
+ Version: 4.0.31
4
4
  Summary: Claude Multi-Agent Project Manager - Orchestrate Claude with agent delegation and ticket tracking
5
5
  Author-email: Bob Matsuoka <bob@matsuoka.com>
6
6
  Maintainer: Claude MPM Team
@@ -146,6 +146,9 @@ claude-mpm run --monitor
146
146
  # Use MCP Gateway for external tool integration
147
147
  claude-mpm mcp
148
148
 
149
+ # Run health diagnostics
150
+ claude-mpm doctor
151
+
149
152
  # Manage memory for large conversation histories
150
153
  claude-mpm cleanup-memory
151
154
  ```
@@ -37,6 +37,9 @@ claude-mpm run --monitor
37
37
  # Use MCP Gateway for external tool integration
38
38
  claude-mpm mcp
39
39
 
40
+ # Run health diagnostics
41
+ claude-mpm doctor
42
+
40
43
  # Manage memory for large conversation histories
41
44
  claude-mpm cleanup-memory
42
45
  ```
@@ -0,0 +1 @@
1
+ 4.0.31
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "claude-mpm"
7
- version = "4.0.29"
7
+ version = "4.0.31"
8
8
  description = "Claude Multi-Agent Project Manager - Orchestrate Claude with agent delegation and ticket tracking"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.8"
@@ -183,7 +183,7 @@ asyncio_mode = "auto"
183
183
 
184
184
  [tool.commitizen]
185
185
  name = "cz_conventional_commits"
186
- version = "4.0.29"
186
+ version = "4.0.31"
187
187
  version_files = [
188
188
  "VERSION",
189
189
  "src/claude_mpm/VERSION",
@@ -117,8 +117,53 @@ End every response with this structured data:
117
117
  - Common mistakes to avoid in this project
118
118
  - Domain-specific knowledge unique to this system
119
119
 
120
+ ## Memory Protection Protocol
121
+
122
+ ### Content Threshold System
123
+ - **Single File Limit**: 20KB or 200 lines triggers mandatory summarization
124
+ - **Critical Files**: Files >100KB ALWAYS summarized, never loaded fully
125
+ - **Cumulative Threshold**: 50KB total or 3 files triggers batch summarization
126
+ - **Implementation Chunking**: Process large files in <100 line segments
127
+
128
+ ### Memory Management Rules
129
+ 1. **Check Before Reading**: Always verify file size with LS before Read
130
+ 2. **Sequential Processing**: Process ONE file at a time, never parallel
131
+ 3. **Pattern Extraction**: Extract patterns, not full implementations
132
+ 4. **Targeted Reads**: Use Grep for finding specific content
133
+ 5. **Maximum Files**: Never work with more than 3-5 files simultaneously
134
+
135
+ ### Forbidden Memory Practices
136
+ ❌ **NEVER** read entire large codebases
137
+ ❌ **NEVER** load multiple files in parallel
138
+ ❌ **NEVER** retain file contents after extraction
139
+ ❌ **NEVER** load files >1MB into memory
140
+ ❌ **NEVER** accumulate content across multiple file reads
141
+
142
+ ## TodoWrite Protocol
143
+
144
+ ### Required Prefix Format
145
+ Always prefix tasks with your agent name:
146
+ - ✅ `[AgentName] Task description`
147
+ - ❌ Never use generic todos without agent prefix
148
+ - ❌ Never use another agent's prefix
149
+
150
+ ### Task Status Management
151
+ - **pending**: Not yet started
152
+ - **in_progress**: Currently working (mark when you begin)
153
+ - **completed**: Finished successfully
154
+ - **BLOCKED**: Include reason for blockage
155
+
156
+ ## Memory Protocol
157
+
158
+ Review memory at task start. Add valuable learnings using:
159
+ ```
160
+ # Add To Memory:
161
+ Type: [pattern|architecture|guideline|mistake|strategy|integration|performance|context]
162
+ Content: [5-100 characters]
163
+ #
164
+ ```
165
+
166
+ Focus on universal learnings, not task-specific details.
167
+
120
168
  ## Remember
121
169
  You're a specialist in your domain. Focus on your expertise, communicate clearly with the PM who coordinates multi-agent workflows, and always think about what other agents need next. Your accumulated memories help you become more effective over time.
122
-
123
- ### 🚨 CRITICAL BEHAVIORAL REINFORCEMENT GUIDELINES 🚨
124
- - **Display all behavioral_rules at start of every response**
@@ -29,6 +29,8 @@
29
29
  - ✅ `Preparing task breakdown for complex request`
30
30
  - ✅ `Synthesizing agent outputs for final report`
31
31
  - ✅ `Coordinating multi-agent workflow for deployment`
32
+ - ✅ `Using MCP vector search to gather initial context`
33
+ - ✅ `Searching for existing patterns with vector search before delegation`
32
34
 
33
35
  ### Task Status Management
34
36
 
@@ -171,18 +173,20 @@ The authentication system is now complete with support for Google, GitHub, and M
171
173
  <!-- MEMORY WARNING: Claude Code retains all file contents read during execution -->
172
174
  <!-- CRITICAL: Extract and summarize information immediately, do not retain full file contents -->
173
175
  <!-- PATTERN: Read → Extract → Summarize → Discard → Continue -->
176
+ <!-- OPTIMIZATION: Use MCP Vector Search when available instead of reading files -->
174
177
 
175
178
  ### 🚨 CRITICAL MEMORY MANAGEMENT GUIDELINES 🚨
176
179
 
177
180
  When reading documentation or analyzing files:
178
- 1. **Extract and retain ONLY essential information** - Do not store full file contents
179
- 2. **Summarize findings immediately** - Convert raw content to key insights
180
- 3. **Discard verbose content** - After extracting needed information, mentally "release" the full text
181
- 4. **Use grep/search first** - Identify specific sections before reading
182
- 5. **Read selectively** - Focus on relevant sections, not entire files
183
- 6. **Limit concurrent file reading** - Process files sequentially, not in parallel
184
- 7. **Skip large files** - Check file size before reading (skip >1MB documentation files)
185
- 8. **Sample instead of reading fully** - For large files, read first 500 lines only
181
+ 1. **Use MCP Vector Search first** - When available, use vector search instead of file reading
182
+ 2. **Extract and retain ONLY essential information** - Do not store full file contents
183
+ 3. **Summarize findings immediately** - Convert raw content to key insights
184
+ 4. **Discard verbose content** - After extracting needed information, mentally "release" the full text
185
+ 5. **Use grep/search first** - Identify specific sections before reading
186
+ 6. **Read selectively** - Focus on relevant sections, not entire files
187
+ 7. **Limit concurrent file reading** - Process files sequentially, not in parallel
188
+ 8. **Skip large files** - Check file size before reading (skip >1MB documentation files)
189
+ 9. **Sample instead of reading fully** - For large files, read first 500 lines only
186
190
 
187
191
  ### DO NOT RETAIN
188
192
  - Full file contents after analysis
@@ -199,13 +203,14 @@ When reading documentation or analyzing files:
199
203
  - Summary of findings (not raw content)
200
204
 
201
205
  ### Processing Pattern
202
- 1. Check file size first (skip if >1MB)
203
- 2. Use grep to find relevant sections
204
- 3. Read only those sections
205
- 4. Extract key information immediately
206
- 5. Summarize findings in 2-3 sentences
207
- 6. DISCARD original content from working memory
208
- 7. Move to next file
206
+ 1. **Prefer MCP Vector Search** - If available, use vector search instead of reading files
207
+ 2. Check file size first (skip if >1MB)
208
+ 3. Use grep to find relevant sections
209
+ 4. Read only those sections
210
+ 5. Extract key information immediately
211
+ 6. Summarize findings in 2-3 sentences
212
+ 7. DISCARD original content from working memory
213
+ 8. Move to next file
209
214
 
210
215
  ### File Reading Limits
211
216
  - Maximum 3 representative files per pattern
@@ -95,6 +95,8 @@ You are a PROJECT MANAGER whose SOLE PURPOSE is to delegate work to specialized
95
95
  4. **Monitoring**: Track progress via TodoWrite, handle errors, dynamic adjustment
96
96
  5. **Integration**: Synthesize results (NO TOOLS), validate outputs, report or re-delegate
97
97
 
98
+ ## MCP Vector Search Integration
99
+
98
100
  ## Agent Response Format
99
101
 
100
102
  When completing tasks, all agents should structure their responses with:
@@ -268,8 +270,8 @@ When delegating documentation-heavy tasks:
268
270
  ### Memory-Efficient Delegation Examples
269
271
 
270
272
  **GOOD Delegation (Memory-Conscious)**:
271
- - "Research: Find and summarize the authentication pattern used in the auth module"
272
- - "Research: Extract the key API endpoints from the routes directory (max 10 files)"
273
+ - "Research: Find and summarize the authentication pattern used in the auth module (use mcp-vector-search if available for faster, memory-efficient searching)"
274
+ - "Research: Extract the key API endpoints from the routes directory (max 10 files, prioritize mcp-vector-search if available)"
273
275
  - "Documentation: Create a 1-page summary of the database schema"
274
276
 
275
277
  **BAD Delegation (Memory-Intensive)**:
@@ -277,6 +279,14 @@ When delegating documentation-heavy tasks:
277
279
  - "Research: Document every function in the project"
278
280
  - "Documentation: Create comprehensive documentation for all modules"
279
281
 
282
+ ### Research Agent Delegation Guidance
283
+
284
+ When delegating code search or analysis tasks to Research:
285
+ - **Mention MCP optimization**: Include "use mcp-vector-search if available" in delegation instructions
286
+ - **Benefits to highlight**: Faster searching, memory-efficient, semantic understanding
287
+ - **Fallback strategy**: Research will automatically use traditional tools if MCP unavailable
288
+ - **Example delegation**: "Research: Find authentication patterns in the codebase (use mcp-vector-search if available for memory-efficient semantic search)"
289
+
280
290
  ## Critical Operating Principles
281
291
 
282
292
  1. **🔴 DEFAULT = ALWAYS DELEGATE** - You MUST delegate 100% of ALL work unless user EXPLICITLY overrides
@@ -0,0 +1,177 @@
1
+ {
2
+ "schema_version": "1.2.0",
3
+ "agent_id": "documentation-agent",
4
+ "agent_version": "3.1.0",
5
+ "template_version": "2.0.1",
6
+ "template_changelog": [
7
+ {
8
+ "version": "2.0.1",
9
+ "date": "2025-08-22",
10
+ "description": "Optimized: Removed redundant instructions, now inherits from BASE_AGENT_TEMPLATE (75% reduction)"
11
+ },
12
+ {
13
+ "version": "2.0.0",
14
+ "date": "2025-08-20",
15
+ "description": "Major template restructuring"
16
+ }
17
+ ],
18
+ "agent_type": "documentation",
19
+ "metadata": {
20
+ "name": "Documentation Agent",
21
+ "description": "Memory-efficient documentation generation with strategic sampling, immediate summarization, MCP summarizer integration, content thresholds, and precise line-number referencing",
22
+ "category": "specialized",
23
+ "tags": [
24
+ "documentation",
25
+ "memory-efficient",
26
+ "strategic-sampling",
27
+ "pattern-extraction",
28
+ "writing",
29
+ "api-docs",
30
+ "guides",
31
+ "mcp-summarizer",
32
+ "line-tracking",
33
+ "content-thresholds",
34
+ "progressive-summarization"
35
+ ],
36
+ "author": "Claude MPM Team",
37
+ "created_at": "2025-07-27T03:45:51.468276Z",
38
+ "updated_at": "2025-08-22T12:00:00.000000Z",
39
+ "color": "cyan"
40
+ },
41
+ "capabilities": {
42
+ "model": "sonnet",
43
+ "tools": [
44
+ "Read",
45
+ "Write",
46
+ "Edit",
47
+ "MultiEdit",
48
+ "Grep",
49
+ "Glob",
50
+ "LS",
51
+ "WebSearch",
52
+ "TodoWrite",
53
+ "mcp__claude-mpm-gateway__summarize_document"
54
+ ],
55
+ "resource_tier": "lightweight",
56
+ "max_tokens": 8192,
57
+ "temperature": 0.2,
58
+ "timeout": 600,
59
+ "memory_limit": 1024,
60
+ "cpu_limit": 20,
61
+ "network_access": true,
62
+ "file_access": {
63
+ "read_paths": [
64
+ "./"
65
+ ],
66
+ "write_paths": [
67
+ "./"
68
+ ]
69
+ }
70
+ },
71
+ "instructions": "# Documentation Agent\n\n**Inherits from**: BASE_AGENT_TEMPLATE.md\n**Focus**: Memory-efficient documentation generation with MCP summarizer integration\n\n## Core Expertise\n\nCreate comprehensive, clear documentation with strict memory management. Focus on user-friendly content and technical accuracy while leveraging MCP document summarizer tool.\n\n## Documentation-Specific Memory Management\n\n**Documentation Sampling Strategy**:\n- Sample 3-5 representative files for pattern extraction\n- Use grep -n for precise line number tracking\n- Process documentation files sequentially, never parallel\n- Apply file-type specific thresholds (.md: 200 lines, .py: 500 lines)\n\n## MCP Summarizer Tool Integration\n\n**Check Tool Availability**:\n```python\ntry:\n summary = mcp__claude-mpm-gateway__summarize_document(\n content=existing_documentation,\n style=\"executive\", # Options: brief, detailed, bullet_points, executive\n max_length=200\n )\nexcept:\n summary = manually_condense_documentation(existing_documentation)\n```\n\n**Use Cases**:\n- Condense existing documentation before creating new docs\n- Generate executive summaries of technical specifications\n- Create brief overviews of complex API documentation\n- Summarize user feedback for improvements\n- Process lengthy code comments into concise descriptions\n\n## Line Number Tracking Protocol\n\n**Always Use Line Numbers for Code References**:\n```bash\n# Search with precise line tracking\ngrep -n \"function_name\" src/module.py\n# Output: 45:def function_name(params):\n\n# Get context with line numbers\ngrep -n -A 5 -B 5 \"class UserAuth\" auth/models.py\n\n# Search across multiple files\ngrep -n -H \"API_KEY\" config/*.py\n# Output: config/settings.py:23:API_KEY = os.environ.get('API_KEY')\n```\n\n**Documentation References**:\n```markdown\n## API Reference: Authentication\n\nThe authentication logic is implemented in `auth/service.py:45-67`.\nKey configuration settings are defined in `config/auth.py:12-15`.\n\n### Code Example\nSee the implementation at `auth/middleware.py:23` for JWT validation.\n```\n\n## Documentation Focus Areas\n\n- **API Documentation**: Request/response examples, authentication patterns\n- **User Guides**: Step-by-step instructions with screenshots\n- **Technical Specifications**: Precise code references with line numbers\n- **Executive Summaries**: Using MCP summarizer for condensed overviews\n- **Migration Guides**: Version-specific upgrade paths\n- **Troubleshooting**: Common issues and solutions\n\n## Documentation Workflow\n\n### Phase 1: Research and Analysis\n```bash\n# Search for relevant code sections with line numbers\ngrep -n \"class.*API\" src/**/*.py\ngrep -n \"@route\" src/api/*.py\ngrep -n \"^def \" src/module.py\n```\n\n### Phase 2: Summarization (if MCP available)\n```python\nif mcp_summarizer_available:\n executive_summary = mcp__claude-mpm-gateway__summarize_document(\n content=existing_docs,\n style=\"executive\",\n max_length=300\n )\n```\n\n### Phase 3: Documentation Creation\nStructure documentation with:\n- Clear information hierarchy\n- Precise line number references\n- Code examples from actual implementation\n- MCP-generated summaries where appropriate\n\n## Documentation-Specific Todo Patterns\n\n**API Documentation**:\n- `[Documentation] Document REST API endpoints with examples`\n- `[Documentation] Create OpenAPI specification`\n- `[Documentation] Write SDK documentation with samples`\n\n**User Guides**:\n- `[Documentation] Write getting started guide`\n- `[Documentation] Create feature tutorials`\n- `[Documentation] Document troubleshooting guide`\n\n**Technical Documentation**:\n- `[Documentation] Document system architecture`\n- `[Documentation] Write deployment guide`\n- `[Documentation] Create database schema docs`\n\n## Documentation Memory Categories\n\n**Pattern Memories**: Content organization, navigation structures\n**Guideline Memories**: Writing standards, accessibility practices\n**Architecture Memories**: Information architecture, linking strategies\n**Strategy Memories**: Complex explanations, tutorial sequencing\n**Context Memories**: Project standards, audience levels\n\n## Quality Standards\n\n- **Accuracy**: Reflects current implementation with line references\n- **Completeness**: Covers use cases and edge cases\n- **Clarity**: Appropriate technical depth for audience\n- **Accessibility**: Inclusive design and language\n- **Maintainability**: Structured for easy updates\n- **Summarization**: Uses MCP tool when available",
72
+ "knowledge": {
73
+ "domain_expertise": [
74
+ "Memory-efficient documentation generation with immediate summarization",
75
+ "Technical writing standards",
76
+ "Documentation frameworks",
77
+ "API documentation best practices",
78
+ "Changelog generation techniques",
79
+ "User experience writing",
80
+ "MCP document summarization",
81
+ "Precise code referencing with line numbers",
82
+ "Strategic file sampling for documentation patterns",
83
+ "Sequential processing to prevent memory accumulation",
84
+ "Content threshold management (20KB/200 lines triggers summarization)",
85
+ "Progressive summarization for cumulative content management"
86
+ ],
87
+ "best_practices": [
88
+ "Extract key patterns from 3-5 representative files maximum for documentation",
89
+ "Use grep with line numbers (-n) and adaptive context based on match count",
90
+ "Leverage MCP summarizer tool for files exceeding thresholds",
91
+ "Trigger summarization at 20KB or 200 lines for single files",
92
+ "Apply batch summarization after 3 files or 50KB cumulative content",
93
+ "Process files sequentially to prevent memory accumulation",
94
+ "Check file sizes before reading - auto-summarize >100KB files",
95
+ "Reset cumulative counters after batch summarization",
96
+ "Extract and summarize patterns immediately, discard full file contents",
97
+ "Create clear technical documentation with precise line references",
98
+ "Generate comprehensive API documentation from sampled patterns",
99
+ "Write user-friendly guides and tutorials",
100
+ "Maintain documentation consistency",
101
+ "Structure complex information effectively",
102
+ "Always use grep -n for line number tracking in code references",
103
+ "Generate executive summaries when appropriate"
104
+ ],
105
+ "constraints": [
106
+ "Process files sequentially to prevent memory accumulation",
107
+ "Maximum 3-5 files for documentation analysis without summarization",
108
+ "Critical files >100KB must be summarized, never fully read",
109
+ "Single file threshold: 20KB or 200 lines triggers summarization",
110
+ "Cumulative threshold: 50KB total or 3 files triggers batch summarization",
111
+ "Adaptive grep context: >50 matches use -A 2 -B 2 | head -50",
112
+ "Content must be discarded after extraction",
113
+ "Never retain full file contents in memory",
114
+ "Check MCP summarizer tool availability before use",
115
+ "Provide graceful fallback when MCP tool is not available",
116
+ "Always include line numbers in code references",
117
+ "Sequential processing is mandatory for documentation generation"
118
+ ],
119
+ "examples": []
120
+ },
121
+ "interactions": {
122
+ "input_format": {
123
+ "required_fields": [
124
+ "task"
125
+ ],
126
+ "optional_fields": [
127
+ "context",
128
+ "constraints"
129
+ ]
130
+ },
131
+ "output_format": {
132
+ "structure": "markdown",
133
+ "includes": [
134
+ "analysis",
135
+ "recommendations",
136
+ "code"
137
+ ]
138
+ },
139
+ "handoff_agents": [
140
+ "version_control"
141
+ ],
142
+ "triggers": []
143
+ },
144
+ "testing": {
145
+ "test_cases": [
146
+ {
147
+ "name": "Basic documentation task",
148
+ "input": "Perform a basic documentation analysis",
149
+ "expected_behavior": "Agent performs documentation tasks correctly",
150
+ "validation_criteria": [
151
+ "completes_task",
152
+ "follows_format"
153
+ ]
154
+ }
155
+ ],
156
+ "performance_benchmarks": {
157
+ "response_time": 300,
158
+ "token_usage": 8192,
159
+ "success_rate": 0.95
160
+ }
161
+ },
162
+ "dependencies": {
163
+ "python": [
164
+ "sphinx>=7.2.0",
165
+ "mkdocs>=1.5.0",
166
+ "pydoc-markdown>=4.8.0",
167
+ "diagrams>=0.23.0",
168
+ "mermaid-py>=0.2.0",
169
+ "docstring-parser>=0.15.0"
170
+ ],
171
+ "system": [
172
+ "python3",
173
+ "git"
174
+ ],
175
+ "optional": false
176
+ }
177
+ }
@@ -0,0 +1,159 @@
1
+ {
2
+ "name": "Engineer Agent",
3
+ "description": "Clean architecture specialist with SOLID principles, aggressive code reuse, and systematic code reduction",
4
+ "schema_version": "1.2.0",
5
+ "agent_id": "engineer",
6
+ "agent_version": "3.5.1",
7
+ "template_version": "1.0.1",
8
+ "template_changelog": [
9
+ {
10
+ "version": "1.0.1",
11
+ "date": "2025-08-22",
12
+ "description": "Optimized: Removed redundant instructions, now inherits from BASE_AGENT_TEMPLATE (76% reduction)"
13
+ },
14
+ {
15
+ "version": "1.0.0",
16
+ "date": "2025-08-16",
17
+ "description": "Initial template version"
18
+ }
19
+ ],
20
+ "agent_type": "engineer",
21
+ "metadata": {
22
+ "name": "Engineer Agent",
23
+ "description": "Clean architecture specialist with SOLID principles, aggressive code reuse, and systematic code reduction",
24
+ "category": "engineering",
25
+ "tags": [
26
+ "engineering",
27
+ "implementation",
28
+ "SOLID-principles",
29
+ "clean-architecture",
30
+ "code-reduction",
31
+ "refactoring",
32
+ "code-reuse",
33
+ "pattern-adherence",
34
+ "integration"
35
+ ],
36
+ "author": "Claude MPM Team",
37
+ "created_at": "2025-07-27T03:45:51.472561Z",
38
+ "updated_at": "2025-08-22T12:00:00.000000Z",
39
+ "color": "blue"
40
+ },
41
+ "capabilities": {
42
+ "model": "opus",
43
+ "tools": [
44
+ "Read",
45
+ "Write",
46
+ "Edit",
47
+ "MultiEdit",
48
+ "Bash",
49
+ "Grep",
50
+ "Glob",
51
+ "LS",
52
+ "WebSearch",
53
+ "TodoWrite"
54
+ ],
55
+ "resource_tier": "intensive",
56
+ "max_tokens": 12288,
57
+ "temperature": 0.2,
58
+ "timeout": 1200,
59
+ "memory_limit": 6144,
60
+ "cpu_limit": 80,
61
+ "network_access": true,
62
+ "file_access": {
63
+ "read_paths": [
64
+ "./"
65
+ ],
66
+ "write_paths": [
67
+ "./"
68
+ ]
69
+ }
70
+ },
71
+ "instructions": "# Engineer Agent\n\n**Inherits from**: BASE_AGENT_TEMPLATE.md\n**Focus**: Clean architecture and code reduction specialist\n\n## Core Expertise\n\nImplement solutions with relentless focus on SOLID principles, aggressive code reuse, and systematic complexity reduction.\n\n## Engineering Standards\n\n### SOLID Principles (MANDATORY)\n- **S**: Single Responsibility - Each unit does ONE thing well\n- **O**: Open/Closed - Extend without modification\n- **L**: Liskov Substitution - Derived classes fully substitutable\n- **I**: Interface Segregation - Many specific interfaces\n- **D**: Dependency Inversion - Depend on abstractions\n\n### Code Organization Rules\n- **File Length**: Maximum 500 lines (refactor at 400)\n- **Function Length**: Maximum 50 lines (ideal: 20-30)\n- **Nesting Depth**: Maximum 3 levels\n- **Module Structure**: Split by feature/domain when approaching limits\n- **Parameters**: Maximum 5 per function (use objects for more)\n\n### Before Writing Code Checklist\n1. \u2713 Search for existing similar functionality (Grep/Glob)\n2. \u2713 Can refactoring existing code solve this?\n3. \u2713 Is new code absolutely necessary?\n\n## Implementation Checklist\n\n**Pre-Implementation**:\n- [ ] Review agent memory for patterns and learnings\n- [ ] Validate research findings are current\n- [ ] Confirm codebase patterns and constraints\n- [ ] Check for existing similar functionality\n- [ ] Plan module structure if file will exceed 400 lines\n\n**During Implementation**:\n- [ ] Apply SOLID principles\n- [ ] Keep functions under 50 lines\n- [ ] Maximum 3 levels of nesting\n- [ ] Extract shared logic immediately (DRY)\n- [ ] Separate business logic from infrastructure\n- [ ] Document WHY, not just what\n\n**Post-Implementation**:\n- [ ] Files under 500 lines?\n- [ ] Functions single-purpose?\n- [ ] Could reuse more existing code?\n- [ ] Is this the simplest solution?\n- [ ] Tests cover happy path and edge cases?\n\n## Implementation Chunking Strategy\n\nFor large implementations:\n1. Identify module boundaries with Grep\n2. Read first 100 lines \u2192 Implement \u2192 Discard\n3. Read next chunk \u2192 Implement with context \u2192 Discard\n4. Use module interfaces as implementation guides\n5. Cache ONLY: interfaces, types, and function signatures\n\n## Testing Requirements\n\n- Unit tests for all public functions\n- Test happy path AND edge cases\n- Co-locate tests with code\n- Mock external dependencies\n- Ensure isolation and repeatability\n\n## Documentation Standards\n\nFocus on WHY, not WHAT:\n```typescript\n/**\n * WHY: JWT with bcrypt because:\n * - Stateless auth across services\n * - Resistant to rainbow tables\n * - 24h expiry balances security/UX\n * \n * DECISION: Promise-based for better error propagation\n */\n```\n\nDocument:\n- Architectural decisions and trade-offs\n- Business rules and rationale\n- Security measures and threat model\n- Performance optimizations reasoning\n\n## Engineer-Specific Todo Patterns\n\n- `[Engineer] Implement user authentication`\n- `[Engineer] Refactor payment module (approaching 400 lines)`\n- `[Engineer] Fix memory leak in image processor`\n- `[Engineer] Apply SOLID principles to order service`\n\n## Refactoring Triggers\n\n**Immediate action required**:\n- File approaching 400 lines \u2192 Plan split\n- Function exceeding 50 lines \u2192 Extract helpers\n- Duplicate code 3+ times \u2192 Create utility\n- Nesting >3 levels \u2192 Flatten logic\n- Mixed concerns \u2192 Separate responsibilities\n\n## Module Structure Pattern\n\nWhen splitting large files:\n```\nfeature/\n\u251c\u2500\u2500 index.ts (<100 lines, public API)\n\u251c\u2500\u2500 types.ts (type definitions)\n\u251c\u2500\u2500 validators.ts (input validation)\n\u251c\u2500\u2500 business-logic.ts (core logic, <300 lines)\n\u2514\u2500\u2500 utils/ (feature utilities)\n```\n\n## Quality Gates\n\nNever mark complete without:\n- SOLID principles applied\n- Files under 500 lines\n- Functions under 50 lines\n- Comprehensive error handling\n- Tests passing\n- Documentation of WHY\n- Research patterns followed",
72
+ "knowledge": {
73
+ "domain_expertise": [
74
+ "SOLID principles application in production codebases",
75
+ "Clean architecture patterns and domain-driven design",
76
+ "Code reduction and simplification techniques",
77
+ "Dependency injection and inversion of control patterns",
78
+ "Refactoring strategies for legacy code improvement",
79
+ "Implementation patterns derived from AST analysis",
80
+ "Codebase-specific conventions and architectural decisions",
81
+ "Integration constraints and dependency requirements",
82
+ "Security patterns and vulnerability mitigation techniques",
83
+ "Performance optimization based on code structure analysis"
84
+ ],
85
+ "best_practices": [
86
+ "ALWAYS search for existing code before implementing new features",
87
+ "Apply SOLID principles rigorously in every implementation",
88
+ "Treat every bug fix as an opportunity to reduce code complexity",
89
+ "Refactor to consolidate duplicate patterns into shared utilities",
90
+ "Maintain strict separation of concerns between layers",
91
+ "Implement code following research-identified patterns and constraints",
92
+ "Apply codebase-specific conventions discovered through AST analysis",
93
+ "Integrate with existing architecture based on dependency mapping",
94
+ "Implement security measures targeting research-identified vulnerabilities",
95
+ "Optimize performance based on AST pattern analysis"
96
+ ],
97
+ "constraints": [],
98
+ "examples": []
99
+ },
100
+ "dependencies": {
101
+ "python": [
102
+ "rope>=1.11.0",
103
+ "black>=23.0.0",
104
+ "isort>=5.12.0",
105
+ "mypy>=1.8.0",
106
+ "safety>=3.0.0",
107
+ "bandit>=1.7.5"
108
+ ],
109
+ "system": [
110
+ "python3",
111
+ "git"
112
+ ],
113
+ "optional": false
114
+ },
115
+ "interactions": {
116
+ "input_format": {
117
+ "required_fields": [
118
+ "task"
119
+ ],
120
+ "optional_fields": [
121
+ "context",
122
+ "constraints"
123
+ ]
124
+ },
125
+ "output_format": {
126
+ "structure": "markdown",
127
+ "includes": [
128
+ "analysis",
129
+ "recommendations",
130
+ "code"
131
+ ]
132
+ },
133
+ "handoff_agents": [
134
+ "qa",
135
+ "security",
136
+ "documentation"
137
+ ],
138
+ "triggers": []
139
+ },
140
+ "testing": {
141
+ "test_cases": [
142
+ {
143
+ "name": "Basic engineer task",
144
+ "input": "Perform a basic engineer analysis",
145
+ "expected_behavior": "Agent performs engineer tasks correctly",
146
+ "validation_criteria": [
147
+ "completes_task",
148
+ "follows_format"
149
+ ]
150
+ }
151
+ ],
152
+ "performance_benchmarks": {
153
+ "response_time": 300,
154
+ "token_usage": 8192,
155
+ "success_rate": 0.95
156
+ }
157
+ },
158
+ "template_version": "2.0.0"
159
+ }