claude-mpm 4.17.0__tar.gz → 4.20.4__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 (978) hide show
  1. claude_mpm-4.20.4/BUILD_NUMBER +1 -0
  2. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/MANIFEST.in +6 -0
  3. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/PKG-INFO +162 -26
  4. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/README.md +159 -23
  5. claude_mpm-4.20.4/VERSION +1 -0
  6. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/pyproject.toml +5 -5
  7. claude_mpm-4.20.4/src/claude_mpm/VERSION +1 -0
  8. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/BASE_ENGINEER.md +286 -0
  9. claude_mpm-4.20.4/src/claude_mpm/agents/BASE_PM.md +451 -0
  10. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/PM_INSTRUCTIONS.md +40 -0
  11. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/agent_loader.py +4 -4
  12. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/engineer.json +5 -1
  13. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/php-engineer.json +10 -4
  14. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/python_engineer.json +8 -3
  15. claude_mpm-4.20.4/src/claude_mpm/agents/templates/rust_engineer.json +275 -0
  16. claude_mpm-4.20.4/src/claude_mpm/agents/templates/svelte-engineer.json +225 -0
  17. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/__init__.py +2 -0
  18. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mpm_init.py +109 -24
  19. claude_mpm-4.20.4/src/claude_mpm/cli/commands/skills.py +434 -0
  20. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/executor.py +2 -0
  21. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/base_parser.py +7 -0
  22. claude_mpm-4.20.4/src/claude_mpm/cli/parsers/skills_parser.py +137 -0
  23. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/startup.py +57 -0
  24. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-auto-configure.md +52 -0
  25. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-init.md +112 -6
  26. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/config/agent_config.py +2 -2
  27. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/constants.py +12 -0
  28. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/config.py +42 -0
  29. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/factories.py +1 -1
  30. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/optimized_agent_loader.py +3 -3
  31. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/__init__.py +8 -0
  32. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/response_tracking.py +35 -1
  33. claude_mpm-4.20.4/src/claude_mpm/hooks/session_resume_hook.py +121 -0
  34. claude_mpm-4.20.4/src/claude_mpm/models/resume_log.py +340 -0
  35. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/auto_config_manager.py +1 -1
  36. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_configuration_manager.py +1 -1
  37. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_record_service.py +1 -1
  38. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_validator.py +17 -1
  39. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/async_agent_deployment.py +1 -1
  40. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/local_template_deployment.py +1 -1
  41. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/local_template_manager.py +1 -1
  42. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/recommender.py +47 -0
  43. claude_mpm-4.20.4/src/claude_mpm/services/cli/resume_service.py +617 -0
  44. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/cli/session_manager.py +87 -0
  45. claude_mpm-4.20.4/src/claude_mpm/services/cli/session_resume_helper.py +352 -0
  46. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/path_resolver.py +1 -1
  47. claude_mpm-4.20.4/src/claude_mpm/services/infrastructure/resume_log_generator.py +439 -0
  48. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_config_manager.py +7 -131
  49. claude_mpm-4.20.4/src/claude_mpm/services/session_manager.py +380 -0
  50. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/deployment_strategies/local.py +1 -1
  51. claude_mpm-4.20.4/src/claude_mpm/skills/__init__.py +42 -0
  52. claude_mpm-4.20.4/src/claude_mpm/skills/agent_skills_injector.py +331 -0
  53. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/LICENSE_ATTRIBUTIONS.md +79 -0
  54. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/api-documentation.md +393 -0
  55. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/async-testing.md +571 -0
  56. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/code-review.md +143 -0
  57. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/collaboration/brainstorming/SKILL.md +75 -0
  58. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/collaboration/dispatching-parallel-agents/SKILL.md +184 -0
  59. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/collaboration/requesting-code-review/SKILL.md +107 -0
  60. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/collaboration/requesting-code-review/code-reviewer.md +146 -0
  61. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/collaboration/writing-plans/SKILL.md +118 -0
  62. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/database-migration.md +199 -0
  63. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/root-cause-tracing/SKILL.md +177 -0
  64. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/systematic-debugging/CREATION-LOG.md +119 -0
  65. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/systematic-debugging/SKILL.md +148 -0
  66. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/systematic-debugging/references/anti-patterns.md +483 -0
  67. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/systematic-debugging/references/examples.md +452 -0
  68. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/systematic-debugging/references/troubleshooting.md +449 -0
  69. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/systematic-debugging/references/workflow.md +411 -0
  70. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/systematic-debugging/test-academic.md +14 -0
  71. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/systematic-debugging/test-pressure-1.md +58 -0
  72. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/systematic-debugging/test-pressure-2.md +68 -0
  73. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/systematic-debugging/test-pressure-3.md +69 -0
  74. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/verification-before-completion/SKILL.md +175 -0
  75. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/verification-before-completion/references/common-failures.md +213 -0
  76. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/verification-before-completion/references/gate-function.md +314 -0
  77. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/debugging/verification-before-completion/references/verification-patterns.md +227 -0
  78. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/docker-containerization.md +194 -0
  79. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/express-local-dev.md +1429 -0
  80. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/fastapi-local-dev.md +1199 -0
  81. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/git-workflow.md +414 -0
  82. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/imagemagick.md +204 -0
  83. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/json-data-handling.md +223 -0
  84. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/artifacts-builder/SKILL.md +74 -0
  85. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/internal-comms/SKILL.md +32 -0
  86. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/internal-comms/examples/3p-updates.md +47 -0
  87. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/internal-comms/examples/company-newsletter.md +65 -0
  88. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/internal-comms/examples/faq-answers.md +30 -0
  89. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/internal-comms/examples/general-comms.md +16 -0
  90. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/mcp-builder/SKILL.md +328 -0
  91. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/mcp-builder/reference/evaluation.md +602 -0
  92. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/mcp-builder/reference/mcp_best_practices.md +915 -0
  93. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/mcp-builder/reference/node_mcp_server.md +916 -0
  94. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/mcp-builder/reference/python_mcp_server.md +752 -0
  95. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/mcp-builder/scripts/connections.py +150 -0
  96. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/mcp-builder/scripts/evaluation.py +372 -0
  97. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/skill-creator/SKILL.md +209 -0
  98. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/skill-creator/scripts/init_skill.py +302 -0
  99. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/skill-creator/scripts/package_skill.py +111 -0
  100. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/main/skill-creator/scripts/quick_validate.py +65 -0
  101. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/nextjs-local-dev.md +807 -0
  102. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/pdf.md +141 -0
  103. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/performance-profiling.md +567 -0
  104. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/php/espocrm-development/SKILL.md +216 -0
  105. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/php/espocrm-development/references/architecture.md +602 -0
  106. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/php/espocrm-development/references/common-tasks.md +821 -0
  107. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/php/espocrm-development/references/development-workflow.md +742 -0
  108. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/php/espocrm-development/references/frontend-customization.md +726 -0
  109. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/php/espocrm-development/references/hooks-and-services.md +764 -0
  110. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/php/espocrm-development/references/testing-debugging.md +831 -0
  111. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/refactoring-patterns.md +180 -0
  112. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/security-scanning.md +327 -0
  113. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/systematic-debugging.md +473 -0
  114. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/test-driven-development.md +378 -0
  115. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/condition-based-waiting/SKILL.md +123 -0
  116. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/test-driven-development/SKILL.md +145 -0
  117. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/test-driven-development/references/anti-patterns.md +543 -0
  118. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/test-driven-development/references/examples.md +741 -0
  119. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/test-driven-development/references/integration.md +470 -0
  120. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/test-driven-development/references/philosophy.md +458 -0
  121. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/test-driven-development/references/workflow.md +639 -0
  122. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/testing-anti-patterns/SKILL.md +304 -0
  123. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/webapp-testing/SKILL.md +96 -0
  124. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/webapp-testing/examples/console_logging.py +35 -0
  125. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/webapp-testing/examples/element_discovery.py +40 -0
  126. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/webapp-testing/examples/static_html_automation.py +34 -0
  127. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/testing/webapp-testing/scripts/with_server.py +107 -0
  128. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/vite-local-dev.md +1061 -0
  129. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/web-performance-optimization.md +2305 -0
  130. claude_mpm-4.20.4/src/claude_mpm/skills/bundled/xlsx.md +157 -0
  131. claude_mpm-4.20.4/src/claude_mpm/skills/skills_registry.py +351 -0
  132. claude_mpm-4.20.4/src/claude_mpm/skills/skills_service.py +730 -0
  133. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/agent_dependency_loader.py +2 -2
  134. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm.egg-info/PKG-INFO +162 -26
  135. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm.egg-info/SOURCES.txt +89 -2
  136. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm.egg-info/requires.txt +2 -2
  137. claude_mpm-4.17.0/BUILD_NUMBER +0 -1
  138. claude_mpm-4.17.0/CLAUDE.md +0 -51
  139. claude_mpm-4.17.0/VERSION +0 -1
  140. claude_mpm-4.17.0/src/claude_mpm/VERSION +0 -1
  141. claude_mpm-4.17.0/src/claude_mpm/agents/BASE_PM.md +0 -219
  142. claude_mpm-4.17.0/src/claude_mpm/agents/INSTRUCTIONS_OLD_DEPRECATED.md +0 -602
  143. claude_mpm-4.17.0/src/claude_mpm/agents/templates/rust_engineer.json +0 -270
  144. claude_mpm-4.17.0/src/claude_mpm/services/session_manager.py +0 -176
  145. claude_mpm-4.17.0/src/claude_mpm/skills/__init__.py +0 -21
  146. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/LICENSE +0 -0
  147. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/claude-mpm +0 -0
  148. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/scripts/ticket +0 -0
  149. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/setup.cfg +0 -0
  150. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/BUILD_NUMBER +0 -0
  151. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/__init__.py +0 -0
  152. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/__main__.py +0 -0
  153. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/BASE_AGENT_TEMPLATE.md +0 -0
  154. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/BASE_DOCUMENTATION.md +0 -0
  155. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/BASE_OPS.md +0 -0
  156. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/BASE_PROMPT_ENGINEER.md +0 -0
  157. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/BASE_QA.md +0 -0
  158. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/BASE_RESEARCH.md +0 -0
  159. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/MEMORY.md +0 -0
  160. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/OUTPUT_STYLE.md +0 -0
  161. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/WORKFLOW.md +0 -0
  162. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/__init__.py +0 -0
  163. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/agent-template.yaml +0 -0
  164. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/agent_loader_integration.py +0 -0
  165. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/agents_metadata.py +0 -0
  166. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/async_agent_loader.py +0 -0
  167. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/base_agent.json +0 -0
  168. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/base_agent_loader.py +0 -0
  169. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/frontmatter_validator.py +0 -0
  170. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/system_agent_config.py +0 -0
  171. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/.claude-mpm/memories/README.md +0 -0
  172. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/.claude-mpm/memories/engineer_memories.md +0 -0
  173. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/README.md +0 -0
  174. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/__init__.py +0 -0
  175. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/agent-manager.json +0 -0
  176. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/agentic-coder-optimizer.json +0 -0
  177. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/api_qa.json +0 -0
  178. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/circuit_breakers.md +0 -0
  179. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/clerk-ops.json +0 -0
  180. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/code_analyzer.json +0 -0
  181. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/content-agent.json +0 -0
  182. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/dart_engineer.json +0 -0
  183. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/data_engineer.json +0 -0
  184. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/documentation.json +0 -0
  185. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/gcp_ops_agent.json +0 -0
  186. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/git_file_tracking.md +0 -0
  187. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/golang_engineer.json +0 -0
  188. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/imagemagick.json +0 -0
  189. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/java_engineer.json +0 -0
  190. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/local_ops_agent.json +0 -0
  191. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/logs/prompts/agent_engineer_20250826_014258_728.md +0 -0
  192. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/logs/prompts/agent_engineer_20250901_010124_142.md +0 -0
  193. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/memory_manager.json +0 -0
  194. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/nextjs_engineer.json +0 -0
  195. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/ops.json +0 -0
  196. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/pm_examples.md +0 -0
  197. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/pm_red_flags.md +0 -0
  198. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/product_owner.json +0 -0
  199. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/project_organizer.json +0 -0
  200. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/prompt-engineer.json +0 -0
  201. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/qa.json +0 -0
  202. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/react_engineer.json +0 -0
  203. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/refactoring_engineer.json +0 -0
  204. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/research.json +0 -0
  205. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/response_format.md +0 -0
  206. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/ruby-engineer.json +0 -0
  207. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/security.json +0 -0
  208. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/ticketing.json +0 -0
  209. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/typescript_engineer.json +0 -0
  210. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/validation_templates.md +0 -0
  211. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/vercel_ops_agent.json +0 -0
  212. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/version_control.json +0 -0
  213. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/web_qa.json +0 -0
  214. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/agents/templates/web_ui.json +0 -0
  215. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/__init__.py +0 -0
  216. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/__main__.py +0 -0
  217. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/agent_manager.py +0 -0
  218. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/agent_state_manager.py +0 -0
  219. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/agents.py +0 -0
  220. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/agents_detect.py +0 -0
  221. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/agents_recommend.py +0 -0
  222. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/aggregate.py +0 -0
  223. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/analyze.py +0 -0
  224. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/analyze_code.py +0 -0
  225. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/auto_configure.py +0 -0
  226. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/cleanup.py +0 -0
  227. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/cleanup_orphaned_agents.py +0 -0
  228. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/config.py +0 -0
  229. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/configure.py +0 -0
  230. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/configure_agent_display.py +0 -0
  231. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/configure_behavior_manager.py +0 -0
  232. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/configure_hook_manager.py +0 -0
  233. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/configure_models.py +0 -0
  234. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/configure_navigation.py +0 -0
  235. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/configure_paths.py +0 -0
  236. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/configure_persistence.py +0 -0
  237. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/configure_startup_manager.py +0 -0
  238. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/configure_template_editor.py +0 -0
  239. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/configure_validators.py +0 -0
  240. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/dashboard.py +0 -0
  241. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/debug.py +0 -0
  242. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/doctor.py +0 -0
  243. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/info.py +0 -0
  244. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/local_deploy.py +0 -0
  245. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mcp.py +0 -0
  246. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mcp_command_router.py +0 -0
  247. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mcp_config.py +0 -0
  248. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mcp_config_commands.py +0 -0
  249. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mcp_external_commands.py +0 -0
  250. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mcp_install_commands.py +0 -0
  251. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mcp_pipx_config.py +0 -0
  252. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mcp_server_commands.py +0 -0
  253. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mcp_setup_external.py +0 -0
  254. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mcp_tool_commands.py +0 -0
  255. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/memory.py +0 -0
  256. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/monitor.py +0 -0
  257. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/mpm_init_handler.py +0 -0
  258. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/run.py +0 -0
  259. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/search.py +0 -0
  260. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/tickets.py +0 -0
  261. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/uninstall.py +0 -0
  262. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/upgrade.py +0 -0
  263. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/commands/verify.py +0 -0
  264. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/helpers.py +0 -0
  265. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/interactive/__init__.py +0 -0
  266. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/interactive/agent_wizard.py +0 -0
  267. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/interactive/skills_wizard.py +0 -0
  268. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parser.py +0 -0
  269. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/__init__.py +0 -0
  270. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/agent_manager_parser.py +0 -0
  271. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/agents_parser.py +0 -0
  272. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/analyze_code_parser.py +0 -0
  273. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/analyze_parser.py +0 -0
  274. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/auto_configure_parser.py +0 -0
  275. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/config_parser.py +0 -0
  276. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/configure_parser.py +0 -0
  277. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/dashboard_parser.py +0 -0
  278. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/debug_parser.py +0 -0
  279. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/local_deploy_parser.py +0 -0
  280. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/mcp_parser.py +0 -0
  281. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/memory_parser.py +0 -0
  282. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/monitor_parser.py +0 -0
  283. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/mpm_init_parser.py +0 -0
  284. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/run_parser.py +0 -0
  285. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/search_parser.py +0 -0
  286. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/parsers/tickets_parser.py +0 -0
  287. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/shared/__init__.py +0 -0
  288. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/shared/argument_patterns.py +0 -0
  289. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/shared/base_command.py +0 -0
  290. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/shared/error_handling.py +0 -0
  291. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/shared/output_formatters.py +0 -0
  292. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/startup_logging.py +0 -0
  293. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/ticket_cli.py +0 -0
  294. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli/utils.py +0 -0
  295. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli_module/__init__.py +0 -0
  296. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli_module/args.py +0 -0
  297. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli_module/commands.py +0 -0
  298. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/cli_module/migration_example.py +0 -0
  299. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/__init__.py +0 -0
  300. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-agents-detect.md +0 -0
  301. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-agents-recommend.md +0 -0
  302. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-agents.md +0 -0
  303. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-config.md +0 -0
  304. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-doctor.md +0 -0
  305. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-help.md +0 -0
  306. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-monitor.md +0 -0
  307. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-organize.md +0 -0
  308. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-status.md +0 -0
  309. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-tickets.md +0 -0
  310. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm-version.md +0 -0
  311. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/commands/mpm.md +0 -0
  312. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/config/__init__.py +0 -0
  313. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/config/experimental_features.py +0 -0
  314. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/config/model_config.py +0 -0
  315. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/config/paths.py +0 -0
  316. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/config/socketio_config.py +0 -0
  317. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/__init__.py +0 -0
  318. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/agent_name_normalizer.py +0 -0
  319. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/agent_registry.py +0 -0
  320. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/agent_session_manager.py +0 -0
  321. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/api_validator.py +0 -0
  322. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/base_service.py +0 -0
  323. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/cache.py +0 -0
  324. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/claude_runner.py +0 -0
  325. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/config_aliases.py +0 -0
  326. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/config_constants.py +0 -0
  327. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/constants.py +0 -0
  328. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/container.py +0 -0
  329. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/enums.py +0 -0
  330. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/error_handler.py +0 -0
  331. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/exceptions.py +0 -0
  332. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/file_utils.py +0 -0
  333. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/__init__.py +0 -0
  334. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/formatters/__init__.py +0 -0
  335. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/formatters/capability_generator.py +0 -0
  336. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/formatters/content_formatter.py +0 -0
  337. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/formatters/context_generator.py +0 -0
  338. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/loaders/__init__.py +0 -0
  339. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/loaders/agent_loader.py +0 -0
  340. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/loaders/file_loader.py +0 -0
  341. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/loaders/instruction_loader.py +0 -0
  342. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/loaders/packaged_loader.py +0 -0
  343. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/processors/__init__.py +0 -0
  344. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/processors/memory_processor.py +0 -0
  345. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/processors/metadata_processor.py +0 -0
  346. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework/processors/template_processor.py +0 -0
  347. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/framework_loader.py +0 -0
  348. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/hook_manager.py +0 -0
  349. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/hook_performance_config.py +0 -0
  350. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/injectable_service.py +0 -0
  351. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/instruction_reinforcement_hook.py +0 -0
  352. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/interactive_session.py +0 -0
  353. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/interfaces.py +0 -0
  354. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/lazy.py +0 -0
  355. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/log_manager.py +0 -0
  356. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/logger.py +0 -0
  357. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/logging_config.py +0 -0
  358. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/logging_utils.py +0 -0
  359. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/minimal_framework_loader.py +0 -0
  360. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/mixins.py +0 -0
  361. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/oneshot_session.py +0 -0
  362. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/optimized_startup.py +0 -0
  363. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/output_style_manager.py +0 -0
  364. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/pm_hook_interceptor.py +0 -0
  365. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/service_registry.py +0 -0
  366. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/session_manager.py +0 -0
  367. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/shared/__init__.py +0 -0
  368. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/shared/config_loader.py +0 -0
  369. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/shared/path_resolver.py +0 -0
  370. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/shared/singleton_manager.py +0 -0
  371. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/socketio_pool.py +0 -0
  372. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/tool_access_control.py +0 -0
  373. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/types.py +0 -0
  374. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/typing_utils.py +0 -0
  375. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/unified_agent_registry.py +0 -0
  376. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/unified_config.py +0 -0
  377. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/core/unified_paths.py +0 -0
  378. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/.claude-mpm/socketio-instances.json +0 -0
  379. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/__init__.py +0 -0
  380. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/analysis_runner.py +0 -0
  381. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/api/simple_directory.py +0 -0
  382. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/index.html +0 -0
  383. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/open_dashboard.py +0 -0
  384. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/react/components/DataInspector/DataInspector.module.css +0 -0
  385. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/react/components/EventViewer/EventViewer.module.css +0 -0
  386. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/react/components/shared/ConnectionStatus.module.css +0 -0
  387. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/react/components/shared/FilterBar.module.css +0 -0
  388. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/activity_dashboard_fixed.html +0 -0
  389. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/activity_dashboard_test.html +0 -0
  390. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_activity_connection.html +0 -0
  391. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_claude_tree_tab.html +0 -0
  392. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_dashboard.html +0 -0
  393. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_dashboard_fixed.html +0 -0
  394. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_dashboard_verification.html +0 -0
  395. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_file_data.html +0 -0
  396. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_file_tree_empty_state.html +0 -0
  397. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_file_tree_fix.html +0 -0
  398. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_file_tree_rename.html +0 -0
  399. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_file_tree_tab.html +0 -0
  400. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_file_viewer.html +0 -0
  401. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_final_activity.html +0 -0
  402. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/archive/test_tab_fix.html +0 -0
  403. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/assets/events.DjpNxWNo.css +0 -0
  404. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/activity-tree.js +0 -0
  405. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/agent-hierarchy.js +0 -0
  406. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/agent-inference.js +0 -0
  407. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/build-tracker.js +0 -0
  408. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/code-simple.js +0 -0
  409. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/code-tree/tree-breadcrumb.js +0 -0
  410. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/code-tree/tree-constants.js +0 -0
  411. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/code-tree/tree-search.js +0 -0
  412. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/code-tree/tree-utils.js +0 -0
  413. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/code-tree.js +0 -0
  414. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/code-viewer.js +0 -0
  415. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/connection-debug.js +0 -0
  416. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/diff-viewer.js +0 -0
  417. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/event-processor.js +0 -0
  418. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/event-viewer.js +0 -0
  419. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/export-manager.js +0 -0
  420. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/file-change-tracker.js +0 -0
  421. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/file-change-viewer.js +0 -0
  422. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/file-tool-tracker.js +0 -0
  423. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/file-viewer.js +0 -0
  424. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/hud-library-loader.js +0 -0
  425. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/hud-manager.js +0 -0
  426. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/hud-visualizer.js +0 -0
  427. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/module-viewer.js +0 -0
  428. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/nav-bar.js +0 -0
  429. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/page-structure.js +0 -0
  430. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/session-manager.js +0 -0
  431. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/socket-manager.js +0 -0
  432. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/ui-state-manager.js +0 -0
  433. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/unified-data-viewer.js +0 -0
  434. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/components/working-directory.js +0 -0
  435. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/connection-manager.js +0 -0
  436. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/dashboard.js +0 -0
  437. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/extension-error-handler.js +0 -0
  438. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/react/events.js +0 -0
  439. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/shared/dom-helpers.js +0 -0
  440. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/shared/event-bus.js +0 -0
  441. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/shared/event-filter-service.js +0 -0
  442. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/shared/logger.js +0 -0
  443. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/shared/page-structure.js +0 -0
  444. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/shared/tooltip-service.js +0 -0
  445. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/socket-client.js +0 -0
  446. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/built/tab-isolation-fix.js +0 -0
  447. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/css/activity.css +0 -0
  448. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/css/connection-status.css +0 -0
  449. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/css/dashboard.css +0 -0
  450. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/assets/events.DjpNxWNo.css +0 -0
  451. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/activity-tree.js +0 -0
  452. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/agent-inference.js +0 -0
  453. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/code-tree.js +0 -0
  454. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/code-viewer.js +0 -0
  455. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/event-processor.js +0 -0
  456. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/event-viewer.js +0 -0
  457. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/export-manager.js +0 -0
  458. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/file-tool-tracker.js +0 -0
  459. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/file-viewer.js +0 -0
  460. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/hud-library-loader.js +0 -0
  461. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/hud-manager.js +0 -0
  462. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/hud-visualizer.js +0 -0
  463. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/module-viewer.js +0 -0
  464. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/session-manager.js +0 -0
  465. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/socket-manager.js +0 -0
  466. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/ui-state-manager.js +0 -0
  467. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/unified-data-viewer.js +0 -0
  468. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/components/working-directory.js +0 -0
  469. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/dashboard.js +0 -0
  470. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/react/events.js +0 -0
  471. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/dist/socket-client.js +0 -0
  472. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/events.html +0 -0
  473. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/index.html +0 -0
  474. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/activity-tree.js +0 -0
  475. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/agent-hierarchy.js +0 -0
  476. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/agent-inference.js +0 -0
  477. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/build-tracker.js +0 -0
  478. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/code-simple.js +0 -0
  479. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/connection-debug.js +0 -0
  480. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/diff-viewer.js +0 -0
  481. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/event-processor.js +0 -0
  482. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/event-viewer.js +0 -0
  483. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/export-manager.js +0 -0
  484. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/file-change-tracker.js +0 -0
  485. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/file-change-viewer.js +0 -0
  486. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/file-tool-tracker.js +0 -0
  487. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/file-viewer.js +0 -0
  488. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/hud-library-loader.js +0 -0
  489. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/hud-manager.js +0 -0
  490. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/hud-visualizer.js +0 -0
  491. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/module-viewer.js +0 -0
  492. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/session-manager.js +0 -0
  493. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/socket-manager.js +0 -0
  494. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/ui-state-manager.js +0 -0
  495. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/unified-data-viewer.js +0 -0
  496. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/components/working-directory.js +0 -0
  497. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/connection-manager.js +0 -0
  498. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/dashboard.js +0 -0
  499. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/extension-error-handler.js +0 -0
  500. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/shared/dom-helpers.js +0 -0
  501. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/shared/event-bus.js +0 -0
  502. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/shared/logger.js +0 -0
  503. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/shared/tooltip-service.js +0 -0
  504. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/socket-client.js +0 -0
  505. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/stores/dashboard-store.js +0 -0
  506. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/js/tab-isolation-fix.js +0 -0
  507. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/legacy/activity.html +0 -0
  508. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/legacy/agents.html +0 -0
  509. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/legacy/files.html +0 -0
  510. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/legacy/tools.html +0 -0
  511. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/monitors.html +0 -0
  512. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/production/events.html +0 -0
  513. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/production/main.html +0 -0
  514. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/production/monitors.html +0 -0
  515. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/socket.io.min.js +0 -0
  516. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/socket.io.v4.8.1.backup.js +0 -0
  517. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/test-archive/dashboard.html +0 -0
  518. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/test-archive/debug-events.html +0 -0
  519. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/test-archive/test-navigation.html +0 -0
  520. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/test-archive/test-react-exports.html +0 -0
  521. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/static/test-archive/test_debug.html +0 -0
  522. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/templates/code_simple.html +0 -0
  523. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/templates/index.html +0 -0
  524. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/dashboard/test_dashboard.html +0 -0
  525. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/experimental/__init__.py +0 -0
  526. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/experimental/cli_enhancements.py +0 -0
  527. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/generators/__init__.py +0 -0
  528. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/generators/agent_profile_generator.py +0 -0
  529. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/base_hook.py +0 -0
  530. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/__init__.py +0 -0
  531. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/connection_pool.py +0 -0
  532. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/event_handlers.py +0 -0
  533. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/hook_handler.py +0 -0
  534. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/hook_wrapper.sh +0 -0
  535. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/installer.py +0 -0
  536. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/memory_integration.py +0 -0
  537. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/services/__init__.py +0 -0
  538. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/services/connection_manager.py +0 -0
  539. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/services/connection_manager_http.py +0 -0
  540. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/services/duplicate_detector.py +0 -0
  541. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/services/state_manager.py +0 -0
  542. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/services/subagent_processor.py +0 -0
  543. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/claude_hooks/tool_analysis.py +0 -0
  544. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/failure_learning/__init__.py +0 -0
  545. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/failure_learning/failure_detection_hook.py +0 -0
  546. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/failure_learning/fix_detection_hook.py +0 -0
  547. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/failure_learning/learning_extraction_hook.py +0 -0
  548. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/instruction_reinforcement.py +0 -0
  549. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/kuzu_enrichment_hook.py +0 -0
  550. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/kuzu_memory_hook.py +0 -0
  551. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/kuzu_response_hook.py +0 -0
  552. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/memory_integration_hook.py +0 -0
  553. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/tool_call_interceptor.py +0 -0
  554. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/hooks/validation_hooks.py +0 -0
  555. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/init.py +0 -0
  556. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/models/__init__.py +0 -0
  557. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/models/agent_definition.py +0 -0
  558. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/models/agent_session.py +0 -0
  559. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/schemas/__init__.py +0 -0
  560. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/scripts/__init__.py +0 -0
  561. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/scripts/claude-hook-handler.sh +0 -0
  562. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/scripts/launch_monitor.py +0 -0
  563. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/scripts/mcp_server.py +0 -0
  564. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/scripts/mcp_wrapper.py +0 -0
  565. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/scripts/mpm_doctor.py +0 -0
  566. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/scripts/socketio_daemon.py +0 -0
  567. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/scripts/start_activity_logging.py +0 -0
  568. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/__init__.py +0 -0
  569. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agent_capabilities_service.py +0 -0
  570. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/__init__.py +0 -0
  571. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/agent_builder.py +0 -0
  572. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/__init__.py +0 -0
  573. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_config_provider.py +0 -0
  574. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_definition_factory.py +0 -0
  575. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_deployment.py +0 -0
  576. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_discovery_service.py +0 -0
  577. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_environment_manager.py +0 -0
  578. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_filesystem_manager.py +0 -0
  579. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_format_converter.py +0 -0
  580. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_frontmatter_validator.py +0 -0
  581. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager.py +0 -0
  582. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_metrics_collector.py +0 -0
  583. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_operation_service.py +0 -0
  584. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_restore_handler.py +0 -0
  585. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_state_service.py +0 -0
  586. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_template_builder.py +0 -0
  587. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_version_manager.py +0 -0
  588. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agent_versioning.py +0 -0
  589. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/agents_directory_resolver.py +0 -0
  590. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/base_agent_locator.py +0 -0
  591. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/config/__init__.py +0 -0
  592. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/config/deployment_config.py +0 -0
  593. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/config/deployment_config_manager.py +0 -0
  594. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/deployment_config_loader.py +0 -0
  595. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/deployment_results_manager.py +0 -0
  596. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/deployment_type_detector.py +0 -0
  597. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/deployment_wrapper.py +0 -0
  598. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/facade/__init__.py +0 -0
  599. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/facade/async_deployment_executor.py +0 -0
  600. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/facade/deployment_executor.py +0 -0
  601. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/facade/deployment_facade.py +0 -0
  602. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/facade/sync_deployment_executor.py +0 -0
  603. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/interface_adapter.py +0 -0
  604. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/lifecycle_health_checker.py +0 -0
  605. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/lifecycle_performance_tracker.py +0 -0
  606. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/multi_source_deployment_service.py +0 -0
  607. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/pipeline/__init__.py +0 -0
  608. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_builder.py +0 -0
  609. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_context.py +0 -0
  610. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/pipeline/pipeline_executor.py +0 -0
  611. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/pipeline/steps/__init__.py +0 -0
  612. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/pipeline/steps/agent_processing_step.py +0 -0
  613. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/pipeline/steps/base_step.py +0 -0
  614. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/pipeline/steps/configuration_step.py +0 -0
  615. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/pipeline/steps/target_directory_step.py +0 -0
  616. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/pipeline/steps/validation_step.py +0 -0
  617. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/processors/__init__.py +0 -0
  618. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_context.py +0 -0
  619. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/processors/agent_deployment_result.py +0 -0
  620. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/processors/agent_processor.py +0 -0
  621. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/refactored_agent_deployment_service.py +0 -0
  622. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/results/__init__.py +0 -0
  623. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/results/deployment_metrics.py +0 -0
  624. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/results/deployment_result_builder.py +0 -0
  625. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/single_agent_deployer.py +0 -0
  626. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/strategies/__init__.py +0 -0
  627. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/strategies/base_strategy.py +0 -0
  628. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/strategies/project_strategy.py +0 -0
  629. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/strategies/strategy_selector.py +0 -0
  630. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/strategies/system_strategy.py +0 -0
  631. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/strategies/user_strategy.py +0 -0
  632. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/system_instructions_deployer.py +0 -0
  633. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/validation/__init__.py +0 -0
  634. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/validation/agent_validator.py +0 -0
  635. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/validation/deployment_validator.py +0 -0
  636. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/validation/template_validator.py +0 -0
  637. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/deployment/validation/validation_result.py +0 -0
  638. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/loading/__init__.py +0 -0
  639. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/loading/agent_profile_loader.py +0 -0
  640. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/loading/base_agent_manager.py +0 -0
  641. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/loading/framework_agent_loader.py +0 -0
  642. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/management/__init__.py +0 -0
  643. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/management/agent_capabilities_generator.py +0 -0
  644. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/management/agent_management_service.py +0 -0
  645. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/memory/__init__.py +0 -0
  646. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/memory/agent_memory_manager.py +0 -0
  647. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/memory/agent_persistence_service.py +0 -0
  648. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/memory/content_manager.py +0 -0
  649. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/memory/memory_categorization_service.py +0 -0
  650. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/memory/memory_file_service.py +0 -0
  651. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/memory/memory_format_service.py +0 -0
  652. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/memory/memory_limits_service.py +0 -0
  653. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/memory/template_generator.py +0 -0
  654. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/observers.py +0 -0
  655. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/registry/__init__.py +0 -0
  656. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/registry/deployed_agent_discovery.py +0 -0
  657. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/agents/registry/modification_tracker.py +0 -0
  658. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/async_session_logger.py +0 -0
  659. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/claude_session_logger.py +0 -0
  660. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/cli/__init__.py +0 -0
  661. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/cli/agent_cleanup_service.py +0 -0
  662. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/cli/agent_dependency_service.py +0 -0
  663. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/cli/agent_listing_service.py +0 -0
  664. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/cli/agent_output_formatter.py +0 -0
  665. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/cli/agent_validation_service.py +0 -0
  666. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/cli/memory_crud_service.py +0 -0
  667. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/cli/memory_output_formatter.py +0 -0
  668. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/cli/startup_checker.py +0 -0
  669. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/cli/unified_dashboard_manager.py +0 -0
  670. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/command_deployment_service.py +0 -0
  671. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/command_handler_service.py +0 -0
  672. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/communication/__init__.py +0 -0
  673. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/__init__.py +0 -0
  674. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/base.py +0 -0
  675. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/cache_manager.py +0 -0
  676. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces/__init__.py +0 -0
  677. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces/agent.py +0 -0
  678. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces/communication.py +0 -0
  679. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces/health.py +0 -0
  680. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces/infrastructure.py +0 -0
  681. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces/model.py +0 -0
  682. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces/process.py +0 -0
  683. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces/project.py +0 -0
  684. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces/restart.py +0 -0
  685. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces/service.py +0 -0
  686. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces/stability.py +0 -0
  687. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/interfaces.py +0 -0
  688. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/memory_manager.py +0 -0
  689. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/models/__init__.py +0 -0
  690. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/models/agent_config.py +0 -0
  691. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/models/health.py +0 -0
  692. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/models/process.py +0 -0
  693. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/models/restart.py +0 -0
  694. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/models/stability.py +0 -0
  695. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/models/toolchain.py +0 -0
  696. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/service_container.py +0 -0
  697. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/core/service_interfaces.py +0 -0
  698. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/__init__.py +0 -0
  699. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/__init__.py +0 -0
  700. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/agent_check.py +0 -0
  701. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/base_check.py +0 -0
  702. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/claude_code_check.py +0 -0
  703. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/common_issues_check.py +0 -0
  704. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/configuration_check.py +0 -0
  705. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/filesystem_check.py +0 -0
  706. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/installation_check.py +0 -0
  707. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/instructions_check.py +0 -0
  708. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/mcp_check.py +0 -0
  709. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/mcp_services_check.py +0 -0
  710. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/monitor_check.py +0 -0
  711. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/checks/startup_log_check.py +0 -0
  712. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/diagnostic_runner.py +0 -0
  713. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/doctor_reporter.py +0 -0
  714. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/diagnostics/models.py +0 -0
  715. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/event_aggregator.py +0 -0
  716. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/event_bus/__init__.py +0 -0
  717. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/event_bus/config.py +0 -0
  718. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/event_bus/direct_relay.py +0 -0
  719. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/event_bus/event_bus.py +0 -0
  720. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/event_bus/relay.py +0 -0
  721. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/events/__init__.py +0 -0
  722. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/events/consumers/__init__.py +0 -0
  723. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/events/consumers/dead_letter.py +0 -0
  724. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/events/consumers/logging.py +0 -0
  725. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/events/consumers/metrics.py +0 -0
  726. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/events/consumers/socketio.py +0 -0
  727. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/events/core.py +0 -0
  728. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/events/interfaces.py +0 -0
  729. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/events/producers/__init__.py +0 -0
  730. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/events/producers/hook.py +0 -0
  731. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/events/producers/system.py +0 -0
  732. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/exceptions.py +0 -0
  733. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/__init__.py +0 -0
  734. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/content_assembler.py +0 -0
  735. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/content_validator.py +0 -0
  736. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/deployment_manager.py +0 -0
  737. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/__init__.py +0 -0
  738. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/agents.py +0 -0
  739. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/claude_pm_init.py +0 -0
  740. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/core_responsibilities.py +0 -0
  741. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/delegation_constraints.py +0 -0
  742. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/environment_config.py +0 -0
  743. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/footer.py +0 -0
  744. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/header.py +0 -0
  745. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/orchestration_principles.py +0 -0
  746. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/role_designation.py +0 -0
  747. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/subprocess_validation.py +0 -0
  748. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/todo_task_tools.py +0 -0
  749. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_generators/troubleshooting.py +0 -0
  750. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/section_manager.py +0 -0
  751. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/framework_claude_md_generator/version_manager.py +0 -0
  752. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/hook_installer_service.py +0 -0
  753. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/hook_service.py +0 -0
  754. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/__init__.py +0 -0
  755. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/context_preservation.py +0 -0
  756. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/daemon_manager.py +0 -0
  757. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/logging.py +0 -0
  758. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/monitoring/__init__.py +0 -0
  759. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/monitoring/aggregator.py +0 -0
  760. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/monitoring/base.py +0 -0
  761. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/monitoring/legacy.py +0 -0
  762. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/monitoring/network.py +0 -0
  763. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/monitoring/process.py +0 -0
  764. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/monitoring/resources.py +0 -0
  765. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/monitoring/service.py +0 -0
  766. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/infrastructure/monitoring.py +0 -0
  767. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/__init__.py +0 -0
  768. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/crash_detector.py +0 -0
  769. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/health_checks/__init__.py +0 -0
  770. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/health_checks/http_check.py +0 -0
  771. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/health_checks/process_check.py +0 -0
  772. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/health_checks/resource_check.py +0 -0
  773. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/health_manager.py +0 -0
  774. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/log_monitor.py +0 -0
  775. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/memory_leak_detector.py +0 -0
  776. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/process_manager.py +0 -0
  777. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/resource_monitor.py +0 -0
  778. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/restart_manager.py +0 -0
  779. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/restart_policy.py +0 -0
  780. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/state_manager.py +0 -0
  781. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/local_ops/unified_manager.py +0 -0
  782. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/__init__.py +0 -0
  783. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/auto_configure.py +0 -0
  784. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/config/__init__.py +0 -0
  785. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/config/config_loader.py +0 -0
  786. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/config/config_schema.py +0 -0
  787. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/config/configuration.py +0 -0
  788. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/core/__init__.py +0 -0
  789. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/core/base.py +0 -0
  790. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/core/exceptions.py +0 -0
  791. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/core/interfaces.py +0 -0
  792. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/core/process_pool.py +0 -0
  793. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/core/singleton_manager.py +0 -0
  794. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/core/startup_verification.py +0 -0
  795. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/main.py +0 -0
  796. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/registry/__init__.py +0 -0
  797. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/registry/service_registry.py +0 -0
  798. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/registry/tool_registry.py +0 -0
  799. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/server/__init__.py +0 -0
  800. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/server/mcp_gateway.py +0 -0
  801. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/server/stdio_handler.py +0 -0
  802. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/server/stdio_server.py +0 -0
  803. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/tools/__init__.py +0 -0
  804. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/tools/base_adapter.py +0 -0
  805. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/tools/document_summarizer.py +0 -0
  806. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/tools/external_mcp_services.py +0 -0
  807. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/tools/health_check_tool.py +0 -0
  808. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/tools/hello_world.py +0 -0
  809. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/tools/kuzu_memory_service.py +0 -0
  810. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/utils/__init__.py +0 -0
  811. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/utils/package_version_checker.py +0 -0
  812. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_gateway/utils/update_preferences.py +0 -0
  813. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/mcp_service_verifier.py +0 -0
  814. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/memory/__init__.py +0 -0
  815. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/memory/builder.py +0 -0
  816. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/memory/cache/__init__.py +0 -0
  817. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/memory/cache/shared_prompt_cache.py +0 -0
  818. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/memory/cache/simple_cache.py +0 -0
  819. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/memory/failure_tracker.py +0 -0
  820. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/memory/indexed_memory.py +0 -0
  821. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/memory/optimizer.py +0 -0
  822. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/memory/router.py +0 -0
  823. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/memory_hook_service.py +0 -0
  824. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/model/__init__.py +0 -0
  825. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/model/base_provider.py +0 -0
  826. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/model/claude_provider.py +0 -0
  827. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/model/model_router.py +0 -0
  828. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/model/ollama_provider.py +0 -0
  829. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/__init__.py +0 -0
  830. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/daemon.py +0 -0
  831. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/daemon_manager.py +0 -0
  832. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/event_emitter.py +0 -0
  833. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/handlers/__init__.py +0 -0
  834. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/handlers/code_analysis.py +0 -0
  835. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/handlers/dashboard.py +0 -0
  836. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/handlers/file.py +0 -0
  837. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/handlers/hooks.py +0 -0
  838. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/management/__init__.py +0 -0
  839. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/management/health.py +0 -0
  840. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/management/lifecycle.py +0 -0
  841. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor/server.py +0 -0
  842. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/monitor_build_service.py +0 -0
  843. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/orphan_detection.py +0 -0
  844. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/port_manager.py +0 -0
  845. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/__init__.py +0 -0
  846. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/analyzer.py +0 -0
  847. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/analyzer_v2.py +0 -0
  848. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/architecture_analyzer.py +0 -0
  849. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/archive_manager.py +0 -0
  850. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/dependency_analyzer.py +0 -0
  851. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/detection_strategies.py +0 -0
  852. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/documentation_manager.py +0 -0
  853. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/enhanced_analyzer.py +0 -0
  854. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/language_analyzer.py +0 -0
  855. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/metrics_collector.py +0 -0
  856. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/project_organizer.py +0 -0
  857. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/registry.py +0 -0
  858. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project/toolchain_analyzer.py +0 -0
  859. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/project_port_allocator.py +0 -0
  860. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/recovery_manager.py +0 -0
  861. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/response_tracker.py +0 -0
  862. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/runner_configuration_service.py +0 -0
  863. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/self_upgrade_service.py +0 -0
  864. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/session_management_service.py +0 -0
  865. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/shared/__init__.py +0 -0
  866. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/shared/async_service_base.py +0 -0
  867. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/shared/config_service_base.py +0 -0
  868. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/shared/lifecycle_service_base.py +0 -0
  869. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/shared/manager_base.py +0 -0
  870. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/shared/service_factory.py +0 -0
  871. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/__init__.py +0 -0
  872. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/client_proxy.py +0 -0
  873. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/dashboard_server.py +0 -0
  874. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/event_normalizer.py +0 -0
  875. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/handlers/__init__.py +0 -0
  876. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/handlers/base.py +0 -0
  877. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/handlers/code_analysis.py +0 -0
  878. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/handlers/connection.py +0 -0
  879. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/handlers/connection_handler.py +0 -0
  880. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/handlers/file.py +0 -0
  881. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/handlers/git.py +0 -0
  882. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/handlers/hook.py +0 -0
  883. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/handlers/memory.py +0 -0
  884. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/handlers/project.py +0 -0
  885. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/handlers/registry.py +0 -0
  886. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/migration_utils.py +0 -0
  887. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/monitor_client.py +0 -0
  888. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/server/__init__.py +0 -0
  889. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/server/broadcaster.py +0 -0
  890. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/server/connection_manager.py +0 -0
  891. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/server/core.py +0 -0
  892. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/server/eventbus_integration.py +0 -0
  893. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio/server/main.py +0 -0
  894. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio_client_manager.py +0 -0
  895. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/socketio_server.py +0 -0
  896. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/subprocess_launcher_service.py +0 -0
  897. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/system_instructions_service.py +0 -0
  898. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/ticket_manager.py +0 -0
  899. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/ticket_services/__init__.py +0 -0
  900. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/ticket_services/crud_service.py +0 -0
  901. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/ticket_services/formatter_service.py +0 -0
  902. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/ticket_services/search_service.py +0 -0
  903. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/ticket_services/validation_service.py +0 -0
  904. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/ticket_services/workflow_service.py +0 -0
  905. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/__init__.py +0 -0
  906. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/analyzer_strategies/__init__.py +0 -0
  907. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/analyzer_strategies/code_analyzer.py +0 -0
  908. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/analyzer_strategies/dependency_analyzer.py +0 -0
  909. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/analyzer_strategies/performance_analyzer.py +0 -0
  910. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/analyzer_strategies/security_analyzer.py +0 -0
  911. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/analyzer_strategies/structure_analyzer.py +0 -0
  912. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/config_strategies/__init__.py +0 -0
  913. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/config_strategies/config_schema.py +0 -0
  914. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/config_strategies/context_strategy.py +0 -0
  915. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/config_strategies/error_handling_strategy.py +0 -0
  916. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/config_strategies/file_loader_strategy.py +0 -0
  917. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/config_strategies/unified_config_service.py +0 -0
  918. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/config_strategies/validation_strategy.py +0 -0
  919. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/deployment_strategies/__init__.py +0 -0
  920. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/deployment_strategies/base.py +0 -0
  921. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/deployment_strategies/cloud_strategies.py +0 -0
  922. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/deployment_strategies/utils.py +0 -0
  923. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/deployment_strategies/vercel.py +0 -0
  924. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/interfaces.py +0 -0
  925. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/migration.py +0 -0
  926. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/strategies.py +0 -0
  927. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/unified_analyzer.py +0 -0
  928. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/unified_config.py +0 -0
  929. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/unified/unified_deployment.py +0 -0
  930. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/utility_service.py +0 -0
  931. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/version_control/__init__.py +0 -0
  932. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/version_control/branch_strategy.py +0 -0
  933. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/version_control/conflict_resolution.py +0 -0
  934. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/version_control/git_operations.py +0 -0
  935. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/version_control/semantic_versioning.py +0 -0
  936. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/version_control/version_parser.py +0 -0
  937. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/version_service.py +0 -0
  938. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/visualization/__init__.py +0 -0
  939. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/services/visualization/mermaid_generator.py +0 -0
  940. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/skills/bundled/__init__.py +0 -0
  941. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/skills/registry.py +0 -0
  942. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/skills/skill_manager.py +0 -0
  943. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/storage/__init__.py +0 -0
  944. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/storage/state_storage.py +0 -0
  945. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/ticket_wrapper.py +0 -0
  946. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/tools/__init__.py +0 -0
  947. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/tools/__main__.py +0 -0
  948. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/tools/code_tree_analyzer.py +0 -0
  949. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/tools/code_tree_builder.py +0 -0
  950. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/tools/code_tree_events.py +0 -0
  951. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/tools/socketio_debug.py +0 -0
  952. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/__init__.py +0 -0
  953. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/common.py +0 -0
  954. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/config_manager.py +0 -0
  955. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/console.py +0 -0
  956. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/database_connector.py +0 -0
  957. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/dependency_cache.py +0 -0
  958. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/dependency_manager.py +0 -0
  959. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/dependency_strategies.py +0 -0
  960. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/display_helper.py +0 -0
  961. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/environment_context.py +0 -0
  962. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/error_handler.py +0 -0
  963. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/file_utils.py +0 -0
  964. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/framework_detection.py +0 -0
  965. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/git_analyzer.py +0 -0
  966. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/import_migration_example.py +0 -0
  967. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/imports.py +0 -0
  968. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/log_cleanup.py +0 -0
  969. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/path_operations.py +0 -0
  970. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/robust_installer.py +0 -0
  971. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/session_logging.py +0 -0
  972. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/utils/subprocess_utils.py +0 -0
  973. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/validation/__init__.py +0 -0
  974. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/validation/agent_validator.py +0 -0
  975. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm/validation/frontmatter_validator.py +0 -0
  976. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm.egg-info/dependency_links.txt +0 -0
  977. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm.egg-info/entry_points.txt +0 -0
  978. {claude_mpm-4.17.0 → claude_mpm-4.20.4}/src/claude_mpm.egg-info/top_level.txt +0 -0
