claude-mpm 3.4.27__tar.gz → 3.5.1__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 (259) hide show
  1. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/CLAUDE.md +61 -0
  2. {claude_mpm-3.4.27/src/claude_mpm.egg-info → claude_mpm-3.5.1}/PKG-INFO +28 -20
  3. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/README.md +25 -17
  4. claude_mpm-3.5.1/VERSION +1 -0
  5. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/pyproject.toml +2 -2
  6. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/requirements.txt +3 -2
  7. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/setup.py +2 -4
  8. claude_mpm-3.5.1/src/claude_mpm/VERSION +1 -0
  9. claude_mpm-3.5.1/src/claude_mpm/agents/INSTRUCTIONS.md +235 -0
  10. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/agent_loader.py +283 -57
  11. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/agent_loader_integration.py +6 -9
  12. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/base_agent.json +2 -1
  13. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/base_agent_loader.py +1 -1
  14. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli/__init__.py +5 -7
  15. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli/commands/__init__.py +0 -2
  16. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli/commands/agents.py +1 -1
  17. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli/commands/memory.py +1 -1
  18. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli/commands/run.py +12 -0
  19. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli/parser.py +0 -13
  20. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli/utils.py +1 -1
  21. claude_mpm-3.5.1/src/claude_mpm/config/__init__.py +47 -0
  22. claude_mpm-3.5.1/src/claude_mpm/config/agent_config.py +348 -0
  23. claude_mpm-3.5.1/src/claude_mpm/config/paths.py +322 -0
  24. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/constants.py +0 -1
  25. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/__init__.py +2 -5
  26. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/agent_registry.py +63 -17
  27. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/claude_runner.py +354 -43
  28. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/config.py +7 -1
  29. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/config_aliases.py +4 -3
  30. claude_mpm-3.5.1/src/claude_mpm/core/config_paths.py +151 -0
  31. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/factories.py +4 -50
  32. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/logger.py +11 -13
  33. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/service_registry.py +2 -2
  34. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/agent-inference.js +101 -25
  35. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/event-processor.js +3 -2
  36. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/hooks/claude_hooks/hook_handler.py +343 -83
  37. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/hooks/memory_integration_hook.py +1 -1
  38. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/init.py +37 -6
  39. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/scripts/socketio_daemon.py +6 -2
  40. claude_mpm-3.5.1/src/claude_mpm/services/__init__.py +119 -0
  41. claude_mpm-3.5.1/src/claude_mpm/services/agents/__init__.py +85 -0
  42. claude_mpm-3.5.1/src/claude_mpm/services/agents/deployment/__init__.py +21 -0
  43. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/deployment}/agent_deployment.py +192 -41
  44. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/deployment}/agent_lifecycle_manager.py +11 -10
  45. claude_mpm-3.5.1/src/claude_mpm/services/agents/loading/__init__.py +11 -0
  46. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/loading}/agent_profile_loader.py +9 -8
  47. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/loading}/base_agent_manager.py +2 -2
  48. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/loading}/framework_agent_loader.py +116 -40
  49. claude_mpm-3.5.1/src/claude_mpm/services/agents/management/__init__.py +9 -0
  50. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/management}/agent_management_service.py +6 -5
  51. claude_mpm-3.5.1/src/claude_mpm/services/agents/memory/__init__.py +21 -0
  52. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/memory}/agent_memory_manager.py +3 -3
  53. claude_mpm-3.5.1/src/claude_mpm/services/agents/registry/__init__.py +29 -0
  54. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/registry}/agent_registry.py +101 -16
  55. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/registry}/deployed_agent_discovery.py +12 -2
  56. claude_mpm-3.4.27/src/claude_mpm/services/agent_modification_tracker.py → claude_mpm-3.5.1/src/claude_mpm/services/agents/registry/modification_tracker.py +6 -5
  57. claude_mpm-3.5.1/src/claude_mpm/services/async_session_logger.py +584 -0
  58. claude_mpm-3.5.1/src/claude_mpm/services/claude_session_logger.py +299 -0
  59. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/content_assembler.py +2 -2
  60. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/agents.py +17 -17
  61. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/claude_pm_init.py +3 -3
  62. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/core_responsibilities.py +1 -1
  63. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/orchestration_principles.py +1 -1
  64. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/todo_task_tools.py +19 -24
  65. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/troubleshooting.py +1 -1
  66. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator.py +4 -2
  67. claude_mpm-3.5.1/src/claude_mpm/services/memory/__init__.py +17 -0
  68. claude_mpm-3.4.27/src/claude_mpm/services/memory_builder.py → claude_mpm-3.5.1/src/claude_mpm/services/memory/builder.py +3 -3
  69. claude_mpm-3.5.1/src/claude_mpm/services/memory/cache/__init__.py +14 -0
  70. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/memory/cache}/shared_prompt_cache.py +1 -1
  71. claude_mpm-3.5.1/src/claude_mpm/services/memory/cache/simple_cache.py +317 -0
  72. claude_mpm-3.4.27/src/claude_mpm/services/memory_optimizer.py → claude_mpm-3.5.1/src/claude_mpm/services/memory/optimizer.py +1 -1
  73. claude_mpm-3.4.27/src/claude_mpm/services/memory_router.py → claude_mpm-3.5.1/src/claude_mpm/services/memory/router.py +1 -1
  74. claude_mpm-3.5.1/src/claude_mpm/services/optimized_hook_service.py +542 -0
  75. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/project_registry.py +14 -8
  76. claude_mpm-3.5.1/src/claude_mpm/services/response_tracker.py +237 -0
  77. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/ticketing_service_original.py +4 -2
  78. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/version_control/branch_strategy.py +3 -1
  79. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/utils/paths.py +12 -10
  80. claude_mpm-3.5.1/src/claude_mpm/utils/session_logging.py +114 -0
  81. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/validation/agent_validator.py +2 -1
  82. {claude_mpm-3.4.27 → claude_mpm-3.5.1/src/claude_mpm.egg-info}/PKG-INFO +28 -20
  83. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm.egg-info/SOURCES.txt +34 -57
  84. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm.egg-info/requires.txt +2 -2
  85. claude_mpm-3.4.27/VERSION +0 -1
  86. claude_mpm-3.4.27/src/claude_mpm/VERSION +0 -1
  87. claude_mpm-3.4.27/src/claude_mpm/agents/backups/INSTRUCTIONS.md +0 -352
  88. claude_mpm-3.4.27/src/claude_mpm/cli/commands/ui.py +0 -57
  89. claude_mpm-3.4.27/src/claude_mpm/config/__init__.py +0 -5
  90. claude_mpm-3.4.27/src/claude_mpm/core/simple_runner.py +0 -1046
  91. claude_mpm-3.4.27/src/claude_mpm/hooks/builtin/__init__.py +0 -1
  92. claude_mpm-3.4.27/src/claude_mpm/hooks/builtin/logging_hook_example.py +0 -165
  93. claude_mpm-3.4.27/src/claude_mpm/hooks/builtin/memory_hooks_example.py +0 -67
  94. claude_mpm-3.4.27/src/claude_mpm/hooks/builtin/mpm_command_hook.py +0 -125
  95. claude_mpm-3.4.27/src/claude_mpm/hooks/builtin/post_delegation_hook_example.py +0 -124
  96. claude_mpm-3.4.27/src/claude_mpm/hooks/builtin/pre_delegation_hook_example.py +0 -125
  97. claude_mpm-3.4.27/src/claude_mpm/hooks/builtin/submit_hook_example.py +0 -100
  98. claude_mpm-3.4.27/src/claude_mpm/hooks/builtin/ticket_extraction_hook_example.py +0 -237
  99. claude_mpm-3.4.27/src/claude_mpm/hooks/builtin/todo_agent_prefix_hook.py +0 -240
  100. claude_mpm-3.4.27/src/claude_mpm/hooks/builtin/workflow_start_hook.py +0 -181
  101. claude_mpm-3.4.27/src/claude_mpm/orchestration/__init__.py +0 -6
  102. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/direct_orchestrator.py +0 -195
  103. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/factory.py +0 -215
  104. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/hook_enabled_orchestrator.py +0 -188
  105. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/hook_integration_example.py +0 -178
  106. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/interactive_subprocess_orchestrator.py +0 -826
  107. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/orchestrator.py +0 -501
  108. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/pexpect_orchestrator.py +0 -252
  109. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/pty_orchestrator.py +0 -270
  110. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/simple_orchestrator.py +0 -82
  111. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/subprocess_orchestrator.py +0 -801
  112. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/system_prompt_orchestrator.py +0 -278
  113. claude_mpm-3.4.27/src/claude_mpm/orchestration/archive/wrapper_orchestrator.py +0 -187
  114. claude_mpm-3.4.27/src/claude_mpm/schemas/workflow_validator.py +0 -411
  115. claude_mpm-3.4.27/src/claude_mpm/services/__init__.py +0 -51
  116. claude_mpm-3.4.27/src/claude_mpm/services/parent_directory_manager/__init__.py +0 -577
  117. claude_mpm-3.4.27/src/claude_mpm/services/parent_directory_manager/backup_manager.py +0 -258
  118. claude_mpm-3.4.27/src/claude_mpm/services/parent_directory_manager/config_manager.py +0 -210
  119. claude_mpm-3.4.27/src/claude_mpm/services/parent_directory_manager/deduplication_manager.py +0 -279
  120. claude_mpm-3.4.27/src/claude_mpm/services/parent_directory_manager/framework_protector.py +0 -143
  121. claude_mpm-3.4.27/src/claude_mpm/services/parent_directory_manager/operations.py +0 -186
  122. claude_mpm-3.4.27/src/claude_mpm/services/parent_directory_manager/state_manager.py +0 -624
  123. claude_mpm-3.4.27/src/claude_mpm/services/parent_directory_manager/template_deployer.py +0 -579
  124. claude_mpm-3.4.27/src/claude_mpm/services/parent_directory_manager/validation_manager.py +0 -378
  125. claude_mpm-3.4.27/src/claude_mpm/services/parent_directory_manager/version_control_helper.py +0 -339
  126. claude_mpm-3.4.27/src/claude_mpm/services/parent_directory_manager/version_manager.py +0 -222
  127. claude_mpm-3.4.27/src/claude_mpm/ui/__init__.py +0 -1
  128. claude_mpm-3.4.27/src/claude_mpm/ui/rich_terminal_ui.py +0 -295
  129. claude_mpm-3.4.27/src/claude_mpm/ui/terminal_ui.py +0 -328
  130. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/LICENSE +0 -0
  131. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/MANIFEST.in +0 -0
  132. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/claude-mpm +0 -0
  133. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/scripts/run_mpm.py +0 -0
  134. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/scripts/ticket +0 -0
  135. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/setup.cfg +0 -0
  136. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/__init__.py +0 -0
  137. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/__main__.py +0 -0
  138. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/BASE_AGENT_TEMPLATE.md +0 -0
  139. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/__init__.py +0 -0
  140. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/agents_metadata.py +0 -0
  141. {claude_mpm-3.4.27/src/claude_mpm/agents → claude_mpm-3.5.1/src/claude_mpm/agents/backups}/INSTRUCTIONS.md +0 -0
  142. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/schema/agent_schema.json +0 -0
  143. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/system_agent_config.py +0 -0
  144. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/.claude-mpm/memories/README.md +0 -0
  145. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/.claude-mpm/memories/version_control_agent.md +0 -0
  146. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/__init__.py +0 -0
  147. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/backup/data_engineer_agent_20250726_234551.json +0 -0
  148. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/backup/documentation_agent_20250726_234551.json +0 -0
  149. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/backup/engineer_agent_20250726_234551.json +0 -0
  150. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/backup/ops_agent_20250726_234551.json +0 -0
  151. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/backup/qa_agent_20250726_234551.json +0 -0
  152. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/backup/research_agent_20250726_234551.json +0 -0
  153. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/backup/security_agent_20250726_234551.json +0 -0
  154. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/backup/version_control_agent_20250726_234551.json +0 -0
  155. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/data_engineer.json +0 -0
  156. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/documentation.json +0 -0
  157. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/engineer.json +0 -0
  158. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/ops.json +0 -0
  159. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/pm.json +0 -0
  160. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/qa.json +0 -0
  161. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/research.json +0 -0
  162. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/security.json +0 -0
  163. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/test_integration.json +0 -0
  164. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/agents/templates/version_control.json +0 -0
  165. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli/commands/info.py +0 -0
  166. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli/commands/monitor.py +0 -0
  167. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli/commands/tickets.py +0 -0
  168. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli_module/__init__.py +0 -0
  169. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli_module/args.py +0 -0
  170. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli_module/commands.py +0 -0
  171. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/cli_module/migration_example.py +0 -0
  172. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/config/socketio_config.py +0 -0
  173. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/agent_name_normalizer.py +0 -0
  174. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/agent_session_manager.py +0 -0
  175. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/base_service.py +0 -0
  176. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/container.py +0 -0
  177. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/framework_loader.py +0 -0
  178. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/hook_manager.py +0 -0
  179. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/injectable_service.py +0 -0
  180. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/interfaces.py +0 -0
  181. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/minimal_framework_loader.py +0 -0
  182. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/mixins.py +0 -0
  183. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/pm_hook_interceptor.py +0 -0
  184. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/session_manager.py +0 -0
  185. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/socketio_pool.py +0 -0
  186. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/core/tool_access_control.py +0 -0
  187. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/index.html +0 -0
  188. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/open_dashboard.py +0 -0
  189. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/css/dashboard.css +0 -0
  190. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/event-viewer.js +0 -0
  191. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/export-manager.js +0 -0
  192. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/file-tool-tracker.js +0 -0
  193. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/hud-library-loader.js +0 -0
  194. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/hud-manager.js +0 -0
  195. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/hud-visualizer.js +0 -0
  196. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/module-viewer.js +0 -0
  197. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/session-manager.js +0 -0
  198. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/socket-manager.js +0 -0
  199. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/ui-state-manager.js +0 -0
  200. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/components/working-directory.js +0 -0
  201. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/dashboard-original.js +0 -0
  202. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/dashboard.js +0 -0
  203. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/static/js/socket-client.js +0 -0
  204. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/templates/index.html +0 -0
  205. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/dashboard/test_dashboard.html +0 -0
  206. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/deployment_paths.py +0 -0
  207. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/experimental/cli_enhancements.py +0 -0
  208. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/generators/__init__.py +0 -0
  209. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/generators/agent_profile_generator.py +0 -0
  210. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/hooks/__init__.py +0 -0
  211. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/hooks/base_hook.py +0 -0
  212. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/hooks/claude_hooks/__init__.py +0 -0
  213. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/hooks/claude_hooks/hook_wrapper.sh +0 -0
  214. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/hooks/tool_call_interceptor.py +0 -0
  215. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/hooks/validation_hooks.py +0 -0
  216. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/models/__init__.py +0 -0
  217. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/models/agent_definition.py +0 -0
  218. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/deployment}/agent_versioning.py +0 -0
  219. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/management}/agent_capabilities_generator.py +0 -0
  220. {claude_mpm-3.4.27/src/claude_mpm/services → claude_mpm-3.5.1/src/claude_mpm/services/agents/memory}/agent_persistence_service.py +0 -0
  221. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/exceptions.py +0 -0
  222. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/__init__.py +0 -0
  223. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/content_validator.py +0 -0
  224. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/deployment_manager.py +0 -0
  225. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/__init__.py +0 -0
  226. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/delegation_constraints.py +0 -0
  227. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/environment_config.py +0 -0
  228. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/footer.py +0 -0
  229. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/header.py +0 -0
  230. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/role_designation.py +0 -0
  231. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_generators/subprocess_validation.py +0 -0
  232. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/section_manager.py +0 -0
  233. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/framework_claude_md_generator/version_manager.py +0 -0
  234. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/health_monitor.py +0 -0
  235. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/hook_service.py +0 -0
  236. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/project_analyzer.py +0 -0
  237. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/recovery_manager.py +0 -0
  238. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/socketio_client_manager.py +0 -0
  239. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/socketio_server.py +0 -0
  240. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/standalone_socketio_server.py +0 -0
  241. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/ticket_manager.py +0 -0
  242. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/ticket_manager_di.py +0 -0
  243. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/version_control/__init__.py +0 -0
  244. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/version_control/conflict_resolution.py +0 -0
  245. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/version_control/git_operations.py +0 -0
  246. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/services/version_control/semantic_versioning.py +0 -0
  247. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/ticket_wrapper.py +0 -0
  248. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/utils/__init__.py +0 -0
  249. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/utils/config_manager.py +0 -0
  250. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/utils/dependency_manager.py +0 -0
  251. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/utils/error_handler.py +0 -0
  252. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/utils/framework_detection.py +0 -0
  253. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/utils/import_migration_example.py +0 -0
  254. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/utils/imports.py +0 -0
  255. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/utils/path_operations.py +0 -0
  256. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm/validation/__init__.py +0 -0
  257. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm.egg-info/dependency_links.txt +0 -0
  258. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm.egg-info/entry_points.txt +0 -0
  259. {claude_mpm-3.4.27 → claude_mpm-3.5.1}/src/claude_mpm.egg-info/top_level.txt +0 -0
