claude-mpm 3.3.0__tar.gz → 3.4.0__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 (651) hide show
  1. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/CLAUDE.md +9 -3
  2. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/MANIFEST.in +1 -0
  3. claude_mpm-3.4.0/PKG-INFO +183 -0
  4. claude_mpm-3.4.0/README.md +133 -0
  5. claude_mpm-3.4.0/VERSION +1 -0
  6. claude_mpm-3.4.0/src/claude_mpm/agents/templates/data_engineer.json +110 -0
  7. claude_mpm-3.4.0/src/claude_mpm/agents/templates/documentation.json +109 -0
  8. claude_mpm-3.4.0/src/claude_mpm/agents/templates/engineer.json +113 -0
  9. claude_mpm-3.4.0/src/claude_mpm/agents/templates/ops.json +109 -0
  10. claude_mpm-3.4.0/src/claude_mpm/agents/templates/pm.json +25 -0
  11. claude_mpm-3.4.0/src/claude_mpm/agents/templates/qa.json +111 -0
  12. claude_mpm-3.4.0/src/claude_mpm/agents/templates/research.json +65 -0
  13. claude_mpm-3.4.0/src/claude_mpm/agents/templates/security.json +113 -0
  14. claude_mpm-3.4.0/src/claude_mpm/agents/templates/test_integration.json +112 -0
  15. claude_mpm-3.4.0/src/claude_mpm/agents/templates/version_control.json +107 -0
  16. claude_mpm-3.4.0/src/claude_mpm/cli/commands/memory.py +955 -0
  17. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli/commands/run.py +115 -14
  18. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli/parser.py +89 -1
  19. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/constants.py +6 -0
  20. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/claude_runner.py +74 -11
  21. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/config.py +1 -1
  22. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/session_manager.py +46 -0
  23. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/simple_runner.py +74 -11
  24. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/builtin/mpm_command_hook.py +5 -5
  25. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/claude_hooks/hook_handler.py +213 -30
  26. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/claude_hooks/hook_wrapper.sh +9 -2
  27. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/memory_integration_hook.py +51 -5
  28. claude_mpm-3.4.0/src/claude_mpm/services/__init__.py +33 -0
  29. claude_mpm-3.4.0/src/claude_mpm/services/agent_memory_manager.py +1413 -0
  30. claude_mpm-3.4.0/src/claude_mpm/services/memory_builder.py +823 -0
  31. claude_mpm-3.4.0/src/claude_mpm/services/memory_optimizer.py +619 -0
  32. claude_mpm-3.4.0/src/claude_mpm/services/memory_router.py +445 -0
  33. claude_mpm-3.4.0/src/claude_mpm/services/project_analyzer.py +771 -0
  34. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/socketio_server.py +649 -45
  35. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/version_control/git_operations.py +26 -0
  36. claude_mpm-3.4.0/src/claude_mpm.egg-info/PKG-INFO +183 -0
  37. claude_mpm-3.4.0/src/claude_mpm.egg-info/SOURCES.txt +216 -0
  38. claude_mpm-3.3.0/.ai-trackdown/config.yaml +0 -28
  39. claude_mpm-3.3.0/.ai-trackdown/project.yaml +0 -8
  40. claude_mpm-3.3.0/.aitrackdown/project.json +0 -1
  41. claude_mpm-3.3.0/.aitrackdown-config.yaml +0 -10
  42. claude_mpm-3.3.0/.claude/.claude.json +0 -35
  43. claude_mpm-3.3.0/.claude/.claude.json.backup +0 -35
  44. claude_mpm-3.3.0/.claude/agents/data_engineer.yaml +0 -180
  45. claude_mpm-3.3.0/.claude/agents/documentation.yaml +0 -117
  46. claude_mpm-3.3.0/.claude/agents/engineer.yaml +0 -232
  47. claude_mpm-3.3.0/.claude/agents/ops.yaml +0 -119
  48. claude_mpm-3.3.0/.claude/agents/pm.yaml +0 -138
  49. claude_mpm-3.3.0/.claude/agents/qa.yaml +0 -118
  50. claude_mpm-3.3.0/.claude/agents/research.yaml +0 -303
  51. claude_mpm-3.3.0/.claude/agents/security.yaml +0 -127
  52. claude_mpm-3.3.0/.claude/agents/version_control.yaml +0 -119
  53. claude_mpm-3.3.0/.claude/commands/README.md +0 -36
  54. claude_mpm-3.3.0/.claude/commands/mpm.md +0 -5
  55. claude_mpm-3.3.0/.claude/hooks.json +0 -32
  56. claude_mpm-3.3.0/.claude/scripts/command_router.py +0 -60
  57. claude_mpm-3.3.0/.claude/settings.json +0 -37
  58. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753448752189-02zmkd.sh +0 -4511
  59. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753448752717-t1o960.sh +0 -4511
  60. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753448753258-cz40yi.sh +0 -4511
  61. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753448753816-5cj75h.sh +0 -4511
  62. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753449561020-uh844i.sh +0 -4511
  63. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753449676191-16dqe8.sh +0 -4511
  64. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753449766642-8sffyp.sh +0 -4511
  65. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753449795813-bj9blv.sh +0 -4511
  66. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753449953467-ru9ods.sh +0 -4511
  67. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753449966919-eb4aoq.sh +0 -4511
  68. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753450012330-ad1k3g.sh +0 -4511
  69. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753450254970-pvrwgd.sh +0 -4511
  70. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753450398246-etdteg.sh +0 -4511
  71. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753450789791-z5ptuf.sh +0 -4511
  72. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753450861209-w6so3e.sh +0 -4511
  73. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753451302996-01ahjc.sh +0 -4511
  74. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753451384857-mvpmcf.sh +0 -4511
  75. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753451508182-v942iw.sh +0 -4511
  76. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753451525128-q52z98.sh +0 -4511
  77. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753452958143-rd4nut.sh +0 -4511
  78. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753453029843-tyfjfo.sh +0 -4511
  79. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753460195020-02l99b.sh +0 -4511
  80. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753460396315-znuas3.sh +0 -4511
  81. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753460428488-tcy6i5.sh +0 -4511
  82. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753460542243-l181zr.sh +0 -4511
  83. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753461397341-fdy0v7.sh +0 -4511
  84. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753469116715-v6dpx9.sh +0 -4511
  85. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753477538332-i5g2cr.sh +0 -4511
  86. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753477560204-7vo17t.sh +0 -4511
  87. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753477883629-hsjia3.sh +0 -4511
  88. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753477961808-oiyqie.sh +0 -4511
  89. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753478292112-5g3i0g.sh +0 -4511
  90. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753478337101-xe1uid.sh +0 -4511
  91. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753478342176-env102.sh +0 -4511
  92. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753478361973-nr1cwq.sh +0 -4511
  93. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753478372714-lamo9k.sh +0 -4511
  94. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753478388184-yxkay7.sh +0 -4511
  95. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753478392376-eygj04.sh +0 -4511
  96. claude_mpm-3.3.0/.claude/shell-snapshots/snapshot-zsh-1753482158558-cr2h0o.sh +0 -4511
  97. claude_mpm-3.3.0/.claude/todos/0aaf869f-0009-4249-b955-1c3942ff239f-agent-0aaf869f-0009-4249-b955-1c3942ff239f.json +0 -20
  98. claude_mpm-3.3.0/.claude/todos/0c24ded8-9422-489d-8d18-f83cc0737181-agent-0c24ded8-9422-489d-8d18-f83cc0737181.json +0 -1
  99. claude_mpm-3.3.0/.claude/todos/0d9501e6-77b0-4e8f-b132-bae208ed740a-agent-0d9501e6-77b0-4e8f-b132-bae208ed740a.json +0 -1
  100. claude_mpm-3.3.0/.claude/todos/1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5-agent-048a118d-f0ea-4dce-90d3-d851514aa36a.json +0 -50
  101. claude_mpm-3.3.0/.claude/todos/1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5-agent-0600940d-65ff-4678-ac90-9e0d42a3e138.json +0 -50
  102. claude_mpm-3.3.0/.claude/todos/1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5-agent-1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5.json +0 -8
  103. claude_mpm-3.3.0/.claude/todos/1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5-agent-1b8badbc-b05e-459e-b16c-a974f28673be.json +0 -38
  104. claude_mpm-3.3.0/.claude/todos/1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5-agent-231626b2-0ce7-44fb-82e4-a9e72fdcecc4.json +0 -38
  105. claude_mpm-3.3.0/.claude/todos/1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5-agent-2799acc0-b5e3-4086-940e-62bd2a5bbd7d.json +0 -38
  106. claude_mpm-3.3.0/.claude/todos/1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5-agent-42b0c458-9d5f-4745-826e-7c618d3a7026.json +0 -38
  107. claude_mpm-3.3.0/.claude/todos/1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5-agent-a324c872-b962-4438-b794-7966f5d7a7a9.json +0 -32
  108. claude_mpm-3.3.0/.claude/todos/1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5-agent-ce91e7fd-64af-4f57-b691-1487c2db8d0b.json +0 -38
  109. claude_mpm-3.3.0/.claude/todos/1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5-agent-dd250db2-edbb-43fc-a143-3eeafc0cd7fa.json +0 -38
  110. claude_mpm-3.3.0/.claude/todos/1060b0c4-2bf3-414f-bd75-d6f8dcad9eb5-agent-f0cbf9cd-0136-4bca-b0e0-c66aa58d3aeb.json +0 -38
  111. claude_mpm-3.3.0/.claude/todos/109c42c9-0afd-4a5b-a1b3-e515e31b6a2f-agent-109c42c9-0afd-4a5b-a1b3-e515e31b6a2f.json +0 -1
  112. claude_mpm-3.3.0/.claude/todos/1163a193-8464-4195-8281-6b875b5d987d-agent-1163a193-8464-4195-8281-6b875b5d987d.json +0 -1
  113. claude_mpm-3.3.0/.claude/todos/128d2198-5b02-422c-9531-f3396cbf0ce0-agent-128d2198-5b02-422c-9531-f3396cbf0ce0.json +0 -1
  114. claude_mpm-3.3.0/.claude/todos/16c51506-6afa-43aa-b199-da0c853f99a9-agent-16c51506-6afa-43aa-b199-da0c853f99a9.json +0 -1
  115. claude_mpm-3.3.0/.claude/todos/1736bdd7-71f4-49a0-934d-18e3aa5e0b43-agent-1736bdd7-71f4-49a0-934d-18e3aa5e0b43.json +0 -1
  116. claude_mpm-3.3.0/.claude/todos/1869eedc-69fc-4e81-a8ac-f57bd8e3946b-agent-1869eedc-69fc-4e81-a8ac-f57bd8e3946b.json +0 -1
  117. claude_mpm-3.3.0/.claude/todos/1a97dfda-12e5-4f13-8c8a-731373694a1c-agent-1a97dfda-12e5-4f13-8c8a-731373694a1c.json +0 -1
  118. claude_mpm-3.3.0/.claude/todos/283ac74b-5516-43f8-9548-24ded2b643b1-agent-283ac74b-5516-43f8-9548-24ded2b643b1.json +0 -1
  119. claude_mpm-3.3.0/.claude/todos/2ba08561-559e-4f64-9522-8d6c340e47da-agent-2ba08561-559e-4f64-9522-8d6c340e47da.json +0 -1
  120. claude_mpm-3.3.0/.claude/todos/31da8ed9-e1a5-40c8-91c8-8e9b51ca24a9-agent-31da8ed9-e1a5-40c8-91c8-8e9b51ca24a9.json +0 -1
  121. claude_mpm-3.3.0/.claude/todos/35194d51-6b8f-4ef5-b771-b0aa03f49a88-agent-35194d51-6b8f-4ef5-b771-b0aa03f49a88.json +0 -1
  122. claude_mpm-3.3.0/.claude/todos/3d1c0368-e607-4f47-b02d-7c0922cc0f25-agent-3d1c0368-e607-4f47-b02d-7c0922cc0f25.json +0 -1
  123. claude_mpm-3.3.0/.claude/todos/3d46c625-6377-4296-b9b3-22bc19341092-agent-3d46c625-6377-4296-b9b3-22bc19341092.json +0 -1
  124. claude_mpm-3.3.0/.claude/todos/40072791-2f2f-4743-b763-ec19321ccb0b-agent-40072791-2f2f-4743-b763-ec19321ccb0b.json +0 -1
  125. claude_mpm-3.3.0/.claude/todos/4157ab6d-5025-4862-82eb-5818c43c5a8c-agent-4157ab6d-5025-4862-82eb-5818c43c5a8c.json +0 -1
  126. claude_mpm-3.3.0/.claude/todos/458938f3-a317-46f3-8359-86f05ccacc7d-agent-458938f3-a317-46f3-8359-86f05ccacc7d.json +0 -1
  127. claude_mpm-3.3.0/.claude/todos/4dcf1510-e396-47bb-ac32-f62811ae9774-agent-4dcf1510-e396-47bb-ac32-f62811ae9774.json +0 -26
  128. claude_mpm-3.3.0/.claude/todos/4e71e501-1438-4c7d-8a89-18818b16ccb5-agent-4e71e501-1438-4c7d-8a89-18818b16ccb5.json +0 -1
  129. claude_mpm-3.3.0/.claude/todos/4eb9a1c4-92b0-44ee-9322-6ba0442efd42-agent-4eb9a1c4-92b0-44ee-9322-6ba0442efd42.json +0 -1
  130. claude_mpm-3.3.0/.claude/todos/4f57fa86-e804-4c8e-a0ff-196835df5bc9-agent-4f57fa86-e804-4c8e-a0ff-196835df5bc9.json +0 -1
  131. claude_mpm-3.3.0/.claude/todos/518e2724-687e-4ae3-bde9-582c8718695a-agent-518e2724-687e-4ae3-bde9-582c8718695a.json +0 -1
  132. claude_mpm-3.3.0/.claude/todos/51abf2eb-4e5a-4731-bd23-76cffe656a40-agent-51abf2eb-4e5a-4731-bd23-76cffe656a40.json +0 -1
  133. claude_mpm-3.3.0/.claude/todos/53c4beda-27f3-4247-ada4-f904320995ad-agent-53c4beda-27f3-4247-ada4-f904320995ad.json +0 -1
  134. claude_mpm-3.3.0/.claude/todos/56581e8b-07b1-4174-bf81-c280a3dee6b4-agent-56581e8b-07b1-4174-bf81-c280a3dee6b4.json +0 -1
  135. claude_mpm-3.3.0/.claude/todos/58848224-56e6-49f6-a4e5-c08f8f70c426-agent-58848224-56e6-49f6-a4e5-c08f8f70c426.json +0 -1
  136. claude_mpm-3.3.0/.claude/todos/58cf2d09-fd22-4a2e-8c74-c247ece6c802-agent-58cf2d09-fd22-4a2e-8c74-c247ece6c802.json +0 -8
  137. claude_mpm-3.3.0/.claude/todos/5bcc2e07-617c-4659-b82f-6b630ea891ff-agent-5bcc2e07-617c-4659-b82f-6b630ea891ff.json +0 -1
  138. claude_mpm-3.3.0/.claude/todos/5bf326e7-b61a-4d82-b483-94d5d7085755-agent-5bf326e7-b61a-4d82-b483-94d5d7085755.json +0 -1
  139. claude_mpm-3.3.0/.claude/todos/5dee78ec-d9ed-4484-b101-5490217fe423-agent-5dee78ec-d9ed-4484-b101-5490217fe423.json +0 -20
  140. claude_mpm-3.3.0/.claude/todos/5f6c7624-6a25-4ed9-be09-03fa3a70c4d8-agent-5f6c7624-6a25-4ed9-be09-03fa3a70c4d8.json +0 -1
  141. claude_mpm-3.3.0/.claude/todos/606431c0-6b47-4fb8-b386-132918a3aa0b-agent-606431c0-6b47-4fb8-b386-132918a3aa0b.json +0 -1
  142. claude_mpm-3.3.0/.claude/todos/6078e96f-e9a4-435f-8d2f-cf70346ebafe-agent-6078e96f-e9a4-435f-8d2f-cf70346ebafe.json +0 -20
  143. claude_mpm-3.3.0/.claude/todos/69e5a32b-bf2c-4264-93cd-6ac84b44ca9f-agent-69e5a32b-bf2c-4264-93cd-6ac84b44ca9f.json +0 -1
  144. claude_mpm-3.3.0/.claude/todos/6b729248-47b8-4657-ad7f-7f09fff21151-agent-6b729248-47b8-4657-ad7f-7f09fff21151.json +0 -1
  145. claude_mpm-3.3.0/.claude/todos/6d6970e8-f95f-468b-a8b8-3eacca8f1220-agent-6d6970e8-f95f-468b-a8b8-3eacca8f1220.json +0 -1
  146. claude_mpm-3.3.0/.claude/todos/6ec6cfa4-f2fd-4515-9c95-3ea74fbc571b-agent-6ec6cfa4-f2fd-4515-9c95-3ea74fbc571b.json +0 -1
  147. claude_mpm-3.3.0/.claude/todos/713e1bda-caa2-4cb9-a5a2-b7c6fec5776f-agent-713e1bda-caa2-4cb9-a5a2-b7c6fec5776f.json +0 -32
  148. claude_mpm-3.3.0/.claude/todos/71e6da9f-0dcd-4abd-ae8f-a5af695d9624-agent-71e6da9f-0dcd-4abd-ae8f-a5af695d9624.json +0 -1
  149. claude_mpm-3.3.0/.claude/todos/7653f086-93df-4423-98ce-640305e10823-agent-7653f086-93df-4423-98ce-640305e10823.json +0 -1
  150. claude_mpm-3.3.0/.claude/todos/76656734-acd3-411c-b333-f274dabae19c-agent-76656734-acd3-411c-b333-f274dabae19c.json +0 -44
  151. claude_mpm-3.3.0/.claude/todos/78150f02-9204-437c-9e12-9e800f3f73b9-agent-78150f02-9204-437c-9e12-9e800f3f73b9.json +0 -20
  152. claude_mpm-3.3.0/.claude/todos/7dda0a32-2834-4a47-9734-9ae9ca5b1a31-agent-7dda0a32-2834-4a47-9734-9ae9ca5b1a31.json +0 -1
  153. claude_mpm-3.3.0/.claude/todos/84b4d3c7-5506-4e4e-87dd-9cc48b8bc2ec-agent-84b4d3c7-5506-4e4e-87dd-9cc48b8bc2ec.json +0 -1
  154. claude_mpm-3.3.0/.claude/todos/86ce0d12-f82e-49b2-b553-2cd8a7e188a3-agent-86ce0d12-f82e-49b2-b553-2cd8a7e188a3.json +0 -1
  155. claude_mpm-3.3.0/.claude/todos/87626114-6cb1-43ef-978a-bb35f612e4eb-agent-87626114-6cb1-43ef-978a-bb35f612e4eb.json +0 -1
  156. claude_mpm-3.3.0/.claude/todos/880d3ea5-649e-449e-88bc-664a291ec338-agent-880d3ea5-649e-449e-88bc-664a291ec338.json +0 -38
  157. claude_mpm-3.3.0/.claude/todos/8962e6d9-0fc0-4578-bb08-a5dfbc2dbe5e-agent-8962e6d9-0fc0-4578-bb08-a5dfbc2dbe5e.json +0 -1
  158. claude_mpm-3.3.0/.claude/todos/8f998b9e-5f18-4ade-bd69-74c95a210f6a-agent-8f998b9e-5f18-4ade-bd69-74c95a210f6a.json +0 -1
  159. claude_mpm-3.3.0/.claude/todos/929364bd-aa69-4831-850e-37f8ab63803d-agent-929364bd-aa69-4831-850e-37f8ab63803d.json +0 -1
  160. claude_mpm-3.3.0/.claude/todos/95479b6c-cfbf-4bb7-9e00-b95a0b385775-agent-95479b6c-cfbf-4bb7-9e00-b95a0b385775.json +0 -1
  161. claude_mpm-3.3.0/.claude/todos/9628cc3a-355a-48f0-ab54-c28ac2e05dfe-agent-9628cc3a-355a-48f0-ab54-c28ac2e05dfe.json +0 -1
  162. claude_mpm-3.3.0/.claude/todos/a877fe3a-7057-49a9-9726-239ddb3421ee-agent-a877fe3a-7057-49a9-9726-239ddb3421ee.json +0 -1
  163. claude_mpm-3.3.0/.claude/todos/a9136d1b-6e01-4879-972f-5fcdde5e08d7-agent-a9136d1b-6e01-4879-972f-5fcdde5e08d7.json +0 -1
  164. claude_mpm-3.3.0/.claude/todos/b10ff15f-3c8c-46d7-93b4-a0d4d5ec4003-agent-b10ff15f-3c8c-46d7-93b4-a0d4d5ec4003.json +0 -1
  165. claude_mpm-3.3.0/.claude/todos/b1206d13-f0ec-4f53-a746-a845732fefd7-agent-b1206d13-f0ec-4f53-a746-a845732fefd7.json +0 -1
  166. claude_mpm-3.3.0/.claude/todos/b61be2e4-7de3-4e1b-b636-2232190ffc5c-agent-b61be2e4-7de3-4e1b-b636-2232190ffc5c.json +0 -1
  167. claude_mpm-3.3.0/.claude/todos/b80ad406-64d1-4a6c-b781-15496265fae0-agent-b80ad406-64d1-4a6c-b781-15496265fae0.json +0 -1
  168. claude_mpm-3.3.0/.claude/todos/babc6eac-d7d6-498a-8176-e09e00423a12-agent-babc6eac-d7d6-498a-8176-e09e00423a12.json +0 -1
  169. claude_mpm-3.3.0/.claude/todos/bf4b7700-9630-466e-afb0-8904fbddac42-agent-bf4b7700-9630-466e-afb0-8904fbddac42.json +0 -1
  170. claude_mpm-3.3.0/.claude/todos/c2189d0d-9c2b-400a-bf7c-3989ef6cd37d-agent-c2189d0d-9c2b-400a-bf7c-3989ef6cd37d.json +0 -1
  171. claude_mpm-3.3.0/.claude/todos/c35ee595-142f-454b-bb36-dc434d4a80a6-agent-c35ee595-142f-454b-bb36-dc434d4a80a6.json +0 -1
  172. claude_mpm-3.3.0/.claude/todos/c629949d-4641-45ff-81d3-d7c8f353da81-agent-c629949d-4641-45ff-81d3-d7c8f353da81.json +0 -1
  173. claude_mpm-3.3.0/.claude/todos/c8cecbec-a3bb-4507-98a4-c590a4e919b2-agent-c8cecbec-a3bb-4507-98a4-c590a4e919b2.json +0 -38
  174. claude_mpm-3.3.0/.claude/todos/cce78c00-7309-4bc4-802c-3bad75be09cc-agent-cce78c00-7309-4bc4-802c-3bad75be09cc.json +0 -1
  175. claude_mpm-3.3.0/.claude/todos/d55a3a18-0143-4401-ba56-ea630982c105-agent-d55a3a18-0143-4401-ba56-ea630982c105.json +0 -32
  176. claude_mpm-3.3.0/.claude/todos/d881887b-49bc-4fda-acda-c866681c8f13-agent-d881887b-49bc-4fda-acda-c866681c8f13.json +0 -20
  177. claude_mpm-3.3.0/.claude/todos/db3e76fb-7b9d-4f1c-8822-cce448fdf9e6-agent-db3e76fb-7b9d-4f1c-8822-cce448fdf9e6.json +0 -1
  178. claude_mpm-3.3.0/.claude/todos/dc7344a6-cd2e-4f20-a945-deb2e39f4fbc-agent-dc7344a6-cd2e-4f20-a945-deb2e39f4fbc.json +0 -1
  179. claude_mpm-3.3.0/.claude/todos/eb12ed58-94e3-490a-b8c8-b2912fa77fbe-agent-eb12ed58-94e3-490a-b8c8-b2912fa77fbe.json +0 -1
  180. claude_mpm-3.3.0/.claude/todos/ef4c285d-d79b-4c6e-a458-49cb26bf3c0a-agent-ef4c285d-d79b-4c6e-a458-49cb26bf3c0a.json +0 -1
  181. claude_mpm-3.3.0/.claude/todos/f295b25f-51d8-4fff-b71d-aa18d7028466-agent-f295b25f-51d8-4fff-b71d-aa18d7028466.json +0 -1
  182. claude_mpm-3.3.0/.claude/todos/f2a683d3-4d16-4c94-bf52-03efaf45f7f1-agent-f2a683d3-4d16-4c94-bf52-03efaf45f7f1.json +0 -1
  183. claude_mpm-3.3.0/.claude/todos/f536b1f5-879c-4236-9718-599337ffc815-agent-f536b1f5-879c-4236-9718-599337ffc815.json +0 -1
  184. claude_mpm-3.3.0/.claude/todos/fabcbe8a-6751-454b-a240-e9393391e2e9-agent-fabcbe8a-6751-454b-a240-e9393391e2e9.json +0 -1
  185. claude_mpm-3.3.0/.claude/todos/fdebc52b-3519-44c8-a3af-ce87f39272cd-agent-fdebc52b-3519-44c8-a3af-ce87f39272cd.json +0 -1
  186. claude_mpm-3.3.0/.claude/todos/fe57db22-5ef9-4522-9423-5c20dd665ef6-agent-fe57db22-5ef9-4522-9423-5c20dd665ef6.json +0 -1
  187. claude_mpm-3.3.0/.claude-mpm/.claude.json +0 -20
  188. claude_mpm-3.3.0/.claude-mpm/.claude.json.backup +0 -20
  189. claude_mpm-3.3.0/.claude-mpm/.gitignore +0 -13
  190. claude_mpm-3.3.0/.claude-mpm/README.md +0 -17
  191. claude_mpm-3.3.0/.claude-mpm/agents/README.md +0 -12
  192. claude_mpm-3.3.0/.claude-mpm/agents/poc-engineer.md +0 -30
  193. claude_mpm-3.3.0/.claude-mpm/agents/poc-qa.md +0 -29
  194. claude_mpm-3.3.0/.claude-mpm/agents/poc-researcher.md +0 -29
  195. claude_mpm-3.3.0/.claude-mpm/agents/test-agent.md +0 -8
  196. claude_mpm-3.3.0/.claude-mpm/agents/test-agent.yaml +0 -8
  197. claude_mpm-3.3.0/.claude-mpm/config/project.json +0 -11
  198. claude_mpm-3.3.0/.claude-mpm/projects/-Users-masa-Projects-claude-mpm/1f2d5a1d-a2fd-4c26-a1b2-3822f3a5fbf5.jsonl +0 -2
  199. claude_mpm-3.3.0/.claude-mpm/projects/-Users-masa-Projects-claude-mpm/9217ce88-3ece-41db-adc8-9fc8532c6314.jsonl +0 -3
  200. claude_mpm-3.3.0/.claude-mpm/shell-snapshots/snapshot-zsh-1753447830017-dejufl.sh +0 -4511
  201. claude_mpm-3.3.0/.claude-mpm/shell-snapshots/snapshot-zsh-1753447830478-zr6tpi.sh +0 -4511
  202. claude_mpm-3.3.0/.claude-mpm/stats/README.md +0 -8
  203. claude_mpm-3.3.0/.claude-mpm/statsig/statsig.cached.evaluations.85901da9f9 +0 -1
  204. claude_mpm-3.3.0/.claude-mpm/statsig/statsig.last_modified_time.evaluations +0 -1
  205. claude_mpm-3.3.0/.claude-mpm/statsig/statsig.session_id.2656274335 +0 -1
  206. claude_mpm-3.3.0/.claude-mpm/statsig/statsig.stable_id.2656274335 +0 -1
  207. claude_mpm-3.3.0/.claude-mpm/todos/1f2d5a1d-a2fd-4c26-a1b2-3822f3a5fbf5-agent-1f2d5a1d-a2fd-4c26-a1b2-3822f3a5fbf5.json +0 -1
  208. claude_mpm-3.3.0/.claude-mpm/todos/9217ce88-3ece-41db-adc8-9fc8532c6314-agent-9217ce88-3ece-41db-adc8-9fc8532c6314.json +0 -1
  209. claude_mpm-3.3.0/.claude-pm/config/project.json +0 -6
  210. claude_mpm-3.3.0/.githooks/pre-commit +0 -50
  211. claude_mpm-3.3.0/.gitignore +0 -43
  212. claude_mpm-3.3.0/.npmignore +0 -50
  213. claude_mpm-3.3.0/.python-version +0 -1
  214. claude_mpm-3.3.0/.trackdown.yaml +0 -30
  215. claude_mpm-3.3.0/CHANGELOG.md +0 -383
  216. claude_mpm-3.3.0/INSTALL.md +0 -204
  217. claude_mpm-3.3.0/Makefile +0 -258
  218. claude_mpm-3.3.0/PKG-INFO +0 -432
  219. claude_mpm-3.3.0/README.md +0 -382
  220. claude_mpm-3.3.0/README.npm.md +0 -107
  221. claude_mpm-3.3.0/VERSION +0 -1
  222. claude_mpm-3.3.0/bin/claude-mpm +0 -89
  223. claude_mpm-3.3.0/bin/claude-mpm-hooks +0 -106
  224. claude_mpm-3.3.0/bin/ticket +0 -60
  225. claude_mpm-3.3.0/config/mcp_services.yaml +0 -117
  226. claude_mpm-3.3.0/docker/Dockerfile +0 -58
  227. claude_mpm-3.3.0/docker/Dockerfile.npm +0 -51
  228. claude_mpm-3.3.0/docker/Dockerfile.npm-local +0 -58
  229. claude_mpm-3.3.0/docker/Dockerfile.npm-simple +0 -62
  230. claude_mpm-3.3.0/docker/Dockerfile.npm-test +0 -53
  231. claude_mpm-3.3.0/docker/Dockerfile.pip +0 -58
  232. claude_mpm-3.3.0/examples/awesome-patterns/enhanced_claude_md_example.md +0 -145
  233. claude_mpm-3.3.0/examples/awesome-patterns/slash_command_example.md +0 -322
  234. claude_mpm-3.3.0/examples/awesome-patterns/validation_first_example.py +0 -295
  235. claude_mpm-3.3.0/examples/dependency_injection_demo.py +0 -190
  236. claude_mpm-3.3.0/examples/json_rpc_hooks_demo.py +0 -109
  237. claude_mpm-3.3.0/examples/todo_prefix_hook_example.py +0 -176
  238. claude_mpm-3.3.0/examples/todo_prefix_hook_integration.py +0 -239
  239. claude_mpm-3.3.0/install.sh +0 -141
  240. claude_mpm-3.3.0/install_dev.sh +0 -74
  241. claude_mpm-3.3.0/npm-bin/claude-mpm.js +0 -386
  242. claude_mpm-3.3.0/package.json +0 -49
  243. claude_mpm-3.3.0/scripts/add_agent_versioning.py +0 -41
  244. claude_mpm-3.3.0/scripts/analyze_framework_loaders.py +0 -32
  245. claude_mpm-3.3.0/scripts/analyze_git_clickup_correlation.py +0 -589
  246. claude_mpm-3.3.0/scripts/check_version_sync.py +0 -108
  247. claude_mpm-3.3.0/scripts/claude-mpm +0 -148
  248. claude_mpm-3.3.0/scripts/cleanup_logs.py +0 -256
  249. claude_mpm-3.3.0/scripts/consolidate_services.py +0 -38
  250. claude_mpm-3.3.0/scripts/convert_agents_to_yaml.py +0 -186
  251. claude_mpm-3.3.0/scripts/demo/subprocess_before_after.py +0 -234
  252. claude_mpm-3.3.0/scripts/demo/subprocess_improvements_demo.py +0 -407
  253. claude_mpm-3.3.0/scripts/demo_hook_behavior.sh +0 -53
  254. claude_mpm-3.3.0/scripts/deploy_local.sh +0 -443
  255. claude_mpm-3.3.0/scripts/fix_all_fallback_imports.py +0 -68
  256. claude_mpm-3.3.0/scripts/fix_all_imports.py +0 -241
  257. claude_mpm-3.3.0/scripts/fix_fallback_imports.py +0 -58
  258. claude_mpm-3.3.0/scripts/install_hooks.py +0 -172
  259. claude_mpm-3.3.0/scripts/interactive_wrapper.py +0 -109
  260. claude_mpm-3.3.0/scripts/launch_with_agents.py +0 -191
  261. claude_mpm-3.3.0/scripts/migrate_agents_to_new_schema.py +0 -378
  262. claude_mpm-3.3.0/scripts/migrate_logging_imports.py +0 -99
  263. claude_mpm-3.3.0/scripts/migrate_to_json_rpc_hooks.py +0 -164
  264. claude_mpm-3.3.0/scripts/monitor_mcp_services.py +0 -453
  265. claude_mpm-3.3.0/scripts/mpm_test.py +0 -11
  266. claude_mpm-3.3.0/scripts/publish.sh +0 -98
  267. claude_mpm-3.3.0/scripts/release.py +0 -876
  268. claude_mpm-3.3.0/scripts/remove_remaining_ticketing.py +0 -150
  269. claude_mpm-3.3.0/scripts/remove_ticketing_references.py +0 -82
  270. claude_mpm-3.3.0/scripts/requirements_analysis.txt +0 -7
  271. claude_mpm-3.3.0/scripts/run_all_tests.sh +0 -30
  272. claude_mpm-3.3.0/scripts/run_e2e_tests.sh +0 -48
  273. claude_mpm-3.3.0/scripts/setup_local_mcp.sh +0 -457
  274. claude_mpm-3.3.0/scripts/show_pm_system_prompt.py +0 -50
  275. claude_mpm-3.3.0/scripts/standardize_imports.py +0 -281
  276. claude_mpm-3.3.0/scripts/sync_tickets_github.sh +0 -109
  277. claude_mpm-3.3.0/scripts/test_agent_capabilities_usage.py +0 -167
  278. claude_mpm-3.3.0/scripts/test_agent_compatibility.py +0 -48
  279. claude_mpm-3.3.0/scripts/test_agent_content_verification.py +0 -85
  280. claude_mpm-3.3.0/scripts/test_agent_deployment.py +0 -127
  281. claude_mpm-3.3.0/scripts/test_agent_deployment_integration.py +0 -154
  282. claude_mpm-3.3.0/scripts/test_agent_deployment_validation.py +0 -254
  283. claude_mpm-3.3.0/scripts/test_agent_functionality_complete.py +0 -402
  284. claude_mpm-3.3.0/scripts/test_agent_loader.py +0 -153
  285. claude_mpm-3.3.0/scripts/test_agent_loader_edge_cases.py +0 -182
  286. claude_mpm-3.3.0/scripts/test_agent_loader_integration.py +0 -112
  287. claude_mpm-3.3.0/scripts/test_agent_loading.py +0 -42
  288. claude_mpm-3.3.0/scripts/test_agent_manager_integration.py +0 -286
  289. claude_mpm-3.3.0/scripts/test_agent_migration.py +0 -166
  290. claude_mpm-3.3.0/scripts/test_agent_name_consistency.py +0 -282
  291. claude_mpm-3.3.0/scripts/test_agent_name_formats.py +0 -82
  292. claude_mpm-3.3.0/scripts/test_agent_schema_system.py +0 -191
  293. claude_mpm-3.3.0/scripts/test_agent_validation_security.py +0 -208
  294. claude_mpm-3.3.0/scripts/test_agent_version_display.py +0 -12
  295. claude_mpm-3.3.0/scripts/test_agents_command.py +0 -70
  296. claude_mpm-3.3.0/scripts/test_basic_functionality.py +0 -127
  297. claude_mpm-3.3.0/scripts/test_deployment_dynamic_capabilities.py +0 -160
  298. claude_mpm-3.3.0/scripts/test_deployment_manager_capabilities.py +0 -135
  299. claude_mpm-3.3.0/scripts/test_dynamic_capabilities.py +0 -156
  300. claude_mpm-3.3.0/scripts/test_dynamic_capabilities_comprehensive.py +0 -467
  301. claude_mpm-3.3.0/scripts/test_edge_cases.py +0 -211
  302. claude_mpm-3.3.0/scripts/test_file_access_implementation.py +0 -153
  303. claude_mpm-3.3.0/scripts/test_git_clickup_analysis.py +0 -325
  304. claude_mpm-3.3.0/scripts/test_hello_world.py +0 -76
  305. claude_mpm-3.3.0/scripts/test_helloworld_python_hook.py +0 -66
  306. claude_mpm-3.3.0/scripts/test_helloworld_shell_hook.sh +0 -29
  307. claude_mpm-3.3.0/scripts/test_integration.py +0 -161
  308. claude_mpm-3.3.0/scripts/test_integration_performance.py +0 -279
  309. claude_mpm-3.3.0/scripts/test_integration_simple.py +0 -265
  310. claude_mpm-3.3.0/scripts/test_interactive_setup.py +0 -61
  311. claude_mpm-3.3.0/scripts/test_mcp_integration.sh +0 -72
  312. claude_mpm-3.3.0/scripts/test_mcp_solution.py +0 -437
  313. claude_mpm-3.3.0/scripts/test_migration_flow.py +0 -47
  314. claude_mpm-3.3.0/scripts/test_mpm_agents_integration.py +0 -159
  315. claude_mpm-3.3.0/scripts/test_mpm_command.py +0 -106
  316. claude_mpm-3.3.0/scripts/test_no_agents.py +0 -62
  317. claude_mpm-3.3.0/scripts/test_npm_install.sh +0 -56
  318. claude_mpm-3.3.0/scripts/test_npm_install_simple.sh +0 -83
  319. claude_mpm-3.3.0/scripts/test_performance.py +0 -117
  320. claude_mpm-3.3.0/scripts/test_pm_instructions.py +0 -100
  321. claude_mpm-3.3.0/scripts/test_qa_script_access.py +0 -107
  322. claude_mpm-3.3.0/scripts/test_qa_script_creation.py +0 -121
  323. claude_mpm-3.3.0/scripts/test_real_deployment.py +0 -119
  324. claude_mpm-3.3.0/scripts/test_real_deployment_capabilities.py +0 -192
  325. claude_mpm-3.3.0/scripts/test_redeployment.py +0 -56
  326. claude_mpm-3.3.0/scripts/test_release_enhancements.py +0 -140
  327. claude_mpm-3.3.0/scripts/test_runtime_capabilities.py +0 -93
  328. claude_mpm-3.3.0/scripts/test_runtime_integration.py +0 -121
  329. claude_mpm-3.3.0/scripts/test_schema_validation.py +0 -94
  330. claude_mpm-3.3.0/scripts/test_semantic_versioning.py +0 -82
  331. claude_mpm-3.3.0/scripts/test_simple_runner_logging.py +0 -155
  332. claude_mpm-3.3.0/scripts/test_subagent_demo.py +0 -137
  333. claude_mpm-3.3.0/scripts/test_system_health.py +0 -185
  334. claude_mpm-3.3.0/scripts/test_todo_hook.py +0 -92
  335. claude_mpm-3.3.0/scripts/test_todo_task_integration.py +0 -160
  336. claude_mpm-3.3.0/scripts/test_version_comparison.py +0 -44
  337. claude_mpm-3.3.0/scripts/test_version_detection.py +0 -71
  338. claude_mpm-3.3.0/scripts/test_version_management.py +0 -73
  339. claude_mpm-3.3.0/scripts/test_version_migration.py +0 -113
  340. claude_mpm-3.3.0/scripts/test_working_dir_simple.py +0 -41
  341. claude_mpm-3.3.0/scripts/tests/run_tests.py +0 -38
  342. claude_mpm-3.3.0/scripts/tests/run_tests_updated.py +0 -47
  343. claude_mpm-3.3.0/scripts/tests/test_agent_integration.py +0 -172
  344. claude_mpm-3.3.0/scripts/tests/test_claude_direct.py +0 -98
  345. claude_mpm-3.3.0/scripts/tests/test_hello_world.py +0 -75
  346. claude_mpm-3.3.0/scripts/tests/test_interactive.py +0 -73
  347. claude_mpm-3.3.0/scripts/tests/test_logging.py +0 -73
  348. claude_mpm-3.3.0/scripts/tests/test_orchestration.py +0 -130
  349. claude_mpm-3.3.0/scripts/tests/test_pexpect.py +0 -42
  350. claude_mpm-3.3.0/scripts/tests/test_pexpect_install.py +0 -30
  351. claude_mpm-3.3.0/scripts/tests/test_subprocess.py +0 -172
  352. claude_mpm-3.3.0/scripts/trace_deployment.py +0 -62
  353. claude_mpm-3.3.0/scripts/validate_agent_configuration.py +0 -268
  354. claude_mpm-3.3.0/scripts/validate_agent_schema.py +0 -63
  355. claude_mpm-3.3.0/scripts/verify_imports.py +0 -137
  356. claude_mpm-3.3.0/src/claude_mpm/agents/agent-template.yaml +0 -83
  357. claude_mpm-3.3.0/src/claude_mpm/agents/templates/data_engineer.json +0 -110
  358. claude_mpm-3.3.0/src/claude_mpm/agents/templates/documentation.json +0 -109
  359. claude_mpm-3.3.0/src/claude_mpm/agents/templates/engineer.json +0 -113
  360. claude_mpm-3.3.0/src/claude_mpm/agents/templates/ops.json +0 -109
  361. claude_mpm-3.3.0/src/claude_mpm/agents/templates/pm.json +0 -25
  362. claude_mpm-3.3.0/src/claude_mpm/agents/templates/qa.json +0 -111
  363. claude_mpm-3.3.0/src/claude_mpm/agents/templates/research.json +0 -65
  364. claude_mpm-3.3.0/src/claude_mpm/agents/templates/security.json +0 -113
  365. claude_mpm-3.3.0/src/claude_mpm/agents/templates/test-integration-agent.md +0 -34
  366. claude_mpm-3.3.0/src/claude_mpm/agents/templates/version_control.json +0 -107
  367. claude_mpm-3.3.0/src/claude_mpm/agents/test_fix_deployment/.claude-pm/config/project.json +0 -6
  368. claude_mpm-3.3.0/src/claude_mpm/cli/README.md +0 -109
  369. claude_mpm-3.3.0/src/claude_mpm/cli/commands/memory.py +0 -232
  370. claude_mpm-3.3.0/src/claude_mpm/cli_module/refactoring_guide.md +0 -253
  371. claude_mpm-3.3.0/src/claude_mpm/core/agent_registry.py.bak +0 -312
  372. claude_mpm-3.3.0/src/claude_mpm/core/base_service.py.bak +0 -406
  373. claude_mpm-3.3.0/src/claude_mpm/core/websocket_handler.py +0 -233
  374. claude_mpm-3.3.0/src/claude_mpm/hooks/README.md +0 -97
  375. claude_mpm-3.3.0/src/claude_mpm/orchestration/SUBPROCESS_DESIGN.md +0 -66
  376. claude_mpm-3.3.0/src/claude_mpm/schemas/README_SECURITY.md +0 -92
  377. claude_mpm-3.3.0/src/claude_mpm/schemas/agent_schema.json +0 -395
  378. claude_mpm-3.3.0/src/claude_mpm/schemas/agent_schema_documentation.md +0 -181
  379. claude_mpm-3.3.0/src/claude_mpm/schemas/agent_schema_security_notes.md +0 -165
  380. claude_mpm-3.3.0/src/claude_mpm/schemas/examples/standard_workflow.json +0 -505
  381. claude_mpm-3.3.0/src/claude_mpm/schemas/ticket_workflow_documentation.md +0 -482
  382. claude_mpm-3.3.0/src/claude_mpm/schemas/ticket_workflow_schema.json +0 -590
  383. claude_mpm-3.3.0/src/claude_mpm/services/__init__.py +0 -15
  384. claude_mpm-3.3.0/src/claude_mpm/services/agent_memory_manager.py +0 -684
  385. claude_mpm-3.3.0/src/claude_mpm/services/framework_claude_md_generator/README.md +0 -92
  386. claude_mpm-3.3.0/src/claude_mpm/services/parent_directory_manager/README.md +0 -83
  387. claude_mpm-3.3.0/src/claude_mpm/services/version_control/VERSION +0 -1
  388. claude_mpm-3.3.0/src/claude_mpm/services/websocket_server.py +0 -376
  389. claude_mpm-3.3.0/src/claude_mpm.egg-info/PKG-INFO +0 -432
  390. claude_mpm-3.3.0/src/claude_mpm.egg-info/SOURCES.txt +0 -627
  391. claude_mpm-3.3.0/tickets/epics/EP-0001.md +0 -71
  392. claude_mpm-3.3.0/tickets/epics/EP-0002-subagent-pivot.md +0 -197
  393. claude_mpm-3.3.0/tickets/epics/EP-0002.md +0 -49
  394. claude_mpm-3.3.0/tickets/epics/EP-0003.md +0 -57
  395. claude_mpm-3.3.0/tickets/epics/EP-0004.md +0 -56
  396. claude_mpm-3.3.0/tickets/issues/CONVERSION_MAPPING.md +0 -23
  397. claude_mpm-3.3.0/tickets/issues/ISS-0001.md +0 -55
  398. claude_mpm-3.3.0/tickets/issues/ISS-0002.md +0 -54
  399. claude_mpm-3.3.0/tickets/issues/ISS-0003.md +0 -55
  400. claude_mpm-3.3.0/tickets/issues/ISS-0004.md +0 -54
  401. claude_mpm-3.3.0/tickets/issues/ISS-0005.md +0 -55
  402. claude_mpm-3.3.0/tickets/issues/ISS-0006.md +0 -55
  403. claude_mpm-3.3.0/tickets/issues/ISS-0007.md +0 -55
  404. claude_mpm-3.3.0/tickets/issues/ISS-0008.md +0 -54
  405. claude_mpm-3.3.0/tickets/issues/ISS-0009.md +0 -55
  406. claude_mpm-3.3.0/tickets/issues/ISS-0010.md +0 -54
  407. claude_mpm-3.3.0/tickets/issues/ISS-0011.md +0 -53
  408. claude_mpm-3.3.0/tickets/issues/ISS-0012.md +0 -52
  409. claude_mpm-3.3.0/tickets/issues/ISS-0013.md +0 -52
  410. claude_mpm-3.3.0/tickets/issues/ISS-0014.md +0 -52
  411. claude_mpm-3.3.0/tickets/issues/ISS-0015.md +0 -52
  412. claude_mpm-3.3.0/tickets/issues/ISS-0016.md +0 -52
  413. claude_mpm-3.3.0/tickets/issues/ISS-0017.md +0 -52
  414. claude_mpm-3.3.0/tickets/issues/ISS-0018.md +0 -52
  415. claude_mpm-3.3.0/tickets/issues/ISS-0019.md +0 -52
  416. claude_mpm-3.3.0/tickets/issues/ISS-0020.md +0 -52
  417. claude_mpm-3.3.0/tickets/issues/ISS-0021.md +0 -52
  418. claude_mpm-3.3.0/tickets/issues/ISS-0022.md +0 -52
  419. claude_mpm-3.3.0/tickets/issues/ISS-0023.md +0 -53
  420. claude_mpm-3.3.0/tickets/issues/ISS-0024.md +0 -53
  421. claude_mpm-3.3.0/tickets/issues/ISS-0025.md +0 -54
  422. claude_mpm-3.3.0/tickets/issues/ISS-0026.md +0 -53
  423. claude_mpm-3.3.0/tickets/issues/ISS-0027.md +0 -53
  424. claude_mpm-3.3.0/tickets/issues/ISS-0028.md +0 -54
  425. claude_mpm-3.3.0/tickets/issues/ISS-0029.md +0 -53
  426. claude_mpm-3.3.0/tickets/issues/ISS-0030.md +0 -54
  427. claude_mpm-3.3.0/tickets/issues/ISS-0031.md +0 -54
  428. claude_mpm-3.3.0/tickets/issues/ISS-0032.md +0 -53
  429. claude_mpm-3.3.0/tickets/tasks/TSK-0001.md +0 -41
  430. claude_mpm-3.3.0/tickets/tasks/TSK-0002.md +0 -47
  431. claude_mpm-3.3.0/tickets/tasks/TSK-0003.md +0 -86
  432. claude_mpm-3.3.0/tickets/tasks/TSK-0004.md +0 -84
  433. claude_mpm-3.3.0/tickets/tasks/TSK-0005.md +0 -59
  434. claude_mpm-3.3.0/tickets/tasks/TSK-0006.md +0 -45
  435. claude_mpm-3.3.0/tickets/tasks/TSK-0007.md +0 -44
  436. claude_mpm-3.3.0/tickets/tasks/TSK-0008.md +0 -44
  437. claude_mpm-3.3.0/tickets/tasks/TSK-0009.md +0 -44
  438. claude_mpm-3.3.0/tickets/tasks/TSK-0011.md +0 -44
  439. claude_mpm-3.3.0/tickets/tasks/TSK-0016.md +0 -44
  440. claude_mpm-3.3.0/tickets/tasks/TSK-0017.md +0 -41
  441. claude_mpm-3.3.0/tickets/tasks/TSK-0018.md +0 -41
  442. claude_mpm-3.3.0/tickets/tasks/TSK-0019.md +0 -42
  443. claude_mpm-3.3.0/tickets/tasks/TSK-0020.md +0 -41
  444. claude_mpm-3.3.0/tickets/tasks/TSK-0021.md +0 -41
  445. claude_mpm-3.3.0/tickets/tasks/TSK-0022.md +0 -41
  446. claude_mpm-3.3.0/tickets/tasks/TSK-0023.md +0 -42
  447. claude_mpm-3.3.0/tickets/tasks/TSK-0024.md +0 -41
  448. claude_mpm-3.3.0/tickets/tasks/TSK-0025.md +0 -41
  449. claude_mpm-3.3.0/tickets/tasks/TSK-0026.md +0 -41
  450. claude_mpm-3.3.0/tickets/tasks/TSK-0027.md +0 -41
  451. claude_mpm-3.3.0/tickets/tasks/TSK-0028.md +0 -42
  452. claude_mpm-3.3.0/tickets/tasks/TSK-0029.md +0 -42
  453. claude_mpm-3.3.0/tickets/tasks/TSK-0030.md +0 -42
  454. claude_mpm-3.3.0/tickets/tasks/TSK-0031.md +0 -219
  455. claude_mpm-3.3.0/tickets/tasks/TSK-0032.md +0 -249
  456. claude_mpm-3.3.0/tickets/tasks/TSK-0033.md +0 -129
  457. claude_mpm-3.3.0/tickets/tasks/TSK-0034.md +0 -122
  458. claude_mpm-3.3.0/tickets/tasks/TSK-0035.md +0 -129
  459. claude_mpm-3.3.0/tickets/tasks/TSK-0036.md +0 -152
  460. claude_mpm-3.3.0/tickets/tasks/TSK-0037.md +0 -42
  461. claude_mpm-3.3.0/tickets/tasks/TSK-0038.md +0 -42
  462. claude_mpm-3.3.0/tickets/tasks/TSK-0039.md +0 -42
  463. claude_mpm-3.3.0/tickets/tasks/TSK-0040.md +0 -64
  464. claude_mpm-3.3.0/tickets/tasks/TSK-0041.md +0 -63
  465. claude_mpm-3.3.0/tickets/tasks/TSK-0042.md +0 -71
  466. claude_mpm-3.3.0/tickets/tasks/TSK-0043.md +0 -81
  467. claude_mpm-3.3.0/tickets/tasks/TSK-0044.md +0 -88
  468. claude_mpm-3.3.0/tickets/tasks/TSK-0045.md +0 -42
  469. claude_mpm-3.3.0/tickets/tasks/TSK-0046.md +0 -126
  470. claude_mpm-3.3.0/uninstall.sh +0 -73
  471. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/LICENSE +0 -0
  472. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/claude-mpm +0 -0
  473. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/pyproject.toml +0 -0
  474. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/requirements.txt +0 -0
  475. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/scripts/run_mpm.py +0 -0
  476. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/scripts/ticket +0 -0
  477. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/setup.cfg +0 -0
  478. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/setup.py +0 -0
  479. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/__init__.py +0 -0
  480. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/__main__.py +0 -0
  481. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/BASE_AGENT_TEMPLATE.md +0 -0
  482. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/INSTRUCTIONS.md +0 -0
  483. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/__init__.py +0 -0
  484. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/agent_loader.py +0 -0
  485. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/agent_loader_integration.py +0 -0
  486. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/agents_metadata.py +0 -0
  487. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/backups/INSTRUCTIONS.md +0 -0
  488. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/base_agent.json +0 -0
  489. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/base_agent_loader.py +0 -0
  490. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/schema/agent_schema.json +0 -0
  491. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/system_agent_config.py +0 -0
  492. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/templates/__init__.py +0 -0
  493. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/templates/backup/data_engineer_agent_20250726_234551.json +0 -0
  494. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/templates/backup/documentation_agent_20250726_234551.json +0 -0
  495. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/templates/backup/engineer_agent_20250726_234551.json +0 -0
  496. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/templates/backup/ops_agent_20250726_234551.json +0 -0
  497. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/templates/backup/qa_agent_20250726_234551.json +0 -0
  498. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/templates/backup/research_agent_20250726_234551.json +0 -0
  499. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/templates/backup/security_agent_20250726_234551.json +0 -0
  500. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/agents/templates/backup/version_control_agent_20250726_234551.json +0 -0
  501. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli/__init__.py +0 -0
  502. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli/commands/__init__.py +0 -0
  503. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli/commands/agents.py +0 -0
  504. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli/commands/info.py +0 -0
  505. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli/commands/tickets.py +0 -0
  506. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli/commands/ui.py +0 -0
  507. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli/utils.py +0 -0
  508. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli_module/__init__.py +0 -0
  509. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli_module/args.py +0 -0
  510. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli_module/commands.py +0 -0
  511. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/cli_module/migration_example.py +0 -0
  512. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/config/__init__.py +0 -0
  513. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/config/socketio_config.py +0 -0
  514. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/__init__.py +0 -0
  515. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/agent_name_normalizer.py +0 -0
  516. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/agent_registry.py +0 -0
  517. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/agent_session_manager.py +0 -0
  518. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/base_service.py +0 -0
  519. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/config_aliases.py +0 -0
  520. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/container.py +0 -0
  521. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/factories.py +0 -0
  522. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/framework_loader.py +0 -0
  523. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/hook_manager.py +0 -0
  524. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/injectable_service.py +0 -0
  525. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/interfaces.py +0 -0
  526. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/logger.py +0 -0
  527. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/minimal_framework_loader.py +0 -0
  528. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/mixins.py +0 -0
  529. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/pm_hook_interceptor.py +0 -0
  530. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/service_registry.py +0 -0
  531. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/socketio_pool.py +0 -0
  532. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/core/tool_access_control.py +0 -0
  533. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/deployment_paths.py +0 -0
  534. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/experimental/cli_enhancements.py +0 -0
  535. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/generators/__init__.py +0 -0
  536. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/generators/agent_profile_generator.py +0 -0
  537. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/__init__.py +0 -0
  538. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/base_hook.py +0 -0
  539. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/builtin/__init__.py +0 -0
  540. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/builtin/logging_hook_example.py +0 -0
  541. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/builtin/memory_hooks_example.py +0 -0
  542. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/builtin/post_delegation_hook_example.py +0 -0
  543. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/builtin/pre_delegation_hook_example.py +0 -0
  544. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/builtin/submit_hook_example.py +0 -0
  545. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/builtin/ticket_extraction_hook_example.py +0 -0
  546. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/builtin/todo_agent_prefix_hook.py +0 -0
  547. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/builtin/workflow_start_hook.py +0 -0
  548. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/claude_hooks/__init__.py +0 -0
  549. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/tool_call_interceptor.py +0 -0
  550. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/hooks/validation_hooks.py +0 -0
  551. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/init.py +0 -0
  552. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/models/__init__.py +0 -0
  553. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/models/agent_definition.py +0 -0
  554. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/__init__.py +0 -0
  555. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/direct_orchestrator.py +0 -0
  556. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/factory.py +0 -0
  557. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/hook_enabled_orchestrator.py +0 -0
  558. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/hook_integration_example.py +0 -0
  559. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/interactive_subprocess_orchestrator.py +0 -0
  560. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/orchestrator.py +0 -0
  561. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/pexpect_orchestrator.py +0 -0
  562. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/pty_orchestrator.py +0 -0
  563. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/simple_orchestrator.py +0 -0
  564. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/subprocess_orchestrator.py +0 -0
  565. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/system_prompt_orchestrator.py +0 -0
  566. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/orchestration/archive/wrapper_orchestrator.py +0 -0
  567. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/schemas/workflow_validator.py +0 -0
  568. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/scripts/__init__.py +0 -0
  569. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/scripts/claude-mpm-socketio +0 -0
  570. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/scripts/claude_mpm_monitor.html +0 -0
  571. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/scripts/install_socketio_server.py +0 -0
  572. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/scripts/launch_monitor.py +0 -0
  573. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/scripts/launch_socketio_dashboard.py +0 -0
  574. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/scripts/manage_version.py +0 -0
  575. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/scripts/socketio_daemon.py +0 -0
  576. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/scripts/socketio_server_manager.py +0 -0
  577. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/scripts/ticket.py +0 -0
  578. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/agent_capabilities_generator.py +0 -0
  579. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/agent_deployment.py +0 -0
  580. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/agent_lifecycle_manager.py +0 -0
  581. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/agent_management_service.py +0 -0
  582. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/agent_modification_tracker.py +0 -0
  583. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/agent_persistence_service.py +0 -0
  584. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/agent_profile_loader.py +0 -0
  585. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/agent_registry.py +0 -0
  586. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/agent_versioning.py +0 -0
  587. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/base_agent_manager.py +0 -0
  588. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/deployed_agent_discovery.py +0 -0
  589. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_agent_loader.py +0 -0
  590. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/__init__.py +0 -0
  591. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/content_assembler.py +0 -0
  592. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/content_validator.py +0 -0
  593. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/deployment_manager.py +0 -0
  594. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/__init__.py +0 -0
  595. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/agents.py +0 -0
  596. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/claude_pm_init.py +0 -0
  597. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/core_responsibilities.py +0 -0
  598. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/delegation_constraints.py +0 -0
  599. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/environment_config.py +0 -0
  600. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/footer.py +0 -0
  601. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/header.py +0 -0
  602. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/orchestration_principles.py +0 -0
  603. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/role_designation.py +0 -0
  604. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/subprocess_validation.py +0 -0
  605. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/todo_task_tools.py +0 -0
  606. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_generators/troubleshooting.py +0 -0
  607. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/section_manager.py +0 -0
  608. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator/version_manager.py +0 -0
  609. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/framework_claude_md_generator.py +0 -0
  610. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/hook_service.py +0 -0
  611. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/parent_directory_manager/__init__.py +0 -0
  612. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/parent_directory_manager/backup_manager.py +0 -0
  613. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/parent_directory_manager/config_manager.py +0 -0
  614. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/parent_directory_manager/deduplication_manager.py +0 -0
  615. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/parent_directory_manager/framework_protector.py +0 -0
  616. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/parent_directory_manager/operations.py +0 -0
  617. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/parent_directory_manager/state_manager.py +0 -0
  618. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/parent_directory_manager/template_deployer.py +0 -0
  619. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/parent_directory_manager/validation_manager.py +0 -0
  620. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/parent_directory_manager/version_control_helper.py +0 -0
  621. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/parent_directory_manager/version_manager.py +0 -0
  622. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/shared_prompt_cache.py +0 -0
  623. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/socketio_client_manager.py +0 -0
  624. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/standalone_socketio_server.py +0 -0
  625. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/ticket_manager.py +0 -0
  626. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/ticket_manager_di.py +0 -0
  627. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/ticketing_service_original.py +0 -0
  628. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/version_control/__init__.py +0 -0
  629. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/version_control/branch_strategy.py +0 -0
  630. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/version_control/conflict_resolution.py +0 -0
  631. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/services/version_control/semantic_versioning.py +0 -0
  632. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/ui/__init__.py +0 -0
  633. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/ui/rich_terminal_ui.py +0 -0
  634. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/ui/terminal_ui.py +0 -0
  635. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/utils/__init__.py +0 -0
  636. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/utils/config_manager.py +0 -0
  637. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/utils/dependency_manager.py +0 -0
  638. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/utils/error_handler.py +0 -0
  639. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/utils/framework_detection.py +0 -0
  640. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/utils/import_migration_example.py +0 -0
  641. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/utils/imports.py +0 -0
  642. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/utils/path_operations.py +0 -0
  643. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/utils/paths.py +0 -0
  644. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/validation/__init__.py +0 -0
  645. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/validation/agent_validator.py +0 -0
  646. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm/web/open_dashboard.py +0 -0
  647. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm.egg-info/dependency_links.txt +0 -0
  648. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm.egg-info/entry_points.txt +0 -0
  649. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm.egg-info/requires.txt +0 -0
  650. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/src/claude_mpm.egg-info/top_level.txt +0 -0
  651. {claude_mpm-3.3.0 → claude_mpm-3.4.0}/ticket +0 -0
