claude-mpm 3.8.1__tar.gz → 3.9.2__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 (290) hide show
  1. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/CLAUDE.md +1 -1
  2. claude_mpm-3.9.2/PKG-INFO +200 -0
  3. claude_mpm-3.9.2/README.md +101 -0
  4. claude_mpm-3.9.2/VERSION +1 -0
  5. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/pyproject.toml +2 -1
  6. claude_mpm-3.9.2/src/claude_mpm/VERSION +1 -0
  7. claude_mpm-3.9.2/src/claude_mpm/agents/BASE_AGENT_TEMPLATE.md +85 -0
  8. claude_mpm-3.9.2/src/claude_mpm/agents/MEMORY.md +97 -0
  9. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/WORKFLOW.md +54 -4
  10. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/agents_metadata.py +25 -1
  11. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/schema/agent_schema.json +1 -1
  12. claude_mpm-3.9.2/src/claude_mpm/agents/templates/backup/research_agent_2025011_234551.json +88 -0
  13. claude_mpm-3.9.2/src/claude_mpm/agents/templates/project_organizer.json +178 -0
  14. claude_mpm-3.9.2/src/claude_mpm/agents/templates/research.json +88 -0
  15. claude_mpm-3.9.2/src/claude_mpm/agents/templates/ticketing.json +156 -0
  16. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/commands/agents.py +8 -3
  17. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/claude_runner.py +31 -10
  18. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/config.py +2 -2
  19. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/container.py +96 -25
  20. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/framework_loader.py +43 -1
  21. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/interactive_session.py +47 -0
  22. claude_mpm-3.9.2/src/claude_mpm/hooks/claude_hooks/hook_handler_fixed.py +454 -0
  23. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/deployment/agent_deployment.py +144 -43
  24. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/memory/agent_memory_manager.py +4 -3
  25. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/__init__.py +10 -3
  26. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/deployment_manager.py +14 -11
  27. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/response_tracker.py +3 -5
  28. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/ticket_manager.py +2 -2
  29. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/ticket_manager_di.py +1 -1
  30. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/version_control/semantic_versioning.py +80 -7
  31. claude_mpm-3.9.2/src/claude_mpm/services/version_control/version_parser.py +528 -0
  32. claude_mpm-3.9.2/src/claude_mpm.egg-info/PKG-INFO +200 -0
  33. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm.egg-info/SOURCES.txt +4 -0
  34. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm.egg-info/requires.txt +6 -1
  35. claude_mpm-3.8.1/PKG-INFO +0 -327
  36. claude_mpm-3.8.1/README.md +0 -232
  37. claude_mpm-3.8.1/VERSION +0 -1
  38. claude_mpm-3.8.1/src/claude_mpm/VERSION +0 -1
  39. claude_mpm-3.8.1/src/claude_mpm/agents/BASE_AGENT_TEMPLATE.md +0 -161
  40. claude_mpm-3.8.1/src/claude_mpm/agents/MEMORY.md +0 -88
  41. claude_mpm-3.8.1/src/claude_mpm/agents/templates/research.json +0 -85
  42. claude_mpm-3.8.1/src/claude_mpm/agents/templates/ticketing.json +0 -156
  43. claude_mpm-3.8.1/src/claude_mpm.egg-info/PKG-INFO +0 -327
  44. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/LICENSE +0 -0
  45. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/MANIFEST.in +0 -0
  46. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/claude-mpm +0 -0
  47. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/requirements.txt +0 -0
  48. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/scripts/run_mpm.py +0 -0
  49. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/scripts/ticket +0 -0
  50. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/setup.cfg +0 -0
  51. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/setup.py +0 -0
  52. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/__init__.py +0 -0
  53. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/__main__.py +0 -0
  54. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/BASE_PM.md +0 -0
  55. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/INSTRUCTIONS.md +0 -0
  56. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/__init__.py +0 -0
  57. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/agent_loader.py +0 -0
  58. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/agent_loader_integration.py +0 -0
  59. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/async_agent_loader.py +0 -0
  60. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/backups/INSTRUCTIONS.md +0 -0
  61. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/base_agent.json +0 -0
  62. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/base_agent_loader.py +0 -0
  63. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/frontmatter_validator.py +0 -0
  64. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/system_agent_config.py +0 -0
  65. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/.claude-mpm/memories/README.md +0 -0
  66. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/.claude-mpm/memories/engineer_agent.md +0 -0
  67. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/.claude-mpm/memories/qa_agent.md +0 -0
  68. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/.claude-mpm/memories/research_agent.md +0 -0
  69. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/.claude-mpm/memories/version_control_agent.md +0 -0
  70. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/__init__.py +0 -0
  71. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/backup/data_engineer_agent_20250726_234551.json +0 -0
  72. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/backup/documentation_agent_20250726_234551.json +0 -0
  73. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/backup/engineer_agent_20250726_234551.json +0 -0
  74. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/backup/ops_agent_20250726_234551.json +0 -0
  75. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/backup/qa_agent_20250726_234551.json +0 -0
  76. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/backup/research_agent_20250726_234551.json +0 -0
  77. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/backup/security_agent_20250726_234551.json +0 -0
  78. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/backup/version_control_agent_20250726_234551.json +0 -0
  79. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/code_analyzer.json +0 -0
  80. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/data_engineer.json +0 -0
  81. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/documentation.json +0 -0
  82. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/engineer.json +0 -0
  83. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/ops.json +0 -0
  84. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/qa.json +0 -0
  85. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/security.json +0 -0
  86. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/version_control.json +0 -0
  87. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/web_qa.json +0 -0
  88. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/agents/templates/web_ui.json +0 -0
  89. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/__init__.py +0 -0
  90. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/__main__.py +0 -0
  91. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/commands/__init__.py +0 -0
  92. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/commands/aggregate.py +0 -0
  93. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/commands/config.py +0 -0
  94. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/commands/info.py +0 -0
  95. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/commands/memory.py +0 -0
  96. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/commands/monitor.py +0 -0
  97. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/commands/run.py +0 -0
  98. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/commands/tickets.py +0 -0
  99. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/parser.py +0 -0
  100. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/ticket_cli.py +0 -0
  101. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli/utils.py +0 -0
  102. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli_module/__init__.py +0 -0
  103. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli_module/args.py +0 -0
  104. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli_module/commands.py +0 -0
  105. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/cli_module/migration_example.py +0 -0
  106. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/config/__init__.py +0 -0
  107. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/config/agent_config.py +0 -0
  108. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/config/paths.py +0 -0
  109. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/config/socketio_config.py +0 -0
  110. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/constants.py +0 -0
  111. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/__init__.py +0 -0
  112. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/agent_name_normalizer.py +0 -0
  113. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/agent_registry.py +0 -0
  114. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/agent_session_manager.py +0 -0
  115. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/base_service.py +0 -0
  116. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/cache.py +0 -0
  117. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/config_aliases.py +0 -0
  118. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/config_paths.py +0 -0
  119. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/constants.py +0 -0
  120. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/exceptions.py +0 -0
  121. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/factories.py +0 -0
  122. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/hook_manager.py +0 -0
  123. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/injectable_service.py +0 -0
  124. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/interfaces.py +0 -0
  125. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/lazy.py +0 -0
  126. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/logger.py +0 -0
  127. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/logging_config.py +0 -0
  128. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/minimal_framework_loader.py +0 -0
  129. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/mixins.py +0 -0
  130. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/oneshot_session.py +0 -0
  131. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/optimized_agent_loader.py +0 -0
  132. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/optimized_startup.py +0 -0
  133. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/pm_hook_interceptor.py +0 -0
  134. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/service_registry.py +0 -0
  135. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/session_manager.py +0 -0
  136. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/socketio_pool.py +0 -0
  137. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/tool_access_control.py +0 -0
  138. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/types.py +0 -0
  139. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/core/typing_utils.py +0 -0
  140. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/index.html +0 -0
  141. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/open_dashboard.py +0 -0
  142. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/css/dashboard.css +0 -0
  143. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/agent-inference.js +0 -0
  144. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/event-processor.js +0 -0
  145. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/event-viewer.js +0 -0
  146. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/export-manager.js +0 -0
  147. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/file-tool-tracker.js +0 -0
  148. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/hud-library-loader.js +0 -0
  149. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/hud-manager.js +0 -0
  150. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/hud-visualizer.js +0 -0
  151. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/module-viewer.js +0 -0
  152. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/session-manager.js +0 -0
  153. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/socket-manager.js +0 -0
  154. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/ui-state-manager.js +0 -0
  155. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/components/working-directory.js +0 -0
  156. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/dashboard-original.js +0 -0
  157. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/dashboard.js +0 -0
  158. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/static/js/socket-client.js +0 -0
  159. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/templates/index.html +0 -0
  160. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/dashboard/test_dashboard.html +0 -0
  161. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/deployment_paths.py +0 -0
  162. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/experimental/cli_enhancements.py +0 -0
  163. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/generators/__init__.py +0 -0
  164. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/generators/agent_profile_generator.py +0 -0
  165. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/hooks/__init__.py +0 -0
  166. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/hooks/base_hook.py +0 -0
  167. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/hooks/claude_hooks/__init__.py +0 -0
  168. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/hooks/claude_hooks/hook_handler.py +0 -0
  169. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/hooks/claude_hooks/hook_wrapper.sh +0 -0
  170. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/hooks/memory_integration_hook.py +0 -0
  171. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/hooks/tool_call_interceptor.py +0 -0
  172. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/hooks/validation_hooks.py +0 -0
  173. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/init.py +0 -0
  174. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/models/__init__.py +0 -0
  175. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/models/agent_definition.py +0 -0
  176. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/models/agent_session.py +0 -0
  177. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/scripts/__init__.py +0 -0
  178. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/scripts/socketio_daemon.py +0 -0
  179. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/scripts/start_activity_logging.py +0 -0
  180. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/__init__.py +0 -0
  181. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agent/__init__.py +0 -0
  182. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agent/deployment.py +0 -0
  183. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agent/management.py +0 -0
  184. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agent/registry.py +0 -0
  185. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/__init__.py +0 -0
  186. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/deployment/__init__.py +0 -0
  187. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/deployment/agent_lifecycle_manager.py +0 -0
  188. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/deployment/agent_versioning.py +0 -0
  189. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/deployment/async_agent_deployment.py +0 -0
  190. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/loading/__init__.py +0 -0
  191. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/loading/agent_profile_loader.py +0 -0
  192. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/loading/base_agent_manager.py +0 -0
  193. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/loading/framework_agent_loader.py +0 -0
  194. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/management/__init__.py +0 -0
  195. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/management/agent_capabilities_generator.py +0 -0
  196. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/management/agent_management_service.py +0 -0
  197. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/memory/__init__.py +0 -0
  198. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/memory/agent_persistence_service.py +0 -0
  199. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/registry/__init__.py +0 -0
  200. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/registry/agent_registry.py +0 -0
  201. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/registry/deployed_agent_discovery.py +0 -0
  202. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/agents/registry/modification_tracker.py +0 -0
  203. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/async_session_logger.py +0 -0
  204. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/claude_session_logger.py +0 -0
  205. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/communication/__init__.py +0 -0
  206. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/communication/socketio.py +0 -0
  207. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/communication/websocket.py +0 -0
  208. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/core/__init__.py +0 -0
  209. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/core/base.py +0 -0
  210. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/core/interfaces.py +0 -0
  211. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/event_aggregator.py +0 -0
  212. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/exceptions.py +0 -0
  213. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/content_assembler.py +0 -0
  214. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/content_validator.py +0 -0
  215. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/__init__.py +0 -0
  216. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/agents.py +0 -0
  217. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/claude_pm_init.py +0 -0
  218. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/core_responsibilities.py +0 -0
  219. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/delegation_constraints.py +0 -0
  220. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/environment_config.py +0 -0
  221. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/footer.py +0 -0
  222. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/header.py +0 -0
  223. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/orchestration_principles.py +0 -0
  224. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/role_designation.py +0 -0
  225. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/subprocess_validation.py +0 -0
  226. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/todo_task_tools.py +0 -0
  227. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_generators/troubleshooting.py +0 -0
  228. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/section_manager.py +0 -0
  229. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator/version_manager.py +0 -0
  230. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/framework_claude_md_generator.py +0 -0
  231. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/health_monitor.py +0 -0
  232. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/hook_service.py +0 -0
  233. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/infrastructure/__init__.py +0 -0
  234. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/infrastructure/logging.py +0 -0
  235. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/infrastructure/monitoring.py +0 -0
  236. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/memory/__init__.py +0 -0
  237. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/memory/builder.py +0 -0
  238. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/memory/cache/__init__.py +0 -0
  239. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/memory/cache/shared_prompt_cache.py +0 -0
  240. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/memory/cache/simple_cache.py +0 -0
  241. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/memory/indexed_memory.py +0 -0
  242. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/memory/optimizer.py +0 -0
  243. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/memory/router.py +0 -0
  244. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/optimized_hook_service.py +0 -0
  245. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/project/__init__.py +0 -0
  246. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/project/analyzer.py +0 -0
  247. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/project/registry.py +0 -0
  248. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/project_analyzer.py +0 -0
  249. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/project_registry.py +0 -0
  250. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/recovery_manager.py +0 -0
  251. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/socketio/__init__.py +0 -0
  252. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/socketio/handlers/__init__.py +0 -0
  253. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/socketio/handlers/base.py +0 -0
  254. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/socketio/handlers/connection.py +0 -0
  255. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/socketio/handlers/file.py +0 -0
  256. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/socketio/handlers/git.py +0 -0
  257. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/socketio/handlers/memory.py +0 -0
  258. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/socketio/handlers/project.py +0 -0
  259. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/socketio/handlers/registry.py +0 -0
  260. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/socketio_client_manager.py +0 -0
  261. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/socketio_server.py +0 -0
  262. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/standalone_socketio_server.py +0 -0
  263. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/ticketing_service_original.py +0 -0
  264. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/version_control/__init__.py +0 -0
  265. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/version_control/branch_strategy.py +0 -0
  266. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/version_control/conflict_resolution.py +0 -0
  267. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/services/version_control/git_operations.py +0 -0
  268. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/ticket_wrapper.py +0 -0
  269. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/__init__.py +0 -0
  270. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/agent_dependency_loader.py +0 -0
  271. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/config_manager.py +0 -0
  272. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/console.py +0 -0
  273. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/dependency_cache.py +0 -0
  274. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/dependency_manager.py +0 -0
  275. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/dependency_strategies.py +0 -0
  276. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/environment_context.py +0 -0
  277. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/error_handler.py +0 -0
  278. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/framework_detection.py +0 -0
  279. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/import_migration_example.py +0 -0
  280. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/imports.py +0 -0
  281. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/path_operations.py +0 -0
  282. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/paths.py +0 -0
  283. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/robust_installer.py +0 -0
  284. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/utils/session_logging.py +0 -0
  285. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/validation/__init__.py +0 -0
  286. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/validation/agent_validator.py +0 -0
  287. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm/validation/frontmatter_validator.py +0 -0
  288. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm.egg-info/dependency_links.txt +0 -0
  289. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm.egg-info/entry_points.txt +0 -0
  290. {claude_mpm-3.8.1 → claude_mpm-3.9.2}/src/claude_mpm.egg-info/top_level.txt +0 -0