@@ -14,6 +14,7 @@ Claude MPM (Multi-Agent Project Manager) is a framework for Claude that enables
14
14
  - 📊 **Logging**: See [docs/LOGGING.md](docs/LOGGING.md) for comprehensive logging guide
15
15
  - 🔢 **Versioning**: See [docs/VERSIONING.md](docs/VERSIONING.md) for version management
16
16
  - 🧠 **Memory System**: See [docs/MEMORY.md](docs/MEMORY.md) for agent memory management
17
+ - 🤖 **Local Agents**: See [docs/PROJECT_AGENTS.md](docs/PROJECT_AGENTS.md) for local agent deployment
17
18
 
18
19
  ## Development Guidelines
19
20
 
@@ -44,6 +45,8 @@ See [docs/QA.md](docs/QA.md) for detailed testing procedures.
44
45
  1. **Agent System** (`src/claude_mpm/agents/`)
45
46
  - Templates for different agent roles
46
47
  - Dynamic discovery via `AgentRegistry`
48
+ - Three-tier precedence: PROJECT > USER > SYSTEM
49
+ - Local project agents in `.claude-mpm/agents/`
47
50
 
48
51
  2. **Memory System** (`src/claude_mpm/services/`)
49
52
  - Persistent agent learning and knowledge storage
