claude-mpm 3.9.8__py3-none-any.whl → 3.9.9__py3-none-any.whl
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.
- claude_mpm/VERSION +1 -1
- claude_mpm/agents/base_agent.json +1 -1
- claude_mpm/cli/__init__.py +3 -1
- claude_mpm/cli/commands/__init__.py +3 -1
- claude_mpm/cli/commands/cleanup.py +21 -1
- claude_mpm/cli/commands/mcp.py +821 -0
- claude_mpm/cli/parser.py +148 -1
- claude_mpm/config/memory_guardian_config.py +325 -0
- claude_mpm/constants.py +13 -0
- claude_mpm/hooks/claude_hooks/hook_handler.py +76 -19
- claude_mpm/models/state_models.py +433 -0
- claude_mpm/services/communication/__init__.py +2 -2
- claude_mpm/services/communication/socketio.py +18 -16
- claude_mpm/services/infrastructure/__init__.py +4 -1
- claude_mpm/services/infrastructure/logging.py +3 -3
- claude_mpm/services/infrastructure/memory_guardian.py +770 -0
- claude_mpm/services/mcp_gateway/__init__.py +28 -12
- claude_mpm/services/mcp_gateway/main.py +326 -0
- claude_mpm/services/mcp_gateway/registry/__init__.py +6 -3
- claude_mpm/services/mcp_gateway/registry/service_registry.py +397 -0
- claude_mpm/services/mcp_gateway/registry/tool_registry.py +477 -0
- claude_mpm/services/mcp_gateway/server/__init__.py +9 -3
- claude_mpm/services/mcp_gateway/server/mcp_server.py +430 -0
- claude_mpm/services/mcp_gateway/server/mcp_server_simple.py +444 -0
- claude_mpm/services/mcp_gateway/server/stdio_handler.py +373 -0
- claude_mpm/services/mcp_gateway/tools/__init__.py +16 -3
- claude_mpm/services/mcp_gateway/tools/base_adapter.py +497 -0
- claude_mpm/services/mcp_gateway/tools/document_summarizer.py +729 -0
- claude_mpm/services/mcp_gateway/tools/hello_world.py +551 -0
- claude_mpm/utils/file_utils.py +293 -0
- claude_mpm/utils/platform_memory.py +524 -0
- claude_mpm/utils/subprocess_utils.py +305 -0
- {claude_mpm-3.9.8.dist-info → claude_mpm-3.9.9.dist-info}/METADATA +3 -1
- {claude_mpm-3.9.8.dist-info → claude_mpm-3.9.9.dist-info}/RECORD +39 -28
- claude_mpm/agents/templates/.claude-mpm/memories/README.md +0 -36
- claude_mpm/agents/templates/.claude-mpm/memories/engineer_agent.md +0 -39
- claude_mpm/agents/templates/.claude-mpm/memories/qa_agent.md +0 -38
- claude_mpm/agents/templates/.claude-mpm/memories/research_agent.md +0 -39
- claude_mpm/agents/templates/.claude-mpm/memories/version_control_agent.md +0 -38
- /claude_mpm/agents/templates/{research_memory_efficient.json → backup/research_memory_efficient.json} +0 -0
- {claude_mpm-3.9.8.dist-info → claude_mpm-3.9.9.dist-info}/WHEEL +0 -0
- {claude_mpm-3.9.8.dist-info → claude_mpm-3.9.9.dist-info}/entry_points.txt +0 -0
- {claude_mpm-3.9.8.dist-info → claude_mpm-3.9.9.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-3.9.8.dist-info → claude_mpm-3.9.9.dist-info}/top_level.txt +0 -0
| @@ -1,38 +0,0 @@ | |
| 1 | 
            -
            # Version Control Agent Memory - templates
         | 
| 2 | 
            -
             | 
| 3 | 
            -
            <!-- MEMORY LIMITS: 8KB max | 10 sections max | 15 items per section -->
         | 
| 4 | 
            -
            <!-- Last Updated: 2025-08-08 12:12:24 | Auto-updated by: version_control -->
         | 
| 5 | 
            -
             | 
| 6 | 
            -
            ## Project Context
         | 
| 7 | 
            -
            templates: mixed standard application
         | 
| 8 | 
            -
             | 
| 9 | 
            -
            ## Project Architecture
         | 
| 10 | 
            -
            - Standard Application with mixed implementation
         | 
| 11 | 
            -
             | 
| 12 | 
            -
            ## Coding Patterns Learned
         | 
| 13 | 
            -
            <!-- Items will be added as knowledge accumulates -->
         | 
| 14 | 
            -
             | 
| 15 | 
            -
            ## Implementation Guidelines
         | 
| 16 | 
            -
            <!-- Items will be added as knowledge accumulates -->
         | 
| 17 | 
            -
             | 
| 18 | 
            -
            ## Domain-Specific Knowledge
         | 
| 19 | 
            -
            <!-- Agent-specific knowledge for templates domain -->
         | 
| 20 | 
            -
            - Key project terms: templates
         | 
| 21 | 
            -
             | 
| 22 | 
            -
            ## Effective Strategies
         | 
| 23 | 
            -
            <!-- Successful approaches discovered through experience -->
         | 
| 24 | 
            -
             | 
| 25 | 
            -
            ## Common Mistakes to Avoid
         | 
| 26 | 
            -
            <!-- Items will be added as knowledge accumulates -->
         | 
| 27 | 
            -
             | 
| 28 | 
            -
            ## Integration Points
         | 
| 29 | 
            -
            <!-- Items will be added as knowledge accumulates -->
         | 
| 30 | 
            -
             | 
| 31 | 
            -
            ## Performance Considerations
         | 
| 32 | 
            -
            <!-- Items will be added as knowledge accumulates -->
         | 
| 33 | 
            -
             | 
| 34 | 
            -
            ## Current Technical Context
         | 
| 35 | 
            -
            <!-- Items will be added as knowledge accumulates -->
         | 
| 36 | 
            -
             | 
| 37 | 
            -
            ## Recent Learnings
         | 
| 38 | 
            -
            <!-- Most recent discoveries and insights -->
         | 
| 
            File without changes
         | 
| 
            File without changes
         | 
| 
            File without changes
         | 
| 
            File without changes
         | 
| 
            File without changes
         |