@@ -0,0 +1 @@
1
+ 495
@@ -18,6 +18,12 @@ recursive-include src/claude_mpm/agents *.md *.json
18
18
  recursive-include src/claude_mpm/agents/templates *.json
19
19
  recursive-include src/claude_mpm/framework *.md *.json
20
20
 
21
+ # Include skills (bundled markdown files)
22
+ recursive-include src/claude_mpm/skills/bundled *.md
23
+
24
+ # Include all command files
25
+ recursive-include src/claude_mpm/commands *.md
26
+
21
27
  # Include scripts
22
28
  include scripts/ticket
23
29
  include scripts/run_mpm.py
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-mpm
3
- Version: 4.17.0
3
+ Version: 4.20.4
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
@@ -31,7 +31,7 @@ Requires-Dist: requests>=2.25.0
31
31
  Requires-Dist: flask>=3.0.0
32
32
  Requires-Dist: flask-cors>=4.0.0
33
33
  Requires-Dist: watchdog>=3.0.0
34
- Requires-Dist: python-socketio>=5.11.0
34
+ Requires-Dist: python-socketio>=5.14.0
35
35
  Requires-Dist: aiohttp>=3.9.0
36
36
  Requires-Dist: aiohttp-cors<0.8.0,>=0.7.0
37
37
  Requires-Dist: python-engineio>=4.8.0