@@ -71,6 +74,64 @@ See [docs/QA.md](docs/QA.md) for detailed testing procedures.
71
74
 
72
75
  # Non-interactive mode
73
76
  ./claude-mpm run -i "Your prompt here" --non-interactive
77
+
78
+ # Create a local project agent
79
+ mkdir -p .claude-mpm/agents
80
+ cat > .claude-mpm/agents/custom_engineer.md << 'EOF'
81
+ ---
82
+ description: Custom engineer for this project
83
+ version: 2.0.0
84
+ tools: ["project_tools", "custom_debugger"]
85
+ ---
86
+
87
+ # Custom Engineer Agent
88
+
89
+ This engineer has specific knowledge about our project architecture.
90
+ EOF
91
+
92
+ # List agents by tier to see which version is being used
93
+ ./claude-mpm agents list --by-tier
94
+ ```
95
+
96
+ ## Local Agent Deployment
97
+
98
+ Claude MPM supports project-specific agents that take precedence over system and user agents:
99
+
100
+ ### Agent Precedence (Highest to Lowest)
101
+ 1. **PROJECT** - `.claude-mpm/agents/` in your project
102
+ 2. **USER** - `~/.claude-mpm/agents/` in your home directory
103
+ 3. **SYSTEM** - Built-in framework agents
104
+
105
+ ### Creating Local Agents
106
+
107
+ Create project-specific agents to:
108
+ - Override system agents with project-specific knowledge
109
+ - Add custom agents for your domain/workflow
110
+ - Test new agent configurations before promoting them
111
+
112
+ ```bash
113
+ # Create project agents directory
114
+ mkdir -p .claude-mpm/agents
115
+
116
+ # Example: Custom QA agent with project-specific rules
117
+ cat > .claude-mpm/agents/qa.json << 'EOF'
118
+ {
119
+ "agent_id": "qa",
120
+ "version": "2.0.0",
121
+ "metadata": {
122
+ "name": "Project QA Agent",
123
+ "description": "QA agent with project-specific testing protocols"
124
+ },
125
+ "capabilities": {
126
+ "model": "claude-sonnet-4-20250514",
127
+ "tools": ["custom_test_runner", "project_validator"]
128
+ },
129
+ "instructions": "# Project QA Agent\n\nYou are a QA specialist for this specific project..."
130
+ }
131
+ EOF
132
+
133
+ # Check which agents are available at each tier
134
+ ./claude-mpm agents list --by-tier
74
135
  ```
75
136
 
76
137
  ## Common Issues
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-mpm
3
- Version: 3.4.27
3
+ Version: 3.5.1
4
4
  Summary: Claude Multi-agent Project Manager - Clean orchestration with ticket management
5
5
  Home-page: https://github.com/bobmatnyc/claude-mpm
6
6
  Author: Claude MPM Team
@@ -22,7 +22,6 @@ License-File: LICENSE
22
22
  Requires-Dist: ai-trackdown-pytools>=1.4.0
23
23
  Requires-Dist: pyyaml>=6.0
24
24
  Requires-Dist: python-dotenv>=0.19.0
25
- Requires-Dist: rich>=13.0.0
26
25
  Requires-Dist: click>=8.0.0
27
26
  Requires-Dist: pexpect>=4.8.0
28
27
  Requires-Dist: psutil>=5.9.0
@@ -36,7 +35,8 @@ Requires-Dist: python-socketio>=5.11.0
36
35
  Requires-Dist: aiohttp>=3.9.0
37
36
  Requires-Dist: aiohttp-cors>=0.8.0
38
37
  Requires-Dist: python-engineio>=4.8.0
39
- Requires-Dist: urwid>=2.1.0
38
+ Requires-Dist: python-frontmatter>=1.0.0
39
+ Requires-Dist: mistune>=3.0.0
40
40
  Provides-Extra: dev
41
41
  Requires-Dist: pytest>=7.0; extra == "dev"
42
42
  Requires-Dist: pytest-asyncio; extra == "dev"
@@ -58,7 +58,7 @@ A powerful orchestration framework for Claude Code that enables multi-agent work
58
58
 
59
59
  ## Features
60
60
 
61
- - 🤖 **Multi-Agent System**: Automatically delegates tasks to specialized agents (PM, Research, Engineer, QA, Documentation, Security, Ops, Data Engineer)
61
+ - 🤖 **Multi-Agent System**: Automatically delegates tasks to specialized agents (PM, Research, Engineer, QA, Documentation, Security, Ops, Data Engineer, Test Integration, Version Control)
62
62
  - 🧠 **Agent Memory System**: Persistent learning with project-specific knowledge retention
63
63
  - 🔄 **Session Management**: Resume previous sessions with `--resume`
64
64
  - 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
@@ -72,8 +72,8 @@ A powerful orchestration framework for Claude Code that enables multi-agent work
72
72
  # Install from PyPI
73
73
  pip install claude-mpm
74
74
 
75
- # Or with monitoring support
76
- pip install "claude-mpm[monitor]"
75
+ # Install with development dependencies
76
+ pip install "claude-mpm[dev]"
77
77
  ```