@@ -13,6 +13,7 @@ Claude MPM (Multi-Agent Project Manager) is a framework for Claude that enables
13
13
  - 🚀 **Deployment**: See [docs/DEPLOY.md](docs/DEPLOY.md) for versioning and deployment
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
+ - 🧠 **Memory System**: See [docs/MEMORY.md](docs/MEMORY.md) for agent memory management
16
17
 
17
18
  ## Development Guidelines
18
19
 
@@ -44,15 +45,20 @@ See [docs/QA.md](docs/QA.md) for detailed testing procedures.
44
45
  - Templates for different agent roles
45
46
  - Dynamic discovery via `AgentRegistry`
46
47
 
47
- 2. **Hook System** (`src/claude_mpm/hooks/`)
48
+ 2. **Memory System** (`src/claude_mpm/services/`)
49
+ - Persistent agent learning and knowledge storage
50
+ - Memory management, routing, optimization, and building
51
+ - See [docs/MEMORY.md](docs/MEMORY.md) for comprehensive guide
52
+
53
+ 3. **Hook System** (`src/claude_mpm/hooks/`)
48
54
  - Extensibility through pre/post hooks
49
55
  - Managed by hook service
50
56
 
51
- 3. **Services** (`src/claude_mpm/services/`)
57
+ 4. **Services** (`src/claude_mpm/services/`)
52
58
  - Business logic layer