@@ -75,7 +75,7 @@ Requires-Dist: sphinx>=7.2.0; extra == "docs"
75
75
  Requires-Dist: sphinx-rtd-theme>=1.3.0; extra == "docs"
76
76
  Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
77
77
  Provides-Extra: monitor
78
- Requires-Dist: python-socketio>=5.11.0; extra == "monitor"
78
+ Requires-Dist: python-socketio>=5.14.0; extra == "monitor"
79
79
  Requires-Dist: aiohttp>=3.9.0; extra == "monitor"
80
80
  Requires-Dist: aiohttp-cors<0.8.0,>=0.7.0; extra == "monitor"
81
81
  Requires-Dist: python-engineio>=4.8.0; extra == "monitor"
@@ -158,12 +158,11 @@ A powerful orchestration framework for **Claude Code (CLI)** that enables multi-
158
158
 
159
159
  - 🤖 **Multi-Agent System**: 15 specialized agents for comprehensive project management
160
160
  - 🎯 **Skills System**: 20 bundled skills with auto-linking, three-tier organization (bundled/user/project), and interactive configuration
161
- - 🧠 **Persistent Knowledge System**: Project-specific kuzu-memory integration for intelligent context retention
162
161
  - 🔄 **Session Management**: Resume previous sessions with `--resume`