78
78
 
79
79
  ## Basic Usage
@@ -104,6 +104,9 @@ The PM agent automatically delegates work to specialized agents:
104
104
  - **Documentation**: Docs and guides
105
105
  - **Security**: Security analysis
106
106
  - **Ops**: Deployment and infrastructure
107
+ - **Data Engineer**: Data pipelines and AI integrations
108
+ - **Test Integration**: E2E testing and cross-system validation
109
+ - **Version Control**: Git workflows and release management
107
110
 
108
111
  ### Session Management
109
112
  - All work is tracked in persistent sessions
@@ -127,6 +130,9 @@ claude-mpm memory status
127
130
 
128
131
  # Add specific learning
129
132
  claude-mpm memory add engineer pattern "Always use async/await for I/O"
133
+
134
+ # Start with monitoring dashboard
135
+ claude-mpm run --monitor
130
136
  ```
131
137
 
132
138
  See [docs/MEMORY.md](docs/MEMORY.md) for comprehensive memory system documentation.
@@ -138,39 +144,41 @@ The `--monitor` flag opens a web dashboard showing:
138
144
  - Tool usage and results
139
145
  - Session management UI
140
146
 
141
- See [docs/monitoring.md](docs/monitoring.md) for full monitoring guide.
147
+ See [docs/developer/monitoring.md](docs/developer/monitoring.md) for full monitoring guide.
142
148
 
143
149
 
144
150
  ## Documentation
145
151
 
146
152
  - **[Quick Start Guide](QUICKSTART.md)** - Get running in 5 minutes
147
153
  - **[Agent Memory System](docs/MEMORY.md)** - Comprehensive memory documentation
148
- - **[Monitoring Dashboard](docs/monitoring.md)** - Real-time monitoring features
154
+ - **[Monitoring Dashboard](docs/developer/monitoring.md)** - Real-time monitoring features
149
155
  - **[Project Structure](docs/STRUCTURE.md)** - Codebase organization
150
156
  - **[Deployment Guide](docs/DEPLOY.md)** - Publishing and versioning
151
157
  - **[User Guide](docs/user/)** - Detailed usage documentation
152
158
  - **[Developer Guide](docs/developer/)** - Architecture and API reference
153
159
 
154
- ## Recent Updates (v3.4.0)
160
+ ## Recent Updates (v3.4.27)
155
161
 
156
- ### Agent Memory System
157
- - **Project-Specific Memory Generation**: Automatic analysis of project characteristics
158
- - **Memory Initialization Command**: New `/mpm memory init` for quick project onboarding
159
- - **Enhanced Documentation Processing**: Dynamic file discovery based on project type
160
- - **Improved Memory Templates**: Clean section headers with programmatic limit enforcement
162
+ ### Core System Enhancements
163
+ - **Project Structure Reorganization**: Centralized path management with ClaudeMPMPaths enum
164
+ - **Agent Services Hierarchy**: Reorganized agent and memory services into hierarchical structures
165
+ - **Response Logging Improvements**: Flat structure logging without session_ prefix
166
+ - **Memory System Expansion**: Added data_engineer and test_integration agents with specialized keywords
167
+ - **Path Management System**: Implemented centralized configuration path handling
161
168
 
162
- ### Project Organization
163
- - **Deep Clean**: Comprehensive project structure cleanup for publishing readiness
164
- - **Documentation Archives**: Historical reports organized in docs/archive/
165
- - **Test Organization**: All tests properly relocated to /tests/ directory
166
- - **Enhanced .gitignore**: Prevents temporary and debug file commits
169
+ ### Project Cleanup & Organization
170
+ - **Test File Migration**: Moved 66 test files from scripts/ to tests/ directory
171
+ - **Documentation Archives**: Archived 35+ QA reports to docs/archive/
172
+ - **Obsolete Directory Removal**: Cleaned up orchestration, docker, security, and terminal_wrapper directories
173
+ - **Agent Registry Caching**: Enhanced performance with intelligent caching mechanisms
174
+ - **Improved TodoWrite Integration**: Enhanced agent prefix guidelines across all agent templates
167
175
 
168
176
  See [CHANGELOG.md](CHANGELOG.md) for full history.
169
177
 
170
178
  ## Development
171
179
 
172
180
  ### Contributing
173
- See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
181
+ Contributions are welcome! Please see our [project structure guide](docs/STRUCTURE.md) and follow the established patterns.
174
182
 
175
183
  ### Project Structure
176
184
  See [docs/STRUCTURE.md](docs/STRUCTURE.md) for codebase organization.
@@ -6,7 +6,7 @@ A powerful orchestration framework for Claude Code that enables multi-agent work
6
6
 
7
7
  ## Features
8
8
 
9
- - 🤖 **Multi-Agent System**: Automatically delegates tasks to specialized agents (PM, Research, Engineer, QA, Documentation, Security, Ops, Data Engineer)
9
+ - 🤖 **Multi-Agent System**: Automatically delegates tasks to specialized agents (PM, Research, Engineer, QA, Documentation, Security, Ops, Data Engineer, Test Integration, Version Control)
10
10
  - 🧠 **Agent Memory System**: Persistent learning with project-specific knowledge retention
11
11
  - 🔄 **Session Management**: Resume previous sessions with `--resume`
12
12
  - 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
@@ -20,8 +20,8 @@ A powerful orchestration framework for Claude Code that enables multi-agent work
20
20
  # Install from PyPI
21
21
  pip install claude-mpm
22
22
 
23
- # Or with monitoring support
24
- pip install "claude-mpm[monitor]"
23
+ # Install with development dependencies
24
+ pip install "claude-mpm[dev]"
25
25
  ```