@@ -6,7 +6,7 @@ This document provides development guidelines for the claude-mpm project codebas
6
6
 
7
7
  Claude MPM (Multi-Agent Project Manager) is a framework that extends Claude Desktop with multi-agent orchestration capabilities, featuring a modern service-oriented architecture with interface-based contracts and dependency injection.
8
8
 
9
- ## Architecture (v3.7.8+)
9
+ ## Architecture (v3.8.2+)
10
10
 
11
11
  Following the TSK-0053 refactoring, Claude MPM features:
12
12
 
@@ -0,0 +1,200 @@
1
+ Metadata-Version: 2.4
2
+ Name: claude-mpm
3
+ Version: 3.9.2
4
+ Summary: Claude Multi-agent Project Manager - Clean orchestration with ticket management
5
+ Home-page: https://github.com/bobmatnyc/claude-mpm
6
+ Author: Claude MPM Team
7
+ Author-email: bob@matsuoka.com
8
+ License: MIT
9
+ Keywords: claude,orchestration,multi-agent,ticket-management
10
+ Classifier: Development Status :: 3 - Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: License :: OSI Approved :: MIT License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Requires-Python: >=3.8
20
+ Description-Content-Type: text/markdown
21
+ License-File: LICENSE
22
+ Requires-Dist: ai-trackdown-pytools>=1.4.0
23
+ Requires-Dist: pyyaml>=6.0
24
+ Requires-Dist: python-dotenv>=0.19.0
25
+ Requires-Dist: click>=8.0.0
26
+ Requires-Dist: pexpect>=4.8.0
27
+ Requires-Dist: psutil>=5.9.0
28
+ Requires-Dist: requests>=2.25.0
29
+ Requires-Dist: flask>=3.0.0
30
+ Requires-Dist: flask-cors>=4.0.0
31
+ Requires-Dist: watchdog>=3.0.0
32
+ Requires-Dist: tree-sitter>=0.21.0
33
+ Requires-Dist: python-socketio>=5.11.0
34
+ Requires-Dist: aiohttp>=3.9.0
35
+ Requires-Dist: aiohttp-cors<0.8.0,>=0.7.0
36
+ Requires-Dist: python-engineio>=4.8.0
37
+ Requires-Dist: python-frontmatter>=1.0.0
38
+ Requires-Dist: mistune>=3.0.0
39
+ Requires-Dist: aiofiles>=23.0.0
40
+ Provides-Extra: dev
41
+ Requires-Dist: pytest>=7.0; extra == "dev"
42
+ Requires-Dist: pytest-asyncio; extra == "dev"
43
+ Requires-Dist: pytest-cov; extra == "dev"
44
+ Requires-Dist: black; extra == "dev"
45
+ Requires-Dist: flake8; extra == "dev"
46
+ Requires-Dist: mypy; extra == "dev"
47
+ Provides-Extra: docs
48
+ Requires-Dist: sphinx>=7.2.0; extra == "docs"
49
+ Requires-Dist: sphinx-rtd-theme>=1.3.0; extra == "docs"
50
+ Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
51
+ Provides-Extra: monitor
52
+ Provides-Extra: agents
53
+ Requires-Dist: bandit>=1.7.5; extra == "agents"
54
+ Requires-Dist: black>=23.0.0; extra == "agents"
55
+ Requires-Dist: commitizen>=3.13.0; extra == "agents"
56
+ Requires-Dist: dask>=2023.12.0; extra == "agents"
57
+ Requires-Dist: detect-secrets>=1.4.0; extra == "agents"
58
+ Requires-Dist: diagrams>=0.23.0; extra == "agents"
59
+ Requires-Dist: docstring-parser>=0.15.0; extra == "agents"
60
+ Requires-Dist: faker>=20.0.0; extra == "agents"
61
+ Requires-Dist: gitlint>=0.19.0; extra == "agents"
62
+ Requires-Dist: gitpython>=3.1.40; extra == "agents"
63
+ Requires-Dist: hypothesis>=6.92.0; extra == "agents"
64
+ Requires-Dist: isort>=5.12.0; extra == "agents"
65
+ Requires-Dist: lizard>=1.17.0; extra == "agents"
66
+ Requires-Dist: mermaid-py>=0.2.0; extra == "agents"
67
+ Requires-Dist: mkdocs>=1.5.0; extra == "agents"
68
+ Requires-Dist: mutmut>=2.4.0; extra == "agents"
69
+ Requires-Dist: mypy>=1.8.0; extra == "agents"
70
+ Requires-Dist: pandas>=2.1.0; extra == "agents"
71
+ Requires-Dist: pre-commit>=3.5.0; extra == "agents"
72
+ Requires-Dist: prometheus-client>=0.19.0; extra == "agents"
73
+ Requires-Dist: pydoc-markdown>=4.8.0; extra == "agents"
74
+ Requires-Dist: pydriller>=2.5.0; extra == "agents"
75
+ Requires-Dist: pygments>=2.17.0; extra == "agents"
76
+ Requires-Dist: pytest>=7.4.0; extra == "agents"
77
+ Requires-Dist: pytest-benchmark>=4.0.0; extra == "agents"
78
+ Requires-Dist: pytest-cov>=4.1.0; extra == "agents"
79
+ Requires-Dist: radon>=6.0.0; extra == "agents"
80
+ Requires-Dist: rope>=1.11.0; extra == "agents"
81
+ Requires-Dist: sphinx>=7.2.0; extra == "agents"
82
+ Requires-Dist: sqlalchemy>=2.0.0; extra == "agents"
83
+ Requires-Dist: sqlparse>=0.4.4; extra == "agents"
84
+ Requires-Dist: tree-sitter>=0.21.0; extra == "agents"
85
+ Requires-Dist: tree-sitter-python>=0.21.0; extra == "agents"
86
+ Requires-Dist: tree-sitter-javascript>=0.21.0; extra == "agents"
87
+ Requires-Dist: tree-sitter-typescript>=0.21.0; extra == "agents"
88
+ Requires-Dist: tree-sitter-go>=0.21.0; extra == "agents"
89
+ Requires-Dist: tree-sitter-rust>=0.21.0; extra == "agents"
90
+ Requires-Dist: tree-sitter-java>=0.21.0; extra == "agents"
91
+ Requires-Dist: tree-sitter-cpp>=0.21.0; extra == "agents"
92
+ Requires-Dist: tree-sitter-c>=0.21.0; extra == "agents"
93
+ Requires-Dist: tree-sitter-ruby>=0.21.0; extra == "agents"
94
+ Requires-Dist: tree-sitter-php>=0.21.0; extra == "agents"
95
+ Dynamic: author-email
96
+ Dynamic: home-page
97
+ Dynamic: license-file
98
+ Dynamic: requires-python
99
+
100
+ # Claude MPM - Multi-Agent Project Manager
101
+
102
+ A powerful orchestration framework for Claude Code that enables multi-agent workflows, session management, and real-time monitoring through an intuitive interface.
103
+
104
+ > **Quick Start**: See [QUICKSTART.md](QUICKSTART.md) to get running in 5 minutes!
105
+
106
+ ## Features
107
+
108
+ - 🤖 **Multi-Agent System**: Automatically delegates tasks to specialized agents (PM, Research, Engineer, QA, Documentation, Security, Ops, Data Engineer, Test Integration, Version Control)
109
+ - 🧠 **Agent Memory System**: Persistent learning with project-specific knowledge retention
110
+ - 🔄 **Session Management**: Resume previous sessions with `--resume`
111
+ - 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
112
+ - 📁 **Multi-Project Support**: Per-session working directories
113
+ - 🔍 **Git Integration**: View diffs and track changes across projects
114
+ - 🎯 **Smart Task Orchestration**: PM agent intelligently routes work to specialists
115
+
116
+ ## Quick Installation
117
+
118
+ ```bash
119
+ pip install claude-mpm
120
+ ```
121
+
122
+ **That's it!** See [QUICKSTART.md](QUICKSTART.md) for immediate usage or [docs/user/installation.md](docs/user/installation.md) for advanced options.
123
+
124
+ ## Quick Usage
125
+
126
+ ```bash
127
+ # Start interactive mode (recommended)
128
+ claude-mpm
129
+
130
+ # Start with monitoring dashboard
131
+ claude-mpm run --monitor
132
+ ```
133
+
134
+ See [QUICKSTART.md](QUICKSTART.md) for complete usage examples.
135
+
136
+
137
+ ## Architecture
138
+
139
+ Claude MPM v3.8.2+ features a **modern service-oriented architecture** with interface-based design, dependency injection, and intelligent caching for 50-80% performance improvements.
140
+
141
+ See [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for detailed architecture information.
142
+
143
+ ## Key Capabilities
144
+
145
+ ### Multi-Agent Orchestration
146
+ The PM agent automatically delegates work to specialized agents including Research, Engineer, QA, Documentation, Security, Ops, Data Engineer, Test Integration, and Version Control.
147
+
148
+ ### Agent Memory System
149
+ Agents learn project-specific patterns and remember insights across sessions. Initialize with `claude-mpm memory init`.
150
+
151
+ ### Real-Time Monitoring
152
+ The `--monitor` flag opens a web dashboard showing live agent activity, file operations, and session management.
153
+
154
+ See [docs/MEMORY.md](docs/MEMORY.md) and [docs/developer/11-dashboard/README.md](docs/developer/11-dashboard/README.md) for details.
155
+
156
+
157
+ ## Documentation
158
+
159
+ ### User Documentation
160
+ - **[Quick Start Guide](QUICKSTART.md)** - Get running in 5 minutes
161
+ - **[Installation Guide](docs/user/installation.md)** - Complete installation options
162
+ - **[User Guide](docs/user/)** - Detailed usage documentation
163
+ - **[Memory System](docs/MEMORY.md)** - Agent memory documentation
164
+ - **[Troubleshooting](docs/user/troubleshooting.md)** - Common issues and solutions
165
+
166
+ ### Developer Documentation
167
+ - **[Architecture Overview](docs/ARCHITECTURE.md)** - Service-oriented architecture and design
168
+ - **[API Reference](docs/api/)** - Complete API documentation with Sphinx
169
+ - **[Service Layer Guide](docs/developer/SERVICES.md)** - Service interfaces and implementations
170
+ - **[Performance Guide](docs/PERFORMANCE.md)** - Optimization and caching strategies
171
+ - **[Security Guide](docs/SECURITY.md)** - Security framework and best practices
172
+ - **[Testing Guide](docs/TESTING.md)** - Testing patterns and strategies
173
+ - **[Migration Guide](docs/MIGRATION.md)** - Upgrading from previous versions
174
+ - **[Developer Guide](docs/developer/)** - Comprehensive development documentation
175
+
176
+ ### API Documentation
177
+ Comprehensive API documentation is available at [docs/api/](docs/api/) - build with `make html` in that directory.
178
+
179
+ ## Recent Updates (v3.8.2)
180
+
181
+ **Major Architecture Refactoring (TSK-0053)**: Complete service-oriented redesign with 50-80% performance improvements, enhanced security, and interface-based design.
182
+
183
+ See [CHANGELOG.md](CHANGELOG.md) for full history and [docs/MIGRATION.md](docs/MIGRATION.md) for upgrade instructions.
184
+
185
+ ## Development
186
+
187
+ ### Contributing
188
+ Contributions are welcome! Please see our [project structure guide](docs/STRUCTURE.md) and follow the established patterns.
189
+
190
+ ### Project Structure
191
+ See [docs/STRUCTURE.md](docs/STRUCTURE.md) for codebase organization.
192
+
193
+ ### License
194
+ MIT License - see [LICENSE](LICENSE) file.
195
+
196
+ ## Credits
197
+
198
+ - Based on [claude-multiagent-pm](https://github.com/kfsone/claude-multiagent-pm)
199
+ - Enhanced for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) integration
200
+ - Built with ❤️ by the Claude MPM community
@@ -0,0 +1,101 @@
1
+ # Claude MPM - Multi-Agent Project Manager
2
+
3
+ A powerful orchestration framework for Claude Code that enables multi-agent workflows, session management, and real-time monitoring through an intuitive interface.
4
+
5
+ > **Quick Start**: See [QUICKSTART.md](QUICKSTART.md) to get running in 5 minutes!
6
+
7
+ ## Features
8
+
9
+ - 🤖 **Multi-Agent System**: Automatically delegates tasks to specialized agents (PM, Research, Engineer, QA, Documentation, Security, Ops, Data Engineer, Test Integration, Version Control)
10
+ - 🧠 **Agent Memory System**: Persistent learning with project-specific knowledge retention
11
+ - 🔄 **Session Management**: Resume previous sessions with `--resume`
12
+ - 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
13
+ - 📁 **Multi-Project Support**: Per-session working directories
14
+ - 🔍 **Git Integration**: View diffs and track changes across projects
15
+ - 🎯 **Smart Task Orchestration**: PM agent intelligently routes work to specialists
16
+
17
+ ## Quick Installation
18
+
19
+ ```bash
20
+ pip install claude-mpm
21
+ ```
22
+
23
+ **That's it!** See [QUICKSTART.md](QUICKSTART.md) for immediate usage or [docs/user/installation.md](docs/user/installation.md) for advanced options.
24
+
25
+ ## Quick Usage
26
+
27
+ ```bash
28
+ # Start interactive mode (recommended)
29
+ claude-mpm
30
+
31
+ # Start with monitoring dashboard
32
+ claude-mpm run --monitor
33
+ ```
34
+
35
+ See [QUICKSTART.md](QUICKSTART.md) for complete usage examples.
36
+
37
+
38
+ ## Architecture
39
+
40
+ Claude MPM v3.8.2+ features a **modern service-oriented architecture** with interface-based design, dependency injection, and intelligent caching for 50-80% performance improvements.
41
+
42
+ See [docs/ARCHITECTURE.md](docs/ARCHITECTURE.md) for detailed architecture information.
43
+
44
+ ## Key Capabilities
45
+
46
+ ### Multi-Agent Orchestration
47
+ The PM agent automatically delegates work to specialized agents including Research, Engineer, QA, Documentation, Security, Ops, Data Engineer, Test Integration, and Version Control.
48
+
49
+ ### Agent Memory System
50
+ Agents learn project-specific patterns and remember insights across sessions. Initialize with `claude-mpm memory init`.
51
+
52
+ ### Real-Time Monitoring
53
+ The `--monitor` flag opens a web dashboard showing live agent activity, file operations, and session management.
54
+
55
+ See [docs/MEMORY.md](docs/MEMORY.md) and [docs/developer/11-dashboard/README.md](docs/developer/11-dashboard/README.md) for details.
56
+
57
+
58
+ ## Documentation
59
+
60
+ ### User Documentation
61
+ - **[Quick Start Guide](QUICKSTART.md)** - Get running in 5 minutes
62
+ - **[Installation Guide](docs/user/installation.md)** - Complete installation options
63
+ - **[User Guide](docs/user/)** - Detailed usage documentation
64
+ - **[Memory System](docs/MEMORY.md)** - Agent memory documentation
65
+ - **[Troubleshooting](docs/user/troubleshooting.md)** - Common issues and solutions
66
+
67
+ ### Developer Documentation
68
+ - **[Architecture Overview](docs/ARCHITECTURE.md)** - Service-oriented architecture and design
69
+ - **[API Reference](docs/api/)** - Complete API documentation with Sphinx
70
+ - **[Service Layer Guide](docs/developer/SERVICES.md)** - Service interfaces and implementations
71
+ - **[Performance Guide](docs/PERFORMANCE.md)** - Optimization and caching strategies
72
+ - **[Security Guide](docs/SECURITY.md)** - Security framework and best practices
73
+ - **[Testing Guide](docs/TESTING.md)** - Testing patterns and strategies
74
+ - **[Migration Guide](docs/MIGRATION.md)** - Upgrading from previous versions
75
+ - **[Developer Guide](docs/developer/)** - Comprehensive development documentation
76
+
77
+ ### API Documentation
78
+ Comprehensive API documentation is available at [docs/api/](docs/api/) - build with `make html` in that directory.
79
+
80
+ ## Recent Updates (v3.8.2)
81
+
82
+ **Major Architecture Refactoring (TSK-0053)**: Complete service-oriented redesign with 50-80% performance improvements, enhanced security, and interface-based design.
83
+
84
+ See [CHANGELOG.md](CHANGELOG.md) for full history and [docs/MIGRATION.md](docs/MIGRATION.md) for upgrade instructions.
85
+
86
+ ## Development
87
+
88
+ ### Contributing
89
+ Contributions are welcome! Please see our [project structure guide](docs/STRUCTURE.md) and follow the established patterns.
90
+
91
+ ### Project Structure
92
+ See [docs/STRUCTURE.md](docs/STRUCTURE.md) for codebase organization.
93
+
94
+ ### License
95
+ MIT License - see [LICENSE](LICENSE) file.
96
+
97
+ ## Credits
98
+
99
+ - Based on [claude-multiagent-pm](https://github.com/kfsone/claude-multiagent-pm)
100
+ - Enhanced for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) integration
101
+ - Built with ❤️ by the Claude MPM community
@@ -0,0 +1 @@
1
+ 3.9.2
@@ -10,7 +10,7 @@ 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", "License :: OSI Approved :: MIT License", "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", "tree-sitter>=0.21.0", "python-socketio>=5.11.0", "aiohttp>=3.9.0", "aiohttp-cors>=0.8.0", "python-engineio>=4.8.0", "python-frontmatter>=1.0.0", "mistune>=3.0.0", "aiofiles>=23.0.0",]
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", "tree-sitter>=0.21.0", "python-socketio>=5.11.0", "aiohttp>=3.9.0", "aiohttp-cors>=0.7.0,<0.8.0", "python-engineio>=4.8.0", "python-frontmatter>=1.0.0", "mistune>=3.0.0", "aiofiles>=23.0.0",]
14
14
  [[project.authors]]
15
15
  name = "Claude MPM Team"
16
16
 
@@ -19,6 +19,7 @@ text = "MIT"
19
19
 
20
20
  [project.optional-dependencies]
21
21
  dev = [ "pytest>=7.0", "pytest-asyncio", "pytest-cov", "black", "flake8", "mypy",]
22
+ docs = [ "sphinx>=7.2.0", "sphinx-rtd-theme>=1.3.0", "sphinx-autobuild>=2021.3.14",]
22
23
  monitor = []
23
24
  # Pure Python agent dependencies - no compilation required
24
25
  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",]
@@ -0,0 +1 @@
1
+ 3.9.2
@@ -0,0 +1,85 @@
1
+ # Base Agent Template Instructions
2
+
3
+ ## Essential Operating Rules
4
+
5
+ ### 1. Never Assume
6
+ - Read files before editing - don't trust names/titles
7
+ - Check documentation and actual code implementation
8
+ - Verify your understanding before acting
9
+
10
+ ### 2. Always Verify
11
+ - Test your changes: run functions, test APIs, review edits
12
+ - Document what you verified and how
13
+ - Request validation from QA/PM for complex work
14
+
15
+ ### 3. Challenge the Unexpected
16
+ - Investigate anomalies - don't ignore them
17
+ - Document expected vs. actual results
18
+ - Escalate blockers immediately
19
+
20
+ **Critical Escalation Triggers:** Security issues, data integrity problems, breaking changes, >20% performance degradation
21
+
22
+ ## Task Management
23
+
24
+ ### Reporting Format
25
+ Report tasks in your response using: `[Agent] Task description (status)`
26
+
27
+ **Status indicators:**
28
+ - `(completed)` - Done
29
+ - `(in_progress)` - Working on it
30
+ - `(pending)` - Not started
31
+ - `(blocked: reason)` - Can't proceed
32
+
33
+ **Examples:**
34
+ ```
35
+ [Research] Analyze auth patterns (completed)
36
+ [Engineer] Implement rate limiting (pending)
37
+ [Security] Patch SQL injection (blocked: need prod access)
38
+ ```
39
+
40
+ ### Tools Available
41
+ - **Core**: Read, Write, Edit/MultiEdit
42
+ - **Search**: Grep, Glob, LS
43
+ - **Execute**: Bash (if authorized)
44
+ - **Research**: WebSearch/WebFetch (if authorized)
45
+ - **Tracking**: TodoWrite (varies by agent)
46
+
47
+ ## Response Structure
48
+
49
+ ### 1. Task Summary
50
+ Brief overview of what you accomplished
51
+
52
+ ### 2. Completed Work
53
+ List of specific achievements
54
+
55
+ ### 3. Key Findings/Changes
56
+ Detailed results relevant to the task
57
+
58
+ ### 4. Follow-up Tasks
59
+ Tasks for other agents using `[Agent] Task` format
60
+
61
+ ### 5. Required JSON Block
62
+ End every response with this structured data:
63
+
64
+ ```json
65
+ {
66
+ "task_completed": true/false,
67
+ "instructions": "Original task you received",
68
+ "results": "What you accomplished",
69
+ "files_modified": [
70
+ {"file": "path/file.py", "action": "created|modified|deleted", "description": "What changed"}
71
+ ],
72
+ "tools_used": ["Read", "Edit", "etc"],
73
+ "remember": ["Key learnings"] or null
74
+ }
75
+ ```
76
+
77
+ ## Quick Reference
78
+
79
+ **When blocked:** Stop and ask for help
80
+ **When uncertain:** Verify through testing
81
+ **When delegating:** Use `[Agent] Task` format
82
+ **Always include:** JSON response block at end
83
+
84
+ ## Remember
85
+ You're a specialist in your domain. Focus on your expertise, communicate clearly with the PM who coordinates multi-agent workflows, and always think about what other agents need next.
@@ -0,0 +1,97 @@
1
+ ## Static Memory Management Protocol
2
+
3
+ ### Overview
4
+
5
+ This system provides **Static Memory** support where you (PM) directly manage memory files for agents. This is the first phase of memory implementation, with **Dynamic mem0AI Memory** coming in future releases.
6
+
7
+ ### PM Memory Update Mechanism
8
+
9
+ **As PM, you handle memory updates directly by:**
10
+
11
+ 1. **Reading** existing memory files from `.claude-mpm/memories/`
12
+ 2. **Consolidating** new information with existing knowledge
13
+ 3. **Saving** updated memory files with enhanced content
14
+ 4. **Maintaining** 20k token limit (~80KB) per file
15
+
16
+ ### Memory File Format
17
+
18
+ - **Project Memory Location**: `.claude-mpm/memories/`
19
+ - **PM Memory**: `.claude-mpm/memories/PM.md` (Project Manager's memory)
20
+ - **Agent Memories**: `.claude-mpm/memories/{agent_name}.md` (e.g., engineer.md, qa.md, research.md)
21
+ - **Size Limit**: 80KB (~20k tokens) per file
22
+ - **Format**: Single-line facts and behaviors in markdown sections
23
+ - **Sections**: Project Architecture, Implementation Guidelines, Common Mistakes, etc.
24
+ - **Naming**: Use exact agent names (engineer, qa, research, security, etc.) matching agent definitions
25
+
26
+ ### Memory Update Process (PM Instructions)
27
+
28
+ **When memory indicators detected**:
29
+ 1. **Identify** which agent should store this knowledge
30
+ 2. **Read** current memory file: `.claude-mpm/memories/{agent_id}_agent.md`
31
+ 3. **Consolidate** new information with existing content
32
+ 4. **Write** updated memory file maintaining structure and limits
33
+ 5. **Confirm** to user: "Updated {agent} memory with: [brief summary]"
34
+
35
+ **Memory Trigger Words/Phrases**:
36
+ - "remember", "don't forget", "keep in mind", "note that"
37
+ - "make sure to", "always", "never", "important"
38
+ - "going forward", "in the future", "from now on"
39
+ - "this pattern", "this approach", "this way"
40
+ - Project-specific standards or requirements
41
+
42
+ **Storage Guidelines**:
43
+ - Keep facts concise (single-line entries)
44
+ - Organize by appropriate sections
45
+ - Remove outdated information when adding new
46
+ - Maintain readability and structure
47
+ - Respect 80KB file size limit
48
+
49
+ ### Agent Memory Routing Matrix
50
+
51
+ **Engineering Agent Memory**:
52
+ - Implementation patterns and anti-patterns
53
+ - Code architecture and design decisions
54
+ - Performance optimizations and bottlenecks
55
+ - Technology stack choices and constraints
56
+
57
+ **Research Agent Memory**:
58
+ - Analysis findings and investigation results
59
+ - Domain knowledge and business logic
60
+ - Architectural decisions and trade-offs
61
+ - Codebase patterns and conventions
62
+
63
+ **QA Agent Memory**:
64
+ - Testing strategies and coverage requirements
65
+ - Quality standards and acceptance criteria
66
+ - Bug patterns and regression risks
67
+ - Test infrastructure and tooling
68
+
69
+ **Security Agent Memory**:
70
+ - Security patterns and vulnerabilities
71
+ - Threat models and attack vectors
72
+ - Compliance requirements and policies
73
+ - Authentication/authorization patterns
74
+
75
+ **Documentation Agent Memory**:
76
+ - Writing standards and style guides
77
+ - Content organization patterns
78
+ - API documentation conventions
79
+ - User guide templates
80
+
81
+ **Data Engineer Agent Memory**:
82
+ - Data pipeline patterns and ETL strategies
83
+ - Schema designs and migrations
84
+ - Performance tuning techniques
85
+ - Data quality requirements
86
+
87
+ **Ops Agent Memory**:
88
+ - Deployment patterns and rollback procedures
89
+ - Infrastructure configurations
90
+ - Monitoring and alerting strategies
91
+ - CI/CD pipeline requirements
92
+
93
+ **Version Control Agent Memory**:
94
+ - Branching strategies and conventions
95
+ - Commit message standards
96
+ - Code review processes
97
+ - Release management patterns
@@ -1,5 +1,5 @@
1
- <!-- WORKFLOW_VERSION: 0001 -->
2
- <!-- LAST_MODIFIED: 2025-01-14T00:00:00Z -->
1
+ <!-- WORKFLOW_VERSION: 0002 -->
2
+ <!-- LAST_MODIFIED: 2025-01-14T18:30:00Z -->
3
3
 
4
4
  # PM Workflow Configuration
5
5
 
@@ -68,7 +68,7 @@ Delegate to Research when:
68
68
  - Architecture decisions needed
69
69
  - Domain knowledge required
70
70
 
71
- ### Ticketing Agent Scenarios
71
+ ### Ticketing Agent Integration
72
72
 
73
73
  **ALWAYS delegate to Ticketing Agent when user mentions:**
74
74
  - "ticket", "tickets", "ticketing"
@@ -79,8 +79,58 @@ Delegate to Research when:
79
79
  - "work breakdown"
80
80
  - "user stories"
81
81
 
82
+ **AUTOMATIC TICKETING WORKFLOW** (when ticketing is requested):
83
+
84
+ #### Session Initialization
85
+ 1. **Single Session Work**: Create an ISS (Issue) ticket for the session
86
+ - Title: Clear description of user's request
87
+ - Parent: Attach to appropriate existing epic or create new one
88
+ - Status: Set to "in_progress"
89
+
90
+ 2. **Multi-Session Work**: Create an EP (Epic) ticket
91
+ - Title: High-level objective
92
+ - Create first ISS (Issue) for current session
93
+ - Attach session issue to the epic
94
+
95
+ #### Phase Tracking
96
+ After EACH workflow phase completion, delegate to Ticketing Agent to:
97
+
98
+ 1. **Create TSK (Task) ticket** for the completed phase:
99
+ - **Research Phase**: TSK ticket with research findings
100
+ - **Implementation Phase**: TSK ticket with code changes summary
101
+ - **QA Phase**: TSK ticket with test results
102
+ - **Documentation Phase**: TSK ticket with docs created/updated
103
+
104
+ 2. **Update parent ISS ticket** with:
105
+ - Comment summarizing phase completion
106
+ - Link to the created TSK ticket
107
+ - Update status if needed
108
+
109
+ 3. **Task Ticket Content** should include:
110
+ - Agent that performed the work
111
+ - Summary of what was accomplished
112
+ - Key decisions or findings
113
+ - Files modified or created
114
+ - Any blockers or issues encountered
115
+
116
+ #### Continuous Updates
117
+ - **After significant changes**: Add comment to relevant ticket
118
+ - **When blockers arise**: Update ticket status to "blocked" with explanation
119
+ - **On completion**: Update ISS ticket to "done" with final summary
120
+
121
+ #### Ticket Hierarchy Example
122
+ ```
123
+ EP-0001: Authentication System Overhaul (Epic)
124
+ └── ISS-0001: Implement OAuth2 Support (Session Issue)
125
+ ├── TSK-0001: Research OAuth2 patterns and existing auth (Research Agent)
126
+ ├── TSK-0002: Implement OAuth2 provider integration (Engineer Agent)
127
+ ├── TSK-0003: Test OAuth2 implementation (QA Agent)
128
+ └── TSK-0004: Document OAuth2 setup and API (Documentation Agent)
129
+ ```
130
+
82
131
  The Ticketing Agent specializes in:
83
132
  - Creating and managing epics, issues, and tasks
84
133
  - Generating structured project documentation
85
134
  - Breaking down work into manageable pieces
86
- - Tracking project progress and dependencies
135
+ - Tracking project progress and dependencies
136
+ - Maintaining clear audit trail of all work performed
@@ -191,6 +191,29 @@ DATA_ENGINEER_CONFIG = {
191
191
  }
192
192
  }
193
193
 
194
+ # Project Organizer Agent Metadata
195
+ PROJECT_ORGANIZER_CONFIG = {
196
+ "name": "project_organizer_agent",
197
+ "version": "1.0.0",
198
+ "type": "core_agent",
199
+ "capabilities": [
200
+ "pattern_detection",
201
+ "file_organization",
202
+ "structure_validation",
203
+ "convention_enforcement",
204
+ "batch_reorganization",
205
+ "framework_recognition",
206
+ "documentation_maintenance"
207
+ ],
208
+ "primary_interface": "organization_tools",
209
+ "performance_targets": {
210
+ "structure_analysis": "2m",
211
+ "file_placement": "10s",
212
+ "validation_scan": "5m",
213
+ "batch_reorganization": "15m"
214
+ }
215
+ }
216
+
194
217
  # Aggregate all configs for easy access
195
218
  ALL_AGENT_CONFIGS = {
196
219
  "documentation": DOCUMENTATION_CONFIG,
@@ -200,5 +223,6 @@ ALL_AGENT_CONFIGS = {
200
223
  "ops": OPS_CONFIG,
201
224
  "security": SECURITY_CONFIG,
202
225
  "engineer": ENGINEER_CONFIG,
203
- "data_engineer": DATA_ENGINEER_CONFIG
226
+ "data_engineer": DATA_ENGINEER_CONFIG,
227
+ "project_organizer": PROJECT_ORGANIZER_CONFIG
204
228
  }
@@ -24,7 +24,7 @@
24
24
  "agent_type": {
25
25
  "type": "string",
26
26
  "description": "Type of agent",
27
- "enum": ["base", "engineer", "qa", "documentation", "research", "security", "ops", "data_engineer", "version_control"]
27
+ "enum": ["base", "engineer", "qa", "documentation", "research", "security", "ops", "data_engineer", "version_control", "project_organizer"]
28
28
  },
29
29
  "metadata": {
30
30
  "type": "object",