162
+ - 📋 **Resume Log System**: Proactive context management with automatic 10k-token session logs at 70%/85%/95% thresholds
163
163
  - 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
164
- - 🔌 **Smart MCP Services**: Interactive auto-install for mcp-vector-search on first use (pip/pipx choice)
165
- - 🔍 **Semantic Code Search**: Optional vector search with graceful fallback to grep/glob
166
- - 📁 **Multi-Project Support**: Per-session working directories with persistent knowledge graphs
164
+ - 🔌 **MCP Integration**: Full support for Model Context Protocol services
165
+ - 📁 **Multi-Project Support**: Per-session working directories
167
166
  - 🔍 **Git Integration**: View diffs and track changes across projects
168
167
  - 🎯 **Smart Task Orchestration**: PM agent intelligently routes work to specialists
169
168
  - ⚡ **Simplified Architecture**: ~3,700 lines removed for better performance and maintainability
@@ -175,8 +174,8 @@ A powerful orchestration framework for **Claude Code (CLI)** that enables multi-
175
174
  # Basic installation
176
175
  pip install claude-mpm
177
176
 
178
- # Install with optional MCP services (recommended)
179
- pip install "claude-mpm[mcp]"
177
+ # Install with monitoring dashboard (recommended)
178
+ pip install "claude-mpm[monitor]"
180
179
  ```
181
180
 
182
181
  Or with pipx (recommended for isolated installation):
@@ -184,30 +183,87 @@ Or with pipx (recommended for isolated installation):
184
183
  # Basic installation
185
184
  pipx install claude-mpm
186
185
 
187
- # Install with optional MCP services (recommended)
188
- pipx install "claude-mpm[mcp]"
189
-
190
- # Install with all features
191
- pipx install "claude-mpm[mcp,monitor]"
192
-
193
- # Configure MCP for pipx users:
194
- claude-mpm mcp-pipx-config
186
+ # Install with monitoring dashboard (recommended)
187
+ pipx install "claude-mpm[monitor]"
195
188
  ```