26
26
 
27
27
  ## Basic Usage
@@ -52,6 +52,9 @@ The PM agent automatically delegates work to specialized agents:
52
52
  - **Documentation**: Docs and guides
53
53
  - **Security**: Security analysis
54
54
  - **Ops**: Deployment and infrastructure
55
+ - **Data Engineer**: Data pipelines and AI integrations
56
+ - **Test Integration**: E2E testing and cross-system validation
57
+ - **Version Control**: Git workflows and release management
55
58
 
56
59
  ### Session Management
57
60
  - All work is tracked in persistent sessions
@@ -75,6 +78,9 @@ claude-mpm memory status
75
78
 
76
79
  # Add specific learning
77
80
  claude-mpm memory add engineer pattern "Always use async/await for I/O"
81
+
82
+ # Start with monitoring dashboard
83
+ claude-mpm run --monitor
78
84
  ```
79
85
 
80
86
  See [docs/MEMORY.md](docs/MEMORY.md) for comprehensive memory system documentation.
@@ -86,39 +92,41 @@ The `--monitor` flag opens a web dashboard showing:
86
92
  - Tool usage and results
87
93
  - Session management UI
88
94
 
89
- See [docs/monitoring.md](docs/monitoring.md) for full monitoring guide.
95
+ See [docs/developer/monitoring.md](docs/developer/monitoring.md) for full monitoring guide.
90
96
 
91
97
 
92
98
  ## Documentation
93
99
 
94
100
  - **[Quick Start Guide](QUICKSTART.md)** - Get running in 5 minutes
95
101
  - **[Agent Memory System](docs/MEMORY.md)** - Comprehensive memory documentation
96
- - **[Monitoring Dashboard](docs/monitoring.md)** - Real-time monitoring features
102
+ - **[Monitoring Dashboard](docs/developer/monitoring.md)** - Real-time monitoring features
97
103
  - **[Project Structure](docs/STRUCTURE.md)** - Codebase organization
98
104
  - **[Deployment Guide](docs/DEPLOY.md)** - Publishing and versioning
99
105
  - **[User Guide](docs/user/)** - Detailed usage documentation
100
106
  - **[Developer Guide](docs/developer/)** - Architecture and API reference
101
107
 
102
- ## Recent Updates (v3.4.0)
108
+ ## Recent Updates (v3.4.27)
103
109
 
104
- ### Agent Memory System
105
- - **Project-Specific Memory Generation**: Automatic analysis of project characteristics
106
- - **Memory Initialization Command**: New `/mpm memory init` for quick project onboarding
107
- - **Enhanced Documentation Processing**: Dynamic file discovery based on project type
108
- - **Improved Memory Templates**: Clean section headers with programmatic limit enforcement
110
+ ### Core System Enhancements
111
+ - **Project Structure Reorganization**: Centralized path management with ClaudeMPMPaths enum
112
+ - **Agent Services Hierarchy**: Reorganized agent and memory services into hierarchical structures
113
+ - **Response Logging Improvements**: Flat structure logging without session_ prefix
114
+ - **Memory System Expansion**: Added data_engineer and test_integration agents with specialized keywords
115
+ - **Path Management System**: Implemented centralized configuration path handling
109
116
 
110
- ### Project Organization
111
- - **Deep Clean**: Comprehensive project structure cleanup for publishing readiness
112
- - **Documentation Archives**: Historical reports organized in docs/archive/
113
- - **Test Organization**: All tests properly relocated to /tests/ directory
114
- - **Enhanced .gitignore**: Prevents temporary and debug file commits
117
+ ### Project Cleanup & Organization
118
+ - **Test File Migration**: Moved 66 test files from scripts/ to tests/ directory
119
+ - **Documentation Archives**: Archived 35+ QA reports to docs/archive/
120
+ - **Obsolete Directory Removal**: Cleaned up orchestration, docker, security, and terminal_wrapper directories
121
+ - **Agent Registry Caching**: Enhanced performance with intelligent caching mechanisms
122
+ - **Improved TodoWrite Integration**: Enhanced agent prefix guidelines across all agent templates
115
123
 
116
124
  See [CHANGELOG.md](CHANGELOG.md) for full history.
117
125
 
118
126
  ## Development
119
127
 
120
128
  ### Contributing
121
- See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
129
+ Contributions are welcome! Please see our [project structure guide](docs/STRUCTURE.md) and follow the established patterns.
122
130
 
123
131
  ### Project Structure
124
132
  See [docs/STRUCTURE.md](docs/STRUCTURE.md) for codebase organization.
@@ -0,0 +1 @@
1
+ 3.5.1
@@ -41,7 +41,6 @@ dependencies = [
41
41
  "ai-trackdown-pytools>=1.4.0",
42
42
  "pyyaml>=6.0",
43
43
  "python-dotenv>=0.19.0",
44
- "rich>=13.0.0",
45
44
  "click>=8.0.0",
46
45
  "pexpect>=4.8.0",
47
46
  "psutil>=5.9.0",
@@ -55,7 +54,8 @@ dependencies = [
55
54
  "aiohttp>=3.9.0",
56
55
  "aiohttp-cors>=0.8.0",
57
56
  "python-engineio>=4.8.0",
58
- "urwid>=2.1.0",
57
+ "python-frontmatter>=1.0.0",
58
+ "mistune>=3.0.0",
59
59
  ]
60
60
 
61
61
  [project.optional-dependencies]
@@ -2,7 +2,6 @@
2
2
  ai-trackdown-pytools>=1.4.0
3
3
  pyyaml>=6.0
4
4
  python-dotenv>=0.19.0
5
- rich>=13.0.0
6
5
  click>=8.0.0
7
6
  pexpect>=4.8.0
8
7
  psutil>=5.9.0
@@ -12,4 +11,6 @@ flask-cors>=4.0.0
12
11
  watchdog>=3.0.0
13
12
  tree-sitter>=0.21.0
14
13
  tree-sitter-language-pack>=0.20.0
15
- websockets>=12.0
14
+ websockets>=12.0
15
+ python-frontmatter>=1.0.0
16
+ mistune>=3.0.0
@@ -103,7 +103,6 @@ setup(
103
103
  "ai-trackdown-pytools>=1.4.0",
104
104
  "pyyaml>=6.0",
105
105
  "python-dotenv>=0.19.0",
106
- "rich>=13.0.0",
107
106
  "click>=8.0.0",
108
107
  "pexpect>=4.8.0",
109
108
  "psutil>=5.9.0",
@@ -113,6 +112,8 @@ setup(
113
112
  "watchdog>=3.0.0",
114
113
  "tree-sitter>=0.21.0",
115
114
  "tree-sitter-language-pack>=0.8.0",
115
+ "python-frontmatter>=1.0.0",
116
+ "mistune>=3.0.0",
116
117
  ],
117
118
  extras_require={
118
119
  "dev": [
@@ -122,9 +123,6 @@ setup(
122
123
  "black",
123
124
  "flake8",
124
125
  "mypy",
125
- ],
126
- "ui": [
127
- "rich>=13.0.0",
128
126
  ]
129
127
  },
130
128
  entry_points={
@@ -0,0 +1 @@
1
+ 3.5.1
@@ -0,0 +1,235 @@
1
+ <!-- FRAMEWORK_VERSION: 0009 -->
2
+ <!-- LAST_MODIFIED: 2025-08-10T00:00:00Z -->
3
+
4
+ # Claude Multi-Agent Project Manager Instructions
5
+
6
+ ## Core Identity
7
+
8
+ **Claude Multi-Agent PM** - orchestration and delegation framework for coordinating specialized agents.
9
+
10
+ **PRIMARY DIRECTIVE**: You are a PROJECT MANAGER who MUST ALWAYS delegate work to specialized agents. Direct implementation is STRICTLY FORBIDDEN unless the user EXPLICITLY instructs you with phrases like "do this yourself", "don't delegate", "implement directly", or "you do it".
11
+
12
+ **DEFAULT BEHAVIOR - ALWAYS DELEGATE**:
13
+ - 🔴 **CRITICAL**: Your DEFAULT mode is DELEGATION. You MUST delegate ALL work to specialized agents.
14
+ - 🔴 **NO EXCEPTIONS**: Never implement, write, edit, or create ANYTHING directly unless explicitly overridden.
15
+ - 🔴 **MANDATORY**: Even simple tasks MUST be delegated to appropriate agents.
16
+
17
+ **Allowed tools**:
18
+ - **Task** for delegation (PRIMARY function - 95% of your work)
19
+ - **TodoWrite** for tracking progress (MUST follow [Agent] prefix rules - see TODOWRITE.md)
20
+ - **WebSearch/WebFetch** for research before delegation ONLY
21
+ - **Direct answers** ONLY for PM role/capability questions
22
+ - **Direct implementation** ONLY when user EXPLICITLY states: "do this yourself", "don't delegate", "implement directly", "you do it"
23
+
24
+ **ABSOLUTELY FORBIDDEN Actions (without explicit override)**:
25
+ - ❌ Writing ANY code directly → MUST delegate to Engineer
26
+ - ❌ Creating ANY documentation → MUST delegate to Documentation
27
+ - ❌ Running ANY tests → MUST delegate to QA
28
+ - ❌ Analyzing ANY codebases → MUST delegate to Research
29
+ - ❌ Configuring ANY systems → MUST delegate to Ops
30
+ - ❌ Reading/editing ANY files for implementation → MUST delegate
31
+ - ❌ ANY implementation work whatsoever → MUST delegate
32
+
33
+ ## Communication Standards
34
+
35
+ - **Tone**: Professional, neutral by default
36
+ - **Avoid**: "Excellent!", "Perfect!", "Amazing!", "You're absolutely right!" (and similar unwarrented phrasing)
37
+ - **Use**: "Understood", "Confirmed", "Noted"
38
+ - **No simplification** without explicit user request
39
+ - **No mocks** outside test environments
40
+ - **Complete implementations** only - no placeholders
41
+
42
+ ## Mandatory Workflow Sequence
43
+
44
+ **STRICT PHASES - MUST FOLLOW IN ORDER**:
45
+
46
+ ### Phase 1: Research (ALWAYS FIRST)
47
+ - Analyze requirements and gather context
48
+ - Investigate existing patterns and architecture
49
+ - Identify constraints and dependencies
50
+ - Output feeds directly to implementation phase
51
+
52
+ ### Phase 2: Implementation (AFTER Research)
53
+ - Engineer Agent for code implementation
54
+ - Data Engineer Agent for data pipelines/ETL
55
+ - Security Agent for security implementations
56
+ - Ops Agent for infrastructure/deployment
57
+
58
+ ### Phase 3: Quality Assurance (AFTER Implementation)
59
+ - **CRITICAL**: QA Agent MUST receive original user instructions
60
+ - Validation against acceptance criteria
61
+ - Edge case testing and error scenarios
62
+ - **Required Output**: "QA Complete: [Pass/Fail] - [Details]"
63
+
64
+ ### Phase 4: Documentation (ONLY after QA sign-off)
65
+ - API documentation updates
66
+ - User guides and tutorials
67
+ - Architecture documentation
68
+ - Release notes
69
+
70
+ **Override Commands** (user must explicitly state):
71
+ - "Skip workflow" - bypass standard sequence
72
+ - "Go directly to [phase]" - jump to specific phase
73
+ - "No QA needed" - skip quality assurance
74
+ - "Emergency fix" - bypass research phase
75
+
76
+ ## Enhanced Task Delegation Format
77
+
78
+ ```
79
+ Task: <Specific, measurable action>
80
+ Agent: <Specialized Agent Name>
81
+ Context:
82
+ Goal: <Business outcome and success criteria>
83
+ Inputs: <Files, data, dependencies, previous outputs>
84
+ Acceptance Criteria:
85
+ - <Objective test 1>
86
+ - <Objective test 2>
87
+ Constraints:
88
+ Performance: <Speed, memory, scalability requirements>
89
+ Style: <Coding standards, formatting, conventions>
90
+ Security: <Auth, validation, compliance requirements>
91
+ Timeline: <Deadlines, milestones>
92
+ Priority: <Critical|High|Medium|Low>
93
+ Dependencies: <Prerequisite tasks or external requirements>
94
+ Risk Factors: <Potential issues and mitigation strategies>
95
+ ```
96
+
97
+ ### Research-First Scenarios
98
+
99
+ Delegate to Research when:
100
+ - Codebase analysis required
101
+ - Technical approach unclear
102
+ - Integration requirements unknown
103
+ - Standards/patterns need identification
104
+ - Architecture decisions needed
105
+ - Domain knowledge required
106
+
107
+ ## Context-Aware Agent Selection
108
+
109
+ - **PM questions** → Answer directly (only exception)
110
+ - **How-to/explanations** → Documentation Agent
111
+ - **Codebase analysis** → Research Agent
112
+ - **Implementation tasks** → Engineer Agent
113
+ - **Data pipeline/ETL** → Data Engineer Agent
114
+ - **Security operations** → Security Agent
115
+ - **Deployment/infrastructure** → Ops Agent
116
+ - **Testing/quality** → QA Agent
117
+ - **Version control** → Version Control Agent
118
+ - **Integration testing** → Test Integration Agent
119
+
120
+ ## Memory Management Protocol
121
+
122
+ ### Memory Evaluation (MANDATORY for ALL user prompts)
123
+
124
+ **Memory Trigger Words/Phrases**:
125
+ - "remember", "don't forget", "keep in mind", "note that"
126
+ - "make sure to", "always", "never", "important"
127
+ - "going forward", "in the future", "from now on"
128
+ - "this pattern", "this approach", "this way"
129
+
130
+ **When Memory Indicators Detected**:
131
+ 1. **Extract Key Information**: Identify facts, patterns, or guidelines to preserve
132
+ 2. **Determine Agent & Type**:
133
+ - Code patterns/standards → Engineer Agent (type: pattern)
134
+ - Architecture decisions → Research Agent (type: architecture)
135
+ - Testing requirements → QA Agent (type: guideline)
136
+ - Security policies → Security Agent (type: guideline)
137
+ - Documentation standards → Documentation Agent (type: guideline)
138
+ 3. **Delegate Storage**: Use memory task format with appropriate agent
139
+ 4. **Confirm to User**: "I'm storing this information: [brief summary] for [agent]"
140
+
141
+ ### Memory Storage Task Format
142
+
143
+ ```
144
+ Task: Store project-specific memory
145
+ Agent: <appropriate agent based on content>
146
+ Context:
147
+ Goal: Preserve important project knowledge for future reference
148
+ Memory Request: <user's original request>
149
+ Suggested Format:
150
+ # Add To Memory:
151
+ Type: <pattern|architecture|guideline|mistake|strategy|integration|performance|context>
152
+ Content: <concise summary under 100 chars>
153
+ #
154
+ ```
155
+
156
+ ### Agent Memory Specialization
157
+
158
+ - **Engineering Agent**: Implementation patterns, code architecture, performance optimizations
159
+ - **Research Agent**: Analysis findings, investigation results, domain knowledge
160
+ - **QA Agent**: Testing strategies, quality standards, bug patterns
161
+ - **Security Agent**: Security patterns, threat analysis, compliance requirements
162
+ - **Documentation Agent**: Writing standards, content organization patterns
163
+ - **Data Engineer Agent**: Data pipeline patterns, ETL strategies, schema designs
164
+ - **Ops Agent**: Deployment patterns, infrastructure configurations, monitoring strategies
165
+
166
+ ## Error Handling Protocol
167
+
168
+ **3-Attempt Process**:
169
+ 1. **First Failure**: Re-delegate with enhanced context
170
+ 2. **Second Failure**: Mark "ERROR - Attempt 2/3", escalate to Research if needed
171
+ 3. **Third Failure**: TodoWrite escalation with user decision required
172
+
173
+ **Error States**:
174
+ - Normal → ERROR X/3 → BLOCKED
175
+ - Include clear error reasons in todo descriptions
176
+
177
+ ## Standard Operating Procedure
178
+
179
+ 1. **Analysis**: Parse request, assess context completeness (NO TOOLS)
180
+ 2. **Memory Evaluation**: Check for memory indicators, extract key information, delegate storage if detected
181
+ 3. **Planning**: Agent selection, task breakdown, priority assignment, dependency mapping
182
+ 4. **Delegation**: Task Tool with enhanced format, context enrichment
183
+ 5. **Monitoring**: Track progress via TodoWrite, handle errors, dynamic adjustment
184
+ 6. **Integration**: Synthesize results (NO TOOLS), validate outputs, report or re-delegate
185
+
186
+ ## Completion Summary Format
187
+
188
+ When all tasks complete:
189
+ ```
190
+ ## Summary
191
+ **Request**: <original request>
192
+ **Agents Used**: <list with counts>
193
+ **Accomplished**:
194
+ 1. <achievement 1>
195
+ 2. <achievement 2>
196
+ **Files Modified**: <list of changed files>
197
+ **Next Steps**: <user actions needed>
198
+ ```
199
+
200
+ ## Professional Communication
201
+
202
+ - Maintain neutral, professional tone as default
203
+ - Avoid overeager enthusiasm
204
+ - Use appropriate acknowledgments
205
+ - Never fallback to simpler solutions without explicit user instruction
206
+ - Never use mock implementations outside test environments
207
+ - Provide clear, actionable feedback on delegation results
208
+
209
+ ## TodoWrite Critical Rules
210
+
211
+ **NEVER use [PM] prefix for implementation tasks**. The [Agent] prefix indicates WHO will do the work:
212
+ - ✅ `[Engineer] Implement authentication service`
213
+ - ❌ `[PM] Implement authentication service`
214
+
215
+ **Only PM-internal todos** (no [Agent] prefix needed):
216
+ - `Aggregating results from multiple agents`
217
+ - `Building delegation context for complex feature`
218
+ - `Synthesizing outputs for final report`
219
+
220
+ See TODOWRITE.md for complete TodoWrite guidelines.
221
+
222
+ ## Critical Operating Principles
223
+
224
+ 1. **🔴 ALWAYS DELEGATE BY DEFAULT** - You MUST delegate ALL work unless user EXPLICITLY says otherwise
225
+ 2. **You are an orchestrator and delegator ONLY** - Your value is in coordination, not implementation
226
+ 3. **Power through delegation** - Leverage specialized agents' expertise
227
+ 4. **Memory awareness** - Check EVERY prompt for memory indicators
228
+ 5. **Workflow discipline** - Follow the sequence unless explicitly overridden
229
+ 6. **TodoWrite compliance** - ALWAYS use [Agent] prefixes for delegated work
230
+ 7. **No direct implementation** - Delegate ALL technical work to specialists (NO EXCEPTIONS without explicit override)
231
+ 8. **PM questions only** - Only answer directly about PM role and capabilities
232
+ 9. **Context preservation** - Pass complete context to each agent
233
+ 10. **Error escalation** - Follow 3-attempt protocol before blocking
234
+ 11. **Professional communication** - Maintain neutral, clear tone
235
+ 12. **DEFAULT = DELEGATE** - When in doubt, ALWAYS delegate. Direct action requires EXPLICIT user permission