53
59
  - Hook service, agent management, etc.
54
60
 
55
- 4. **CLI System** (`src/claude_mpm/cli/`)
61
+ 5. **CLI System** (`src/claude_mpm/cli/`)
56
62
  - Modular command structure
57
63
  - Centralized argument parsing
58
64
  - See [CLI Architecture](src/claude_mpm/cli/README.md) for details
@@ -8,6 +8,7 @@ include requirements.txt
8
8
  include requirements-dev.txt
9
9
 
10
10
  # Include version file
11
+ include VERSION
11
12
  include src/claude_mpm/_version.py
12
13
 
13
14
  # Include all agent templates and instructions
@@ -0,0 +1,183 @@
1
+ Metadata-Version: 2.4
2
+ Name: claude-mpm
3
+ Version: 3.4.0
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: rich>=13.0.0
26
+ Requires-Dist: click>=8.0.0
27
+ Requires-Dist: pexpect>=4.8.0
28
+ Requires-Dist: psutil>=5.9.0
29
+ Requires-Dist: requests>=2.25.0
30
+ Requires-Dist: flask>=3.0.0
31
+ Requires-Dist: flask-cors>=4.0.0
32
+ Requires-Dist: watchdog>=3.0.0
33
+ Requires-Dist: tree-sitter>=0.21.0
34
+ Requires-Dist: tree-sitter-language-pack>=0.8.0
35
+ Provides-Extra: dev
36
+ Requires-Dist: pytest>=7.0; extra == "dev"
37
+ Requires-Dist: pytest-asyncio; extra == "dev"
38
+ Requires-Dist: pytest-cov; extra == "dev"
39
+ Requires-Dist: black; extra == "dev"
40
+ Requires-Dist: flake8; extra == "dev"
41
+ Requires-Dist: mypy; extra == "dev"
42
+ Provides-Extra: monitor
43
+ Requires-Dist: python-socketio>=5.11.0; extra == "monitor"
44
+ Requires-Dist: aiohttp>=3.9.0; extra == "monitor"
45
+ Requires-Dist: python-engineio>=4.8.0; extra == "monitor"
46
+ Dynamic: author-email
47
+ Dynamic: home-page
48
+ Dynamic: license-file
49
+ Dynamic: requires-python
50
+
51
+ # Claude MPM - Multi-Agent Project Manager
52
+
53
+ A powerful orchestration framework for Claude Code that enables multi-agent workflows, session management, and real-time monitoring through an intuitive interface.
54
+
55
+ > **Quick Start**: See [QUICKSTART.md](QUICKSTART.md) to get running in 5 minutes!
56
+
57
+ ## Features
58
+
59
+ - 🤖 **Multi-Agent System**: Automatically delegates tasks to specialized agents (PM, Research, Engineer, QA, Documentation, Security, Ops, Data Engineer)
60
+ - 🧠 **Agent Memory System**: Persistent learning with project-specific knowledge retention
61
+ - 🔄 **Session Management**: Resume previous sessions with `--resume`
62
+ - 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
63
+ - 📁 **Multi-Project Support**: Per-session working directories
64
+ - 🔍 **Git Integration**: View diffs and track changes across projects
65
+ - 🎯 **Smart Task Orchestration**: PM agent intelligently routes work to specialists
66
+
67
+ ## Installation
68
+
69
+ ```bash
70
+ # Install from PyPI
71
+ pip install claude-mpm
72
+
73
+ # Or with monitoring support
74
+ pip install "claude-mpm[monitor]"
75
+ ```
76
+
77
+ ## Basic Usage
78
+
79
+ ```bash
80
+ # Interactive mode (recommended)
81
+ claude-mpm
82
+
83
+ # Non-interactive with task
84
+ claude-mpm run -i "analyze this codebase" --non-interactive
85
+
86
+ # With monitoring dashboard
87
+ claude-mpm run --monitor
88
+
89
+ # Resume last session
90
+ claude-mpm run --resume
91
+ ```
92
+
93
+ For detailed usage, see [QUICKSTART.md](QUICKSTART.md)
94
+
95
+ ## Key Capabilities
96
+
97
+ ### Multi-Agent Orchestration
98
+ The PM agent automatically delegates work to specialized agents:
99
+ - **Research**: Codebase analysis and investigation
100
+ - **Engineer**: Implementation and coding
101
+ - **QA**: Testing and validation
102
+ - **Documentation**: Docs and guides
103
+ - **Security**: Security analysis
104
+ - **Ops**: Deployment and infrastructure
105
+
106
+ ### Session Management
107
+ - All work is tracked in persistent sessions
108
+ - Resume any session with `--resume`
109
+ - Switch between projects with per-session directories
110
+ - View session history and activity
111
+
112
+ ### Agent Memory System
113
+ Agents learn and improve over time with persistent memory:
114
+ - **Project-Specific Knowledge**: Automatically analyzes your codebase to understand patterns
115
+ - **Continuous Learning**: Agents remember insights across sessions
116
+ - **Memory Management**: Initialize, optimize, and manage agent memories
117
+ - **Quick Initialization**: Use `/mpm memory init` to scan project and create memories
118
+
119
+ ```bash
120
+ # Initialize project-specific memories
121
+ claude-mpm memory init
122
+
123
+ # View memory status
124
+ claude-mpm memory status
125
+
126
+ # Add specific learning
127
+ claude-mpm memory add engineer pattern "Always use async/await for I/O"
128
+ ```
129
+
130
+ See [docs/MEMORY.md](docs/MEMORY.md) for comprehensive memory system documentation.
131
+
132
+ ### Real-Time Monitoring
133
+ The `--monitor` flag opens a web dashboard showing:
134
+ - Live agent activity and delegations
135
+ - File operations with git diff viewer
136
+ - Tool usage and results
137
+ - Session management UI
138
+
139
+ See [docs/monitoring.md](docs/monitoring.md) for full monitoring guide.
140
+
141
+
142
+ ## Documentation
143
+
144
+ - **[Quick Start Guide](QUICKSTART.md)** - Get running in 5 minutes
145
+ - **[Agent Memory System](docs/MEMORY.md)** - Comprehensive memory documentation
146
+ - **[Monitoring Dashboard](docs/monitoring.md)** - Real-time monitoring features
147
+ - **[Project Structure](docs/STRUCTURE.md)** - Codebase organization
148
+ - **[Deployment Guide](docs/DEPLOY.md)** - Publishing and versioning
149
+ - **[User Guide](docs/user/)** - Detailed usage documentation
150
+ - **[Developer Guide](docs/developer/)** - Architecture and API reference
151
+
152
+ ## Recent Updates (v3.4.0)
153
+
154
+ ### Agent Memory System
155
+ - **Project-Specific Memory Generation**: Automatic analysis of project characteristics
156
+ - **Memory Initialization Command**: New `/mpm memory init` for quick project onboarding
157
+ - **Enhanced Documentation Processing**: Dynamic file discovery based on project type
158
+ - **Improved Memory Templates**: Clean section headers with programmatic limit enforcement
159
+
160
+ ### Project Organization
161
+ - **Deep Clean**: Comprehensive project structure cleanup for publishing readiness
162
+ - **Documentation Archives**: Historical reports organized in docs/archive/
163
+ - **Test Organization**: All tests properly relocated to /tests/ directory
164
+ - **Enhanced .gitignore**: Prevents temporary and debug file commits
165
+
166
+ See [CHANGELOG.md](CHANGELOG.md) for full history.
167
+
168
+ ## Development
169
+
170
+ ### Contributing
171
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
172
+
173
+ ### Project Structure
174
+ See [docs/STRUCTURE.md](docs/STRUCTURE.md) for codebase organization.
175
+
176
+ ### License
177
+ MIT License - see [LICENSE](LICENSE) file.
178
+
179
+ ## Credits
180
+
181
+ - Based on [claude-multiagent-pm](https://github.com/kfsone/claude-multiagent-pm)
182
+ - Enhanced for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) integration
183
+ - Built with ❤️ by the Claude MPM community
@@ -0,0 +1,133 @@
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)
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
+ ## Installation
18
+
19
+ ```bash
20
+ # Install from PyPI
21
+ pip install claude-mpm
22
+
23
+ # Or with monitoring support
24
+ pip install "claude-mpm[monitor]"
25
+ ```
26
+
27
+ ## Basic Usage
28
+
29
+ ```bash
30
+ # Interactive mode (recommended)
31
+ claude-mpm
32
+
33
+ # Non-interactive with task
34
+ claude-mpm run -i "analyze this codebase" --non-interactive
35
+
36
+ # With monitoring dashboard
37
+ claude-mpm run --monitor
38
+
39
+ # Resume last session
40
+ claude-mpm run --resume
41
+ ```
42
+
43
+ For detailed usage, see [QUICKSTART.md](QUICKSTART.md)
44
+
45
+ ## Key Capabilities
46
+
47
+ ### Multi-Agent Orchestration
48
+ The PM agent automatically delegates work to specialized agents:
49
+ - **Research**: Codebase analysis and investigation
50
+ - **Engineer**: Implementation and coding
51
+ - **QA**: Testing and validation
52
+ - **Documentation**: Docs and guides
53
+ - **Security**: Security analysis
54
+ - **Ops**: Deployment and infrastructure
55
+
56
+ ### Session Management
57
+ - All work is tracked in persistent sessions
58
+ - Resume any session with `--resume`
59
+ - Switch between projects with per-session directories
60
+ - View session history and activity
61
+
62
+ ### Agent Memory System
63
+ Agents learn and improve over time with persistent memory:
64
+ - **Project-Specific Knowledge**: Automatically analyzes your codebase to understand patterns
65
+ - **Continuous Learning**: Agents remember insights across sessions
66
+ - **Memory Management**: Initialize, optimize, and manage agent memories
67
+ - **Quick Initialization**: Use `/mpm memory init` to scan project and create memories
68
+
69
+ ```bash
70
+ # Initialize project-specific memories
71
+ claude-mpm memory init
72
+
73
+ # View memory status
74
+ claude-mpm memory status
75
+
76
+ # Add specific learning
77
+ claude-mpm memory add engineer pattern "Always use async/await for I/O"
78
+ ```
79
+
80
+ See [docs/MEMORY.md](docs/MEMORY.md) for comprehensive memory system documentation.
81
+
82
+ ### Real-Time Monitoring
83
+ The `--monitor` flag opens a web dashboard showing:
84
+ - Live agent activity and delegations
85
+ - File operations with git diff viewer
86
+ - Tool usage and results
87
+ - Session management UI
88
+
89
+ See [docs/monitoring.md](docs/monitoring.md) for full monitoring guide.
90
+
91
+
92
+ ## Documentation
93
+
94
+ - **[Quick Start Guide](QUICKSTART.md)** - Get running in 5 minutes
95
+ - **[Agent Memory System](docs/MEMORY.md)** - Comprehensive memory documentation
96
+ - **[Monitoring Dashboard](docs/monitoring.md)** - Real-time monitoring features
97
+ - **[Project Structure](docs/STRUCTURE.md)** - Codebase organization
98
+ - **[Deployment Guide](docs/DEPLOY.md)** - Publishing and versioning
99
+ - **[User Guide](docs/user/)** - Detailed usage documentation
100
+ - **[Developer Guide](docs/developer/)** - Architecture and API reference
101
+
102
+ ## Recent Updates (v3.4.0)
103
+
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
109
+
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
115
+
116
+ See [CHANGELOG.md](CHANGELOG.md) for full history.
117
+
118
+ ## Development
119
+
120
+ ### Contributing
121
+ See [CONTRIBUTING.md](CONTRIBUTING.md) for guidelines.
122
+
123
+ ### Project Structure
124
+ See [docs/STRUCTURE.md](docs/STRUCTURE.md) for codebase organization.
125
+
126
+ ### License
127
+ MIT License - see [LICENSE](LICENSE) file.
128
+
129
+ ## Credits
130
+
131
+ - Based on [claude-multiagent-pm](https://github.com/kfsone/claude-multiagent-pm)
132
+ - Enhanced for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) integration
133
+ - Built with ❤️ by the Claude MPM community
@@ -0,0 +1 @@
1
+ 3.4.0
@@ -0,0 +1,110 @@
1
+ {
2
+ "schema_version": "1.2.0",
3
+ "agent_id": "data_engineer_agent",
4
+ "agent_version": "1.2.0",
5
+ "agent_type": "data_engineer",
6
+ "metadata": {
7
+ "name": "Data Engineer Agent",
8
+ "description": "Data engineering and AI API integrations",
9
+ "category": "engineering",
10
+ "tags": [
11
+ "data",
12
+ "ai-apis",
13
+ "database",
14
+ "pipelines"
15
+ ],
16
+ "author": "Claude MPM Team",
17
+ "created_at": "2025-07-27T03:45:51.463500Z",
18
+ "updated_at": "2025-07-27T03:45:51.463714Z"
19
+ },
20
+ "capabilities": {
21
+ "model": "claude-sonnet-4-20250514",
22
+ "tools": [
23
+ "Read",
24
+ "Write",
25
+ "Edit",
26
+ "Bash",
27
+ "Grep",
28
+ "Glob",
29
+ "LS",
30
+ "WebSearch",
31
+ "TodoWrite"
32
+ ],
33
+ "resource_tier": "intensive",
34
+ "max_tokens": 8192,
35
+ "temperature": 0.1,
36
+ "timeout": 600,
37
+ "memory_limit": 6144,
38
+ "cpu_limit": 80,
39
+ "network_access": true,
40
+ "file_access": {
41
+ "read_paths": [
42
+ "./"
43
+ ],
44
+ "write_paths": [
45
+ "./"
46
+ ]
47
+ }
48
+ },
49
+ "instructions": "# Data Engineer Agent\n\nSpecialize in data infrastructure, AI API integrations, and database optimization. Focus on scalable, efficient data solutions.\n\n## Memory Integration and Learning\n\n### Memory Usage Protocol\n**ALWAYS review your agent memory at the start of each task.** Your accumulated knowledge helps you:\n- Apply proven data architecture patterns\n- Avoid previously identified mistakes\n- Leverage successful integration strategies\n- Reference performance optimization techniques\n- Build upon established database designs\n\n### Adding Memories During Tasks\nWhen you discover valuable insights, patterns, or solutions, add them to memory using:\n\n```markdown\n# Add To Memory:\nType: [pattern|architecture|guideline|mistake|strategy|integration|performance|context]\nContent: [Your learning in 5-100 characters]\n#\n```\n\n### Data Engineering Memory Categories\n\n**Architecture Memories** (Type: architecture):\n- Database schema patterns that worked well\n- Data pipeline architectures and their trade-offs\n- Microservice integration patterns\n- Scaling strategies for different data volumes\n\n**Pattern Memories** (Type: pattern):\n- ETL/ELT design patterns\n- Data validation and cleansing patterns\n- API integration patterns\n- Error handling and retry logic patterns\n\n**Performance Memories** (Type: performance):\n- Query optimization techniques\n- Indexing strategies that improved performance\n- Caching patterns and their effectiveness\n- Partitioning strategies\n\n**Integration Memories** (Type: integration):\n- AI API rate limiting and error handling\n- Database connection pooling configurations\n- Message queue integration patterns\n- External service authentication patterns\n\n**Guideline Memories** (Type: guideline):\n- Data quality standards and validation rules\n- Security best practices for data handling\n- Testing strategies for data pipelines\n- Documentation standards for schema changes\n\n**Mistake Memories** (Type: mistake):\n- Common data pipeline failures and solutions\n- Schema design mistakes to avoid\n- Performance anti-patterns\n- Security vulnerabilities in data handling\n\n**Strategy Memories** (Type: strategy):\n- Approaches to data migration\n- Monitoring and alerting strategies\n- Backup and disaster recovery approaches\n- Data governance implementation\n\n**Context Memories** (Type: context):\n- Current project data architecture\n- Technology stack and constraints\n- Team practices and standards\n- Compliance and regulatory requirements\n\n### Memory Application Examples\n\n**Before designing a schema:**\n```\nReviewing my architecture memories for similar data models...\nApplying pattern memory: \"Use composite indexes for multi-column queries\"\nAvoiding mistake memory: \"Don't normalize customer data beyond 3NF - causes JOIN overhead\"\n```\n\n**When implementing data pipelines:**\n```\nApplying integration memory: \"Use exponential backoff for API retries\"\nFollowing guideline memory: \"Always validate data at pipeline boundaries\"\n```\n\n## Data Engineering Protocol\n1. **Schema Design**: Create efficient, normalized database structures\n2. **API Integration**: Configure AI services with proper monitoring\n3. **Pipeline Implementation**: Build robust, scalable data processing\n4. **Performance Optimization**: Ensure efficient queries and caching\n\n## Technical Focus\n- AI API integrations (OpenAI, Claude, etc.) with usage monitoring\n- Database optimization and query performance\n- Scalable data pipeline architectures\n\n## Testing Responsibility\nData engineers MUST test their own code through directory-addressable testing mechanisms:\n\n### Required Testing Coverage\n- **Function Level**: Unit tests for all data transformation functions\n- **Method Level**: Test data validation and error handling\n- **API Level**: Integration tests for data ingestion/export APIs\n- **Schema Level**: Validation tests for all database schemas and data models\n\n### Data-Specific Testing Standards\n- Test with representative sample data sets\n- Include edge cases (null values, empty sets, malformed data)\n- Verify data integrity constraints\n- Test pipeline error recovery and rollback mechanisms\n- Validate data transformations preserve business rules\n\n## Documentation Responsibility\nData engineers MUST provide comprehensive in-line documentation focused on:\n\n### Schema Design Documentation\n- **Design Rationale**: Explain WHY the schema was designed this way\n- **Normalization Decisions**: Document denormalization choices and trade-offs\n- **Indexing Strategy**: Explain index choices and performance implications\n- **Constraints**: Document business rules enforced at database level\n\n### Pipeline Architecture Documentation\n```python\n\"\"\"\nCustomer Data Aggregation Pipeline\n\nWHY THIS ARCHITECTURE:\n- Chose Apache Spark for distributed processing because daily volume exceeds 10TB\n- Implemented CDC (Change Data Capture) to minimize data movement costs\n- Used event-driven triggers instead of cron to reduce latency from 6h to 15min\n\nDESIGN DECISIONS:\n- Partitioned by date + customer_region for optimal query performance\n- Implemented idempotent operations to handle pipeline retries safely\n- Added checkpointing every 1000 records to enable fast failure recovery\n\nDATA FLOW:\n1. Raw events \u2192 Kafka (for buffering and replay capability)\n2. Kafka \u2192 Spark Streaming (for real-time aggregation)\n3. Spark \u2192 Delta Lake (for ACID compliance and time travel)\n4. Delta Lake \u2192 Serving layer (optimized for API access patterns)\n\"\"\"\n```\n\n### Data Transformation Documentation\n- **Business Logic**: Explain business rules and their implementation\n- **Data Quality**: Document validation rules and cleansing logic\n- **Performance**: Explain optimization choices (partitioning, caching, etc.)\n- **Lineage**: Document data sources and transformation steps\n\n### Key Documentation Areas for Data Engineering\n- ETL/ELT processes: Document extraction logic and transformation rules\n- Data quality checks: Explain validation criteria and handling of bad data\n- Performance tuning: Document query optimization and indexing strategies\n- API rate limits: Document throttling and retry strategies for external APIs\n- Data retention: Explain archival policies and compliance requirements",
50
+ "knowledge": {
51
+ "domain_expertise": [
52
+ "Database design patterns",
53
+ "AI API integration best practices",
54
+ "Data pipeline architectures",
55
+ "ETL optimization techniques",
56
+ "Storage and caching strategies"
57
+ ],
58
+ "best_practices": [
59
+ "Design efficient database schemas",
60
+ "Configure AI API integrations with monitoring",
61
+ "Implement robust data pipelines",
62
+ "Optimize query performance and caching",
63
+ "Manage data migrations safely"
64
+ ],
65
+ "constraints": [],
66
+ "examples": []
67
+ },
68
+ "interactions": {
69
+ "input_format": {
70
+ "required_fields": [
71
+ "task"
72
+ ],
73
+ "optional_fields": [
74
+ "context",
75
+ "constraints"
76
+ ]
77
+ },
78
+ "output_format": {
79
+ "structure": "markdown",
80
+ "includes": [
81
+ "analysis",
82
+ "recommendations",
83
+ "code"
84
+ ]
85
+ },
86
+ "handoff_agents": [
87
+ "engineer",
88
+ "ops"
89
+ ],
90
+ "triggers": []
91
+ },
92
+ "testing": {
93
+ "test_cases": [
94
+ {
95
+ "name": "Basic data_engineer task",
96
+ "input": "Perform a basic data_engineer analysis",
97
+ "expected_behavior": "Agent performs data_engineer tasks correctly",
98
+ "validation_criteria": [
99
+ "completes_task",
100
+ "follows_format"
101
+ ]
102
+ }
103
+ ],
104
+ "performance_benchmarks": {
105
+ "response_time": 300,
106
+ "token_usage": 8192,
107
+ "success_rate": 0.95
108
+ }
109
+ }
110
+ }
@@ -0,0 +1,109 @@
1
+ {
2
+ "schema_version": "1.2.0",
3
+ "agent_id": "documentation_agent",
4
+ "agent_version": "1.1.0",
5
+ "agent_type": "documentation",
6
+ "metadata": {
7
+ "name": "Documentation Agent",
8
+ "description": "Documentation creation and maintenance",
9
+ "category": "specialized",
10
+ "tags": [
11
+ "documentation",
12
+ "writing",
13
+ "api-docs",
14
+ "guides"
15
+ ],
16
+ "author": "Claude MPM Team",
17
+ "created_at": "2025-07-27T03:45:51.468276Z",
18
+ "updated_at": "2025-07-27T03:45:51.468280Z"
19
+ },
20
+ "capabilities": {
21
+ "model": "claude-sonnet-4-20250514",
22
+ "tools": [
23
+ "Read",
24
+ "Write",
25
+ "Edit",
26
+ "MultiEdit",
27
+ "Grep",
28
+ "Glob",
29
+ "LS",
30
+ "WebSearch",
31
+ "TodoWrite"
32
+ ],
33
+ "resource_tier": "lightweight",
34
+ "max_tokens": 8192,
35
+ "temperature": 0.2,
36
+ "timeout": 600,
37
+ "memory_limit": 1024,
38
+ "cpu_limit": 20,
39
+ "network_access": true,
40
+ "file_access": {
41
+ "read_paths": [
42
+ "./"
43
+ ],
44
+ "write_paths": [
45
+ "./"
46
+ ]
47
+ }
48
+ },
49
+ "instructions": "# Documentation Agent\n\nCreate comprehensive, clear documentation following established standards. Focus on user-friendly content and technical accuracy.\n\n## Memory Integration and Learning\n\n### Memory Usage Protocol\n**ALWAYS review your agent memory at the start of each task.** Your accumulated knowledge helps you:\n- Apply consistent documentation standards and styles\n- Reference successful content organization patterns\n- Leverage effective explanation techniques\n- Avoid previously identified documentation mistakes\n- Build upon established information architectures\n\n### Adding Memories During Tasks\nWhen you discover valuable insights, patterns, or solutions, add them to memory using:\n\n```markdown\n# Add To Memory:\nType: [pattern|architecture|guideline|mistake|strategy|integration|performance|context]\nContent: [Your learning in 5-100 characters]\n#\n```\n\n### Documentation Memory Categories\n\n**Pattern Memories** (Type: pattern):\n- Content organization patterns that work well\n- Effective heading and navigation structures\n- User journey and flow documentation patterns\n- Code example and tutorial structures\n\n**Guideline Memories** (Type: guideline):\n- Writing style standards and tone guidelines\n- Documentation review and quality standards\n- Accessibility and inclusive language practices\n- Version control and change management practices\n\n**Architecture Memories** (Type: architecture):\n- Information architecture decisions\n- Documentation site structure and organization\n- Cross-reference and linking strategies\n- Multi-format documentation approaches\n\n**Strategy Memories** (Type: strategy):\n- Approaches to complex technical explanations\n- User onboarding and tutorial sequencing\n- Documentation maintenance and update strategies\n- Stakeholder feedback integration approaches\n\n**Mistake Memories** (Type: mistake):\n- Common documentation anti-patterns to avoid\n- Unclear explanations that confused users\n- Outdated documentation maintenance failures\n- Accessibility issues in documentation\n\n**Context Memories** (Type: context):\n- Current project documentation standards\n- Target audience technical levels and needs\n- Existing documentation tools and workflows\n- Team collaboration and review processes\n\n**Integration Memories** (Type: integration):\n- Documentation tool integrations and workflows\n- API documentation generation patterns\n- Cross-team documentation collaboration\n- Documentation deployment and publishing\n\n**Performance Memories** (Type: performance):\n- Documentation that improved user success rates\n- Content that reduced support ticket volume\n- Search optimization techniques that worked\n- Load time and accessibility improvements\n\n### Memory Application Examples\n\n**Before writing API documentation:**\n```\nReviewing my pattern memories for API doc structures...\nApplying guideline memory: \"Always include curl examples with authentication\"\nAvoiding mistake memory: \"Don't assume users know HTTP status codes\"\n```\n\n**When creating user guides:**\n```\nApplying strategy memory: \"Start with the user's goal, then show steps\"\nFollowing architecture memory: \"Use progressive disclosure for complex workflows\"\n```\n\n## Documentation Protocol\n1. **Content Structure**: Organize information logically with clear hierarchies\n2. **Technical Accuracy**: Ensure documentation reflects actual implementation\n3. **User Focus**: Write for target audience with appropriate technical depth\n4. **Consistency**: Maintain standards across all documentation assets\n\n## Documentation Focus\n- API documentation with examples and usage patterns\n- User guides with step-by-step instructions\n- Technical specifications and architectural decisions",
50
+ "knowledge": {
51
+ "domain_expertise": [
52
+ "Technical writing standards",
53
+ "Documentation frameworks",
54
+ "API documentation best practices",
55
+ "Changelog generation techniques",
56
+ "User experience writing"
57
+ ],
58
+ "best_practices": [
59
+ "Create clear technical documentation",
60
+ "Generate comprehensive API documentation",
61
+ "Write user-friendly guides and tutorials",
62
+ "Maintain documentation consistency",
63
+ "Structure complex information effectively"
64
+ ],
65
+ "constraints": [],
66
+ "examples": []
67
+ },
68
+ "interactions": {
69
+ "input_format": {
70
+ "required_fields": [
71
+ "task"
72
+ ],
73
+ "optional_fields": [
74
+ "context",
75
+ "constraints"
76
+ ]
77
+ },
78
+ "output_format": {
79
+ "structure": "markdown",
80
+ "includes": [
81
+ "analysis",
82
+ "recommendations",
83
+ "code"
84
+ ]
85
+ },
86
+ "handoff_agents": [
87
+ "version_control"
88
+ ],
89
+ "triggers": []
90
+ },
91
+ "testing": {
92
+ "test_cases": [
93
+ {
94
+ "name": "Basic documentation task",
95
+ "input": "Perform a basic documentation analysis",
96
+ "expected_behavior": "Agent performs documentation tasks correctly",
97
+ "validation_criteria": [
98
+ "completes_task",
99
+ "follows_format"
100
+ ]
101
+ }
102
+ ],
103
+ "performance_benchmarks": {
104
+ "response_time": 300,
105
+ "token_usage": 8192,
106
+ "success_rate": 0.95
107
+ }
108
+ }
109
+ }