196
189
 
197
190
  **💡 Optional Dependencies**:
198
- - `[mcp]` - Include MCP services (mcp-vector-search, mcp-browser, mcp-ticketer)
199
191
  - `[monitor]` - Full monitoring dashboard with Socket.IO and async web server components
200
- - **Combine both**: Use `"claude-mpm[mcp,monitor]"` to install all features
201
- - **Note**: kuzu-memory is now a required dependency, always included with Claude MPM
202
- - **Auto-Install**: mcp-vector-search offers interactive installation on first use (pip/pipx choice)
203
- - Without pre-installed MCP dependencies, services install on-demand with user confirmation
192
+ - `[mcp]` - Additional MCP services (mcp-browser, mcp-ticketer) - most users won't need this
204
193
 
205
194
  **🎉 Pipx Support Now Fully Functional!** Recent improvements ensure complete compatibility:
206
195
  - ✅ Socket.IO daemon script path resolution (fixed)
207
- - ✅ Commands directory access (fixed)
196
+ - ✅ Commands directory access (fixed)
208
197
  - ✅ Resource files properly packaged for pipx environments
209
198
  - ✅ Python 3.13+ fully supported
210
199
 
200
+ ## 🤝 Recommended Partner Products
201
+
202
+ Claude MPM works excellently with these complementary MCP tools. While optional, we **strongly recommend** installing them for enhanced capabilities:
203
+
204
+ ### kuzu-memory - Advanced Memory Management
205
+
206
+ **What it does**: Provides persistent, project-specific knowledge graphs that enable agents to learn and retain context across sessions. Your agents will remember project patterns, architectural decisions, and important context automatically.
207
+
208
+ **Installation:**
209
+ ```bash
210
+ pipx install kuzu-memory
211
+ ```
212
+
213
+ **Benefits with Claude MPM:**
214
+ - 🧠 **Persistent Context**: Agents remember project-specific patterns and decisions across sessions
215
+ - 🎯 **Intelligent Prompts**: Automatically enriches agent prompts with relevant historical context
216
+ - 📊 **Knowledge Graphs**: Structured storage of project knowledge, not just flat memory
217
+ - 🔄 **Seamless Integration**: Works transparently in the background with zero configuration
218
+ - 💡 **Smart Learning**: Agents improve over time as they learn your project's patterns
219
+
220
+ **Perfect for**: Long-running projects, teams needing consistent context, complex codebases with deep architectural patterns.
221
+
222
+ **Learn more**: [kuzu-memory on PyPI](https://pypi.org/project/kuzu-memory/) | [GitHub Repository](https://github.com/bobmatnyc/kuzu-memory)
223
+
224
+ ---
225
+
226
+ ### mcp-vector-search - Semantic Code Search
227
+
228
+ **What it does**: Enables semantic code search across your entire codebase using AI embeddings. Find code by what it *does*, not just what it's *named*. Search for "authentication logic" and find relevant functions even if they're named differently.
229
+
230
+ **Installation:**
231
+ ```bash
232
+ pipx install mcp-vector-search
233
+ ```
234
+
235
+ **Benefits with Claude MPM:**
236
+ - 🔍 **Semantic Discovery**: Find code by intent and functionality, not just keywords
237
+ - 🎯 **Context-Aware**: Understand code relationships and similarities automatically
238
+ - ⚡ **Fast Indexing**: Efficient vector embeddings for large codebases
239
+ - 🔄 **Live Updates**: Automatically tracks code changes and updates index
240
+ - 📊 **Pattern Recognition**: Discover similar code patterns and potential refactoring opportunities
241
+
242
+ **Use with**: `/mpm-search "authentication logic"` command in Claude Code sessions or `claude-mpm search` CLI command.
243
+
244
+ **Perfect for**: Large codebases, discovering existing functionality, finding similar implementations, architectural exploration.
245
+
246
+ **Learn more**: [mcp-vector-search on PyPI](https://pypi.org/project/mcp-vector-search/) | [GitHub Repository](https://github.com/bobmatnyc/mcp-vector-search)
247
+
248
+ ---
249
+
250
+ ### Quick Setup - Both Tools
251
+
252
+ Install both recommended tools in one go:
253
+
254
+ ```bash
255
+ pipx install kuzu-memory
256
+ pipx install mcp-vector-search
257
+ ```
258
+
259
+ Then verify they're working:
260
+
261
+ ```bash
262
+ claude-mpm verify
263
+ ```
264
+
265
+ **That's it!** These tools integrate automatically with Claude MPM once installed. No additional configuration needed.
266
+
211
267
  **That's it!** See [QUICKSTART.md](QUICKSTART.md) for immediate usage or [docs/user/installation.md](docs/user/installation.md) for advanced options.
212
268
 
213
269
  ## Quick Usage
@@ -263,8 +319,7 @@ See [QUICKSTART.md](QUICKSTART.md) for complete usage examples.
263
319
  Following Phase 3 architectural simplification in v4.4.1, Claude MPM features:
264
320
 
265
321
  - **Streamlined Rich Interface**: Removed complex TUI system (~2,500 lines) for cleaner user experience
266
- - **Optional MCP Services**: mcp-vector-search and kuzu-memory with automatic fallback installation
267
- - **Persistent Knowledge System**: Project-specific kuzu-memory databases with intelligent prompt enrichment
322
+ - **MCP Integration**: Full support for Model Context Protocol services with automatic detection
268
323
  - **Service-Oriented Architecture**: Simplified five specialized service domains
269
324
  - **Interface-Based Contracts**: All services implement explicit interfaces
270
325
  - **Enhanced Performance**: ~3,700 lines removed for better startup time and maintainability
@@ -280,11 +335,26 @@ Claude MPM includes 15 specialized agents:
280
335
 
281
336
  #### Core Development
282
337
  - **Engineer** - Software development and implementation
283
- - **Research** - Code analysis and research
338
+ - **Research** - Code analysis and research
284
339
  - **Documentation** - Documentation creation and maintenance
285
340
  - **QA** - Testing and quality assurance
286
341
  - **Security** - Security analysis and implementation
287
342
 
343
+ #### Language-Specific Engineers
344
+ - **Python Engineer (v2.3.0)** - Type-safe, async-first Python with SOA patterns for non-trivial applications
345
+ - Service-oriented architecture with ABC interfaces for applications
346
+ - Lightweight script patterns for automation and one-off tasks
347
+ - Clear decision criteria for when to use DI/SOA vs simple functions
348
+ - Dependency injection containers with auto-resolution
349
+ - Use for: Web applications, microservices, data pipelines (DI/SOA) or scripts, CLI tools, notebooks (simple functions)
350
+
351
+ - **Rust Engineer (v1.1.0)** - Memory-safe, high-performance systems with trait-based service architecture
352
+ - Dependency injection with traits (constructor injection, trait objects)
353
+ - Service-oriented architecture patterns (repository, builder)
354
+ - Decision criteria for when to use DI/SOA vs simple code
355
+ - Async programming with tokio and zero-cost abstractions
356
+ - Use for: Web services, microservices (DI/SOA) or CLI tools, scripts (simple code)
357
+
288
358
  #### Operations & Infrastructure
289
359
  - **Ops** - Operations and deployment with advanced git commit authority and security verification (v2.2.2+)
290
360
  - **Version Control** - Git and version management
@@ -363,6 +433,72 @@ claude-mpm cleanup-memory
363
433
  claude-mpm cleanup-memory --days 7
364
434
  ```
365
435
 
436
+ ### Resume Log System
437
+
438
+ **NEW in v4.17.2** - Proactive context management for seamless session continuity.
439
+
440
+ The Resume Log System automatically generates structured 10k-token logs when approaching Claude's context window limits, enabling you to resume work without losing important context.
441
+
442
+ **Key Features**:
443
+ - 🎯 **Graduated Thresholds**: Warnings at 70% (60k buffer), 85% (30k buffer), and 95% (10k buffer)
444
+ - 📋 **Structured Logs**: 10k-token budget intelligently distributed across 7 key sections
445
+ - 🔄 **Seamless Resumption**: Automatically loads previous session context on startup
446
+ - 📁 **Human-Readable**: Markdown format for both Claude and human review
447
+ - ⚙️ **Zero-Configuration**: Works automatically with sensible defaults
448
+
449
+ **How It Works**:
450
+ 1. Monitor token usage continuously throughout session
451
+ 2. Display proactive warnings at 70%, 85%, and 95% thresholds
452
+ 3. Automatically generate resume log when approaching limits
453
+ 4. Load previous resume log when starting new session
454
+ 5. Continue work seamlessly with full context preservation
455
+
456
+ **Example Resume Log Structure**:
457
+ ```markdown
458
+ # Session Resume Log: 20251101_115000
459
+
460
+ ## Context Metrics (500 tokens)
461
+ - Token usage and percentage
462
+
463
+ ## Mission Summary (1,000 tokens)
464
+ - Overall goal and purpose
465
+
466
+ ## Accomplishments (2,000 tokens)
467
+ - What was completed
468
+
469
+ ## Key Findings (2,500 tokens)
470
+ - Important discoveries
471
+
472
+ ## Decisions & Rationale (1,500 tokens)
473
+ - Why choices were made
474
+
475
+ ## Next Steps (1,500 tokens)
476
+ - What to do next
477
+
478
+ ## Critical Context (1,000 tokens)
479
+ - Essential state, IDs, paths
480
+ ```
481
+
482
+ **Configuration** (`.claude-mpm/configuration.yaml`):
483
+ ```yaml
484
+ context_management:
485
+ enabled: true
486
+ budget_total: 200000
487
+ thresholds:
488
+ caution: 0.70 # First warning - plan transition
489
+ warning: 0.85 # Strong warning - wrap up
490
+ critical: 0.95 # Urgent - stop new work
491
+ resume_logs:
492
+ enabled: true
493
+ auto_generate: true
494
+ max_tokens: 10000
495
+ storage_dir: ".claude-mpm/resume-logs"
496
+ ```
497
+
498
+ **QA Status**: 40/41 tests passing (97.6% coverage), APPROVED FOR PRODUCTION ✅
499
+
500
+ See [docs/user/resume-logs.md](docs/user/resume-logs.md) for complete documentation.
501
+
366
502
  ### Real-Time Monitoring
367
503
  The `--monitor` flag opens a web dashboard showing live agent activity, file operations, and session management.
368
504
 
@@ -10,12 +10,11 @@ A powerful orchestration framework for **Claude Code (CLI)** that enables multi-
10
10
 
11
11
  - 🤖 **Multi-Agent System**: 15 specialized agents for comprehensive project management
12
12
  - 🎯 **Skills System**: 20 bundled skills with auto-linking, three-tier organization (bundled/user/project), and interactive configuration
13
- - 🧠 **Persistent Knowledge System**: Project-specific kuzu-memory integration for intelligent context retention
14
13
  - 🔄 **Session Management**: Resume previous sessions with `--resume`
14
+ - 📋 **Resume Log System**: Proactive context management with automatic 10k-token session logs at 70%/85%/95% thresholds
15
15
  - 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
16
- - 🔌 **Smart MCP Services**: Interactive auto-install for mcp-vector-search on first use (pip/pipx choice)
17
- - 🔍 **Semantic Code Search**: Optional vector search with graceful fallback to grep/glob
18
- - 📁 **Multi-Project Support**: Per-session working directories with persistent knowledge graphs
16
+ - 🔌 **MCP Integration**: Full support for Model Context Protocol services
17
+ - 📁 **Multi-Project Support**: Per-session working directories
19
18
  - 🔍 **Git Integration**: View diffs and track changes across projects
20
19
  - 🎯 **Smart Task Orchestration**: PM agent intelligently routes work to specialists
21
20
  - ⚡ **Simplified Architecture**: ~3,700 lines removed for better performance and maintainability
@@ -27,8 +26,8 @@ A powerful orchestration framework for **Claude Code (CLI)** that enables multi-
27
26
  # Basic installation
28
27
  pip install claude-mpm
29
28
 
30
- # Install with optional MCP services (recommended)
31
- pip install "claude-mpm[mcp]"
29
+ # Install with monitoring dashboard (recommended)
30
+ pip install "claude-mpm[monitor]"
32
31
  ```
33
32
 
34
33
  Or with pipx (recommended for isolated installation):
@@ -36,30 +35,87 @@ Or with pipx (recommended for isolated installation):
36
35
  # Basic installation
37
36
  pipx install claude-mpm
38
37
 
39
- # Install with optional MCP services (recommended)
40
- pipx install "claude-mpm[mcp]"
41
-
42
- # Install with all features
43
- pipx install "claude-mpm[mcp,monitor]"
44
-
45
- # Configure MCP for pipx users:
46
- claude-mpm mcp-pipx-config
38
+ # Install with monitoring dashboard (recommended)
39
+ pipx install "claude-mpm[monitor]"
47
40
  ```
48
41
 
49
42
  **💡 Optional Dependencies**:
50
- - `[mcp]` - Include MCP services (mcp-vector-search, mcp-browser, mcp-ticketer)
51
43
  - `[monitor]` - Full monitoring dashboard with Socket.IO and async web server components
52
- - **Combine both**: Use `"claude-mpm[mcp,monitor]"` to install all features
53
- - **Note**: kuzu-memory is now a required dependency, always included with Claude MPM
54
- - **Auto-Install**: mcp-vector-search offers interactive installation on first use (pip/pipx choice)
55
- - Without pre-installed MCP dependencies, services install on-demand with user confirmation
44
+ - `[mcp]` - Additional MCP services (mcp-browser, mcp-ticketer) - most users won't need this
56
45
 
57
46
  **🎉 Pipx Support Now Fully Functional!** Recent improvements ensure complete compatibility:
58
47
  - ✅ Socket.IO daemon script path resolution (fixed)
59
- - ✅ Commands directory access (fixed)
48
+ - ✅ Commands directory access (fixed)
60
49
  - ✅ Resource files properly packaged for pipx environments
61
50
  - ✅ Python 3.13+ fully supported
62
51
 
52
+ ## 🤝 Recommended Partner Products
53
+
54
+ Claude MPM works excellently with these complementary MCP tools. While optional, we **strongly recommend** installing them for enhanced capabilities:
55
+
56
+ ### kuzu-memory - Advanced Memory Management
57
+
58
+ **What it does**: Provides persistent, project-specific knowledge graphs that enable agents to learn and retain context across sessions. Your agents will remember project patterns, architectural decisions, and important context automatically.
59
+
60
+ **Installation:**
61
+ ```bash
62
+ pipx install kuzu-memory
63
+ ```
64
+
65
+ **Benefits with Claude MPM:**
66
+ - 🧠 **Persistent Context**: Agents remember project-specific patterns and decisions across sessions
67
+ - 🎯 **Intelligent Prompts**: Automatically enriches agent prompts with relevant historical context
68
+ - 📊 **Knowledge Graphs**: Structured storage of project knowledge, not just flat memory
69
+ - 🔄 **Seamless Integration**: Works transparently in the background with zero configuration
70
+ - 💡 **Smart Learning**: Agents improve over time as they learn your project's patterns
71
+
72
+ **Perfect for**: Long-running projects, teams needing consistent context, complex codebases with deep architectural patterns.
73
+
74
+ **Learn more**: [kuzu-memory on PyPI](https://pypi.org/project/kuzu-memory/) | [GitHub Repository](https://github.com/bobmatnyc/kuzu-memory)
75
+
76
+ ---
77
+
78
+ ### mcp-vector-search - Semantic Code Search
79
+
80
+ **What it does**: Enables semantic code search across your entire codebase using AI embeddings. Find code by what it *does*, not just what it's *named*. Search for "authentication logic" and find relevant functions even if they're named differently.
81
+
82
+ **Installation:**
83
+ ```bash
84
+ pipx install mcp-vector-search
85
+ ```
86
+
87
+ **Benefits with Claude MPM:**
88
+ - 🔍 **Semantic Discovery**: Find code by intent and functionality, not just keywords
89
+ - 🎯 **Context-Aware**: Understand code relationships and similarities automatically
90
+ - ⚡ **Fast Indexing**: Efficient vector embeddings for large codebases
91
+ - 🔄 **Live Updates**: Automatically tracks code changes and updates index
92
+ - 📊 **Pattern Recognition**: Discover similar code patterns and potential refactoring opportunities
93
+
94
+ **Use with**: `/mpm-search "authentication logic"` command in Claude Code sessions or `claude-mpm search` CLI command.
95
+
96
+ **Perfect for**: Large codebases, discovering existing functionality, finding similar implementations, architectural exploration.
97
+
98
+ **Learn more**: [mcp-vector-search on PyPI](https://pypi.org/project/mcp-vector-search/) | [GitHub Repository](https://github.com/bobmatnyc/mcp-vector-search)
99
+
100
+ ---
101
+
102
+ ### Quick Setup - Both Tools
103
+
104
+ Install both recommended tools in one go:
105
+
106
+ ```bash
107
+ pipx install kuzu-memory
108
+ pipx install mcp-vector-search
109
+ ```
110
+
111
+ Then verify they're working:
112
+
113
+ ```bash
114
+ claude-mpm verify
115
+ ```
116
+
117
+ **That's it!** These tools integrate automatically with Claude MPM once installed. No additional configuration needed.
118
+
63
119
  **That's it!** See [QUICKSTART.md](QUICKSTART.md) for immediate usage or [docs/user/installation.md](docs/user/installation.md) for advanced options.
64
120
 
65
121
  ## Quick Usage
@@ -115,8 +171,7 @@ See [QUICKSTART.md](QUICKSTART.md) for complete usage examples.
115
171
  Following Phase 3 architectural simplification in v4.4.1, Claude MPM features:
116
172
 
117
173
  - **Streamlined Rich Interface**: Removed complex TUI system (~2,500 lines) for cleaner user experience
118
- - **Optional MCP Services**: mcp-vector-search and kuzu-memory with automatic fallback installation
119
- - **Persistent Knowledge System**: Project-specific kuzu-memory databases with intelligent prompt enrichment
174
+ - **MCP Integration**: Full support for Model Context Protocol services with automatic detection
120
175
  - **Service-Oriented Architecture**: Simplified five specialized service domains
121
176
  - **Interface-Based Contracts**: All services implement explicit interfaces
122
177
  - **Enhanced Performance**: ~3,700 lines removed for better startup time and maintainability
@@ -132,11 +187,26 @@ Claude MPM includes 15 specialized agents:
132
187
 
133
188
  #### Core Development
134
189
  - **Engineer** - Software development and implementation
135
- - **Research** - Code analysis and research
190
+ - **Research** - Code analysis and research
136
191
  - **Documentation** - Documentation creation and maintenance
137
192
  - **QA** - Testing and quality assurance
138
193
  - **Security** - Security analysis and implementation
139
194
 
195
+ #### Language-Specific Engineers
196
+ - **Python Engineer (v2.3.0)** - Type-safe, async-first Python with SOA patterns for non-trivial applications
197
+ - Service-oriented architecture with ABC interfaces for applications
198
+ - Lightweight script patterns for automation and one-off tasks
199
+ - Clear decision criteria for when to use DI/SOA vs simple functions
200
+ - Dependency injection containers with auto-resolution
201
+ - Use for: Web applications, microservices, data pipelines (DI/SOA) or scripts, CLI tools, notebooks (simple functions)
202
+
203
+ - **Rust Engineer (v1.1.0)** - Memory-safe, high-performance systems with trait-based service architecture
204
+ - Dependency injection with traits (constructor injection, trait objects)
205
+ - Service-oriented architecture patterns (repository, builder)
206
+ - Decision criteria for when to use DI/SOA vs simple code
207
+ - Async programming with tokio and zero-cost abstractions
208
+ - Use for: Web services, microservices (DI/SOA) or CLI tools, scripts (simple code)
209
+
140
210
  #### Operations & Infrastructure
141
211
  - **Ops** - Operations and deployment with advanced git commit authority and security verification (v2.2.2+)
142
212
  - **Version Control** - Git and version management
@@ -215,6 +285,72 @@ claude-mpm cleanup-memory
215
285
  claude-mpm cleanup-memory --days 7
216
286
  ```
217
287
 
288
+ ### Resume Log System
289
+
290
+ **NEW in v4.17.2** - Proactive context management for seamless session continuity.
291
+
292
+ The Resume Log System automatically generates structured 10k-token logs when approaching Claude's context window limits, enabling you to resume work without losing important context.
293
+
294
+ **Key Features**:
295
+ - 🎯 **Graduated Thresholds**: Warnings at 70% (60k buffer), 85% (30k buffer), and 95% (10k buffer)
296
+ - 📋 **Structured Logs**: 10k-token budget intelligently distributed across 7 key sections
297
+ - 🔄 **Seamless Resumption**: Automatically loads previous session context on startup
298
+ - 📁 **Human-Readable**: Markdown format for both Claude and human review
299
+ - ⚙️ **Zero-Configuration**: Works automatically with sensible defaults
300
+
301
+ **How It Works**:
302
+ 1. Monitor token usage continuously throughout session
303
+ 2. Display proactive warnings at 70%, 85%, and 95% thresholds
304
+ 3. Automatically generate resume log when approaching limits
305
+ 4. Load previous resume log when starting new session
306
+ 5. Continue work seamlessly with full context preservation
307
+
308
+ **Example Resume Log Structure**:
309
+ ```markdown
310
+ # Session Resume Log: 20251101_115000
311
+
312
+ ## Context Metrics (500 tokens)
313
+ - Token usage and percentage
314
+
315
+ ## Mission Summary (1,000 tokens)
316
+ - Overall goal and purpose
317
+
318
+ ## Accomplishments (2,000 tokens)
319
+ - What was completed
320
+
321
+ ## Key Findings (2,500 tokens)
322
+ - Important discoveries
323
+
324
+ ## Decisions & Rationale (1,500 tokens)
325
+ - Why choices were made
326
+
327
+ ## Next Steps (1,500 tokens)
328
+ - What to do next
329
+
330
+ ## Critical Context (1,000 tokens)
331
+ - Essential state, IDs, paths
332
+ ```
333
+
334
+ **Configuration** (`.claude-mpm/configuration.yaml`):
335
+ ```yaml
336
+ context_management:
337
+ enabled: true
338
+ budget_total: 200000
339
+ thresholds:
340
+ caution: 0.70 # First warning - plan transition
341
+ warning: 0.85 # Strong warning - wrap up
342
+ critical: 0.95 # Urgent - stop new work
343
+ resume_logs:
344
+ enabled: true
345
+ auto_generate: true
346
+ max_tokens: 10000
347
+ storage_dir: ".claude-mpm/resume-logs"
348
+ ```
349
+
350
+ **QA Status**: 40/41 tests passing (97.6% coverage), APPROVED FOR PRODUCTION ✅
351
+
352
+ See [docs/user/resume-logs.md](docs/user/resume-logs.md) for complete documentation.
353
+
218
354
  ### Real-Time Monitoring
219
355
  The `--monitor` flag opens a web dashboard showing live agent activity, file operations, and session management.
220
356
 
@@ -0,0 +1 @@
1
+ 4.20.4
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "claude-mpm"
7
- version = "4.17.0"
7
+ version = "4.20.4"
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"
11
11
  keywords = [ "claude", "orchestration", "multi-agent", "ticket-management",]
12
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", "toml>=0.10.2", "packaging>=21.0", "pydantic>=2.0.0", "pydantic-settings>=2.0.0", "rich>=13.0.0", "pyee>=13.0.0", "importlib-resources>=5.0; python_version < '3.9'", "pathspec>=0.11.0", "kuzu-memory>=1.1.5",]
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.14.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", "toml>=0.10.2", "packaging>=21.0", "pydantic>=2.0.0", "pydantic-settings>=2.0.0", "rich>=13.0.0", "pyee>=13.0.0", "importlib-resources>=5.0; python_version < '3.9'", "pathspec>=0.11.0", "kuzu-memory>=1.1.5",]
14
14
  [[project.authors]]
15
15
  name = "Bob Matsuoka"
16
16
  email = "bob@matsuoka.com"
@@ -31,7 +31,7 @@ Documentation = "https://github.com/bobmatnyc/claude-mpm/blob/main/README.md"
31
31
  mcp = [ "mcp>=0.1.0", "mcp-vector-search>=0.1.0", "mcp-browser>=0.1.0", "mcp-ticketer>=0.1.0",]
32
32
  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",]
33
33
  docs = [ "sphinx>=7.2.0", "sphinx-rtd-theme>=1.3.0", "sphinx-autobuild>=2021.3.14",]
34
- monitor = [ "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",]
34
+ monitor = [ "python-socketio>=5.14.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",]
35
35
  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",]
36
36
  data-processing = [ "pandas>=2.1.0", "openpyxl>=3.1.0", "xlsxwriter>=3.1.0", "numpy>=1.24.0", "pyarrow>=14.0.0", "dask>=2023.12.0", "polars>=0.19.0", "xlrd>=2.0.0", "xlwt>=1.3.0", "csvkit>=1.3.0", "tabulate>=0.9.0", "python-dateutil>=2.8.0", "lxml>=4.9.0", "sqlalchemy>=2.0.0", "psycopg2-binary>=2.9.0", "pymongo>=4.5.0", "redis>=5.0.0", "beautifulsoup4>=4.12.0", "jsonschema>=4.19.0",]
37
37
 
@@ -84,7 +84,7 @@ ignore-imports = false
84
84
 
85
85
  [tool.commitizen]
86
86
  name = "cz_conventional_commits"
87
- version = "4.17.0"
87
+ version = "4.20.4"
88
88
  version_files = [ "VERSION", "src/claude_mpm/VERSION", "package.json:version",]
89
89
  tag_format = "v$version"
90
90
  update_changelog_on_bump = true
@@ -97,7 +97,7 @@ changelog_incremental = true
97
97
  "src/claude_mpm/skills/skill_manager.py" = [ "PTH123",]
98
98
 
99
99
  [tool.setuptools.package-data]
100
- claude_mpm = [ "VERSION", "BUILD_NUMBER", "scripts/*", "scripts/*.sh", "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", "hooks/**/*.py", "hooks/**/*.sh", "hooks/claude_hooks/*", "hooks/claude_hooks/**/*",]
100
+ claude_mpm = [ "VERSION", "BUILD_NUMBER", "scripts/*", "scripts/*.sh", "commands/*.md", "skills/bundled/*.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", "hooks/**/*.py", "hooks/**/*.sh", "hooks/claude_hooks/*", "hooks/claude_hooks/**/*",]
101
101
 
102
102
  [tool.pytest.ini_options]
103
103
  testpaths = [ "tests",]
@@ -0,0 +1 @@
1
+ 4.20.4