claude-mpm 4.4.4__py3-none-any.whl → 4.4.6__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/cli/commands/mcp_external_commands.py +7 -7
- claude_mpm/cli/commands/mcp_install_commands.py +9 -9
- claude_mpm/cli/commands/mcp_setup_external.py +6 -6
- claude_mpm/hooks/kuzu_memory_hook.py +4 -2
- claude_mpm/services/diagnostics/checks/__init__.py +2 -2
- claude_mpm/services/diagnostics/checks/{claude_desktop_check.py → claude_code_check.py} +95 -112
- claude_mpm/services/diagnostics/checks/mcp_check.py +6 -6
- claude_mpm/services/diagnostics/checks/mcp_services_check.py +97 -22
- claude_mpm/services/diagnostics/diagnostic_runner.py +5 -5
- claude_mpm/services/diagnostics/doctor_reporter.py +4 -4
- claude_mpm/services/mcp_config_manager.py +314 -47
- claude_mpm/services/mcp_gateway/core/process_pool.py +11 -8
- claude_mpm/services/mcp_gateway/tools/external_mcp_services.py +4 -4
- claude_mpm/services/mcp_gateway/tools/kuzu_memory_service.py +8 -4
- claude_mpm/services/project/project_organizer.py +8 -1
- claude_mpm/services/unified/analyzer_strategies/structure_analyzer.py +1 -2
- claude_mpm/services/unified/config_strategies/context_strategy.py +1 -3
- claude_mpm/services/unified/config_strategies/file_loader_strategy.py +3 -1
- claude_mpm/validation/frontmatter_validator.py +1 -1
- {claude_mpm-4.4.4.dist-info → claude_mpm-4.4.6.dist-info}/METADATA +35 -18
- {claude_mpm-4.4.4.dist-info → claude_mpm-4.4.6.dist-info}/RECORD +26 -26
- {claude_mpm-4.4.4.dist-info → claude_mpm-4.4.6.dist-info}/WHEEL +0 -0
- {claude_mpm-4.4.4.dist-info → claude_mpm-4.4.6.dist-info}/entry_points.txt +0 -0
- {claude_mpm-4.4.4.dist-info → claude_mpm-4.4.6.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-4.4.4.dist-info → claude_mpm-4.4.6.dist-info}/top_level.txt +0 -0
@@ -423,7 +423,8 @@ async def auto_initialize_vector_search():
|
|
423
423
|
["pipx", "install", "mcp-vector-search"],
|
424
424
|
capture_output=True,
|
425
425
|
text=True,
|
426
|
-
timeout=60,
|
426
|
+
timeout=60,
|
427
|
+
check=False, # 1 minute timeout for installation
|
427
428
|
)
|
428
429
|
|
429
430
|
if result.returncode == 0:
|
@@ -492,9 +493,7 @@ async def auto_initialize_vector_search():
|
|
492
493
|
if chroma_db.exists() and chroma_db.stat().st_size > 0:
|
493
494
|
logger.info("✓ Vector search index is healthy and ready")
|
494
495
|
return
|
495
|
-
logger.info(
|
496
|
-
"⚠️ Vector search index may be corrupted, rebuilding..."
|
497
|
-
)
|
496
|
+
logger.info("⚠️ Vector search index may be corrupted, rebuilding...")
|
498
497
|
except Exception as e:
|
499
498
|
logger.debug(
|
500
499
|
f"Vector search health check failed: {e}, will attempt to rebuild"
|
@@ -512,7 +511,8 @@ async def auto_initialize_vector_search():
|
|
512
511
|
capture_output=True,
|
513
512
|
text=True,
|
514
513
|
timeout=30,
|
515
|
-
cwd=str(current_dir),
|
514
|
+
cwd=str(current_dir),
|
515
|
+
check=False, # Run in the project directory
|
516
516
|
)
|
517
517
|
|
518
518
|
if proc.returncode == 0:
|
@@ -527,7 +527,8 @@ async def auto_initialize_vector_search():
|
|
527
527
|
capture_output=True,
|
528
528
|
text=True,
|
529
529
|
timeout=300, # 5 minute timeout for indexing
|
530
|
-
cwd=str(current_dir),
|
530
|
+
cwd=str(current_dir),
|
531
|
+
check=False, # Run in the project directory
|
531
532
|
)
|
532
533
|
if index_proc.returncode == 0:
|
533
534
|
logger.info("✅ Project indexing completed successfully")
|
@@ -610,7 +611,8 @@ async def auto_initialize_kuzu_memory():
|
|
610
611
|
["pipx", "install", "kuzu-memory"],
|
611
612
|
capture_output=True,
|
612
613
|
text=True,
|
613
|
-
timeout=60,
|
614
|
+
timeout=60,
|
615
|
+
check=False, # 1 minute timeout for installation
|
614
616
|
)
|
615
617
|
|
616
618
|
if result.returncode == 0:
|
@@ -679,7 +681,8 @@ async def auto_initialize_kuzu_memory():
|
|
679
681
|
capture_output=True,
|
680
682
|
text=True,
|
681
683
|
timeout=30,
|
682
|
-
cwd=str(current_dir),
|
684
|
+
cwd=str(current_dir),
|
685
|
+
check=False,
|
683
686
|
)
|
684
687
|
|
685
688
|
if proc.returncode == 0:
|
@@ -3,11 +3,11 @@ External MCP Services Integration
|
|
3
3
|
==================================
|
4
4
|
|
5
5
|
Manages installation and basic setup of external MCP services like mcp-vector-search
|
6
|
-
and mcp-browser. These services run as separate MCP servers in Claude
|
6
|
+
and mcp-browser. These services run as separate MCP servers in Claude Code,
|
7
7
|
not as part of the Claude MPM MCP Gateway.
|
8
8
|
|
9
9
|
Note: As of the latest architecture, external services are registered as separate
|
10
|
-
MCP servers in Claude
|
10
|
+
MCP servers in Claude Code configuration, not as tools within the gateway.
|
11
11
|
"""
|
12
12
|
|
13
13
|
import json
|
@@ -397,11 +397,11 @@ class ExternalMCPServiceManager:
|
|
397
397
|
|
398
398
|
This manager is responsible for checking and installing Python packages
|
399
399
|
for external MCP services. The actual registration of these services
|
400
|
-
happens in Claude
|
400
|
+
happens in Claude Code configuration as separate MCP servers.
|
401
401
|
|
402
402
|
Note: This class is maintained for backward compatibility and package
|
403
403
|
management. The actual tool registration is handled by separate MCP
|
404
|
-
server instances in Claude
|
404
|
+
server instances in Claude Code.
|
405
405
|
"""
|
406
406
|
|
407
407
|
def __init__(self):
|
@@ -249,7 +249,8 @@ class KuzuMemoryService(BaseToolAdapter):
|
|
249
249
|
capture_output=True,
|
250
250
|
text=True,
|
251
251
|
timeout=10,
|
252
|
-
cwd=str(self.project_path),
|
252
|
+
cwd=str(self.project_path),
|
253
|
+
check=False,
|
253
254
|
)
|
254
255
|
|
255
256
|
if result.returncode == 0:
|
@@ -315,7 +316,8 @@ class KuzuMemoryService(BaseToolAdapter):
|
|
315
316
|
capture_output=True,
|
316
317
|
text=True,
|
317
318
|
timeout=10,
|
318
|
-
cwd=str(self.project_path),
|
319
|
+
cwd=str(self.project_path),
|
320
|
+
check=False,
|
319
321
|
)
|
320
322
|
|
321
323
|
if result.returncode == 0 and result.stdout:
|
@@ -384,7 +386,8 @@ class KuzuMemoryService(BaseToolAdapter):
|
|
384
386
|
capture_output=True,
|
385
387
|
text=True,
|
386
388
|
timeout=10,
|
387
|
-
cwd=str(self.project_path),
|
389
|
+
cwd=str(self.project_path),
|
390
|
+
check=False,
|
388
391
|
)
|
389
392
|
|
390
393
|
if result.returncode == 0 and result.stdout:
|
@@ -461,7 +464,8 @@ class KuzuMemoryService(BaseToolAdapter):
|
|
461
464
|
capture_output=True,
|
462
465
|
text=True,
|
463
466
|
timeout=15,
|
464
|
-
cwd=str(self.project_path),
|
467
|
+
cwd=str(self.project_path),
|
468
|
+
check=False,
|
465
469
|
)
|
466
470
|
|
467
471
|
if result.returncode == 0 and result.stdout:
|
@@ -974,7 +974,14 @@ This directory is used for {description.lower()}.
|
|
974
974
|
misplaced_count = 0
|
975
975
|
for file in root_files:
|
976
976
|
if file.is_file():
|
977
|
-
if (
|
977
|
+
if (
|
978
|
+
("test" in file.name.lower() and file.suffix == ".py")
|
979
|
+
or (
|
980
|
+
file.suffix in [".sh", ".bash"]
|
981
|
+
and file.name not in ["Makefile"]
|
982
|
+
)
|
983
|
+
or file.suffix in [".log", ".tmp", ".cache"]
|
984
|
+
):
|
978
985
|
misplaced_count += 1
|
979
986
|
|
980
987
|
if misplaced_count > 0:
|
@@ -344,8 +344,7 @@ class StructureAnalyzerStrategy(AnalyzerStrategy):
|
|
344
344
|
config_files = {
|
345
345
|
child["name"].lower()
|
346
346
|
for child in tree.get("children", [])
|
347
|
-
if (child["type"] == "file"
|
348
|
-
and child["name"].startswith("."))
|
347
|
+
if (child["type"] == "file" and child["name"].startswith("."))
|
349
348
|
or child["name"].endswith(".config.js")
|
350
349
|
}
|
351
350
|
patterns["has_config"] = len(config_files) > 0
|
@@ -603,9 +603,7 @@ class ContextStrategy(IConfigStrategy):
|
|
603
603
|
return self.isolated_manager.create_isolated_context(
|
604
604
|
kwargs.get("base_config")
|
605
605
|
)
|
606
|
-
return self.hierarchy_manager.create_context(
|
607
|
-
scope, parent_id=parent, **kwargs
|
608
|
-
)
|
606
|
+
return self.hierarchy_manager.create_context(scope, parent_id=parent, **kwargs)
|
609
607
|
|
610
608
|
def get_current_context(self) -> Optional[str]:
|
611
609
|
"""Get current active context"""
|
@@ -345,7 +345,9 @@ class EnvironmentFileLoader(BaseFileLoader):
|
|
345
345
|
value = value.strip()
|
346
346
|
|
347
347
|
# Remove quotes if present
|
348
|
-
if (value.startswith('"') and value.endswith('"')) or (
|
348
|
+
if (value.startswith('"') and value.endswith('"')) or (
|
349
|
+
value.startswith("'") and value.endswith("'")
|
350
|
+
):
|
349
351
|
value = value[1:-1]
|
350
352
|
|
351
353
|
# Parse value type
|
@@ -3,7 +3,7 @@ from pathlib import Path
|
|
3
3
|
"""
|
4
4
|
Claude Code Frontmatter Validator
|
5
5
|
|
6
|
-
Validates agent frontmatter against Claude Code
|
6
|
+
Validates agent frontmatter against Claude Code specification.
|
7
7
|
Critical for ensuring agents work correctly with Claude Code.
|
8
8
|
"""
|
9
9
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: claude-mpm
|
3
|
-
Version: 4.4.
|
3
|
+
Version: 4.4.6
|
4
4
|
Summary: Claude Multi-Agent Project Manager - Orchestrate Claude with agent delegation and ticket tracking
|
5
5
|
Author-email: Bob Matsuoka <bob@matsuoka.com>
|
6
6
|
Maintainer: Claude MPM Team
|
@@ -41,11 +41,6 @@ Requires-Dist: python-frontmatter>=1.0.0
|
|
41
41
|
Requires-Dist: mistune>=3.0.0
|
42
42
|
Requires-Dist: tree-sitter>=0.21.0
|
43
43
|
Requires-Dist: ijson>=3.2.0
|
44
|
-
Requires-Dist: kuzu-memory>=1.1.1
|
45
|
-
Requires-Dist: mcp>=0.1.0
|
46
|
-
Requires-Dist: mcp-vector-search>=0.1.0
|
47
|
-
Requires-Dist: mcp-browser>=0.1.0
|
48
|
-
Requires-Dist: mcp-ticketer>=0.1.0
|
49
44
|
Requires-Dist: toml>=0.10.2
|
50
45
|
Requires-Dist: packaging>=21.0
|
51
46
|
Requires-Dist: pydantic>=2.0.0
|
@@ -54,6 +49,12 @@ Requires-Dist: rich>=13.0.0
|
|
54
49
|
Requires-Dist: pyee>=13.0.0
|
55
50
|
Requires-Dist: importlib-resources>=5.0; python_version < "3.9"
|
56
51
|
Requires-Dist: pathspec>=0.11.0
|
52
|
+
Provides-Extra: mcp
|
53
|
+
Requires-Dist: mcp>=0.1.0; extra == "mcp"
|
54
|
+
Requires-Dist: mcp-vector-search>=0.1.0; extra == "mcp"
|
55
|
+
Requires-Dist: mcp-browser>=0.1.0; extra == "mcp"
|
56
|
+
Requires-Dist: mcp-ticketer>=0.1.0; extra == "mcp"
|
57
|
+
Requires-Dist: kuzu-memory>=1.1.1; extra == "mcp"
|
57
58
|
Provides-Extra: dev
|
58
59
|
Requires-Dist: pytest>=7.0; extra == "dev"
|
59
60
|
Requires-Dist: pytest-asyncio; extra == "dev"
|
@@ -147,7 +148,9 @@ Dynamic: license-file
|
|
147
148
|
|
148
149
|
# Claude MPM - Multi-Agent Project Manager
|
149
150
|
|
150
|
-
A powerful orchestration framework for Claude Code that enables multi-agent workflows, session management, and real-time monitoring through a streamlined Rich-based interface.
|
151
|
+
A powerful orchestration framework for **Claude Code (CLI)** that enables multi-agent workflows, session management, and real-time monitoring through a streamlined Rich-based interface.
|
152
|
+
|
153
|
+
> **⚠️ Important**: Claude MPM extends **Claude Code (CLI)**, not Claude Desktop (app). All MCP integrations work with Claude Code's CLI interface only.
|
151
154
|
|
152
155
|
> **Quick Start**: See [QUICKSTART.md](QUICKSTART.md) to get running in 5 minutes!
|
153
156
|
|
@@ -157,7 +160,7 @@ A powerful orchestration framework for Claude Code that enables multi-agent work
|
|
157
160
|
- 🧠 **Persistent Knowledge System**: Project-specific kuzu-memory integration for intelligent context retention
|
158
161
|
- 🔄 **Session Management**: Resume previous sessions with `--resume`
|
159
162
|
- 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
|
160
|
-
- 🔌 **
|
163
|
+
- 🔌 **Optional MCP Services**: mcp-vector-search and kuzu-memory with automatic fallback installation
|
161
164
|
- 📁 **Multi-Project Support**: Per-session working directories with persistent knowledge graphs
|
162
165
|
- 🔍 **Git Integration**: View diffs and track changes across projects
|
163
166
|
- 🎯 **Smart Task Orchestration**: PM agent intelligently routes work to specialists
|
@@ -167,22 +170,33 @@ A powerful orchestration framework for Claude Code that enables multi-agent work
|
|
167
170
|
## Quick Installation
|
168
171
|
|
169
172
|
```bash
|
173
|
+
# Basic installation
|
170
174
|
pip install claude-mpm
|
175
|
+
|
176
|
+
# Install with optional MCP services (recommended)
|
177
|
+
pip install "claude-mpm[mcp]"
|
171
178
|
```
|
172
179
|
|
173
180
|
Or with pipx (recommended for isolated installation):
|
174
181
|
```bash
|
175
|
-
#
|
176
|
-
pipx install "claude-mpm[monitor]"
|
177
|
-
|
178
|
-
# Basic installation without monitor
|
182
|
+
# Basic installation
|
179
183
|
pipx install claude-mpm
|
180
184
|
|
185
|
+
# Install with optional MCP services (recommended)
|
186
|
+
pipx install "claude-mpm[mcp]"
|
187
|
+
|
188
|
+
# Install with all features
|
189
|
+
pipx install "claude-mpm[mcp,monitor]"
|
190
|
+
|
181
191
|
# Configure MCP for pipx users:
|
182
192
|
claude-mpm mcp-pipx-config
|
183
193
|
```
|
184
194
|
|
185
|
-
**💡
|
195
|
+
**💡 Optional Dependencies**:
|
196
|
+
- `[mcp]` - Include MCP services (mcp-vector-search, mcp-browser, mcp-ticketer, kuzu-memory)
|
197
|
+
- `[monitor]` - Full monitoring dashboard with Socket.IO and async web server components
|
198
|
+
- **Combine both**: Use `"claude-mpm[mcp,monitor]"` to install all features
|
199
|
+
- Without optional dependencies, MCP services auto-install on first use via pipx
|
186
200
|
|
187
201
|
**🎉 Pipx Support Now Fully Functional!** Recent improvements ensure complete compatibility:
|
188
202
|
- ✅ Socket.IO daemon script path resolution (fixed)
|
@@ -207,11 +221,14 @@ claude-mpm mcp
|
|
207
221
|
# Run comprehensive health diagnostics
|
208
222
|
claude-mpm doctor
|
209
223
|
|
210
|
-
# Generate detailed diagnostic report
|
224
|
+
# Generate detailed diagnostic report with MCP service analysis
|
211
225
|
claude-mpm doctor --verbose --output-file doctor-report.md
|
212
226
|
|
213
|
-
# Run specific diagnostic checks
|
214
|
-
claude-mpm doctor --checks installation configuration agents
|
227
|
+
# Run specific diagnostic checks including MCP services
|
228
|
+
claude-mpm doctor --checks installation configuration agents mcp
|
229
|
+
|
230
|
+
# Check MCP service status specifically
|
231
|
+
claude-mpm doctor --checks mcp --verbose
|
215
232
|
|
216
233
|
# Manage memory for large conversation histories
|
217
234
|
claude-mpm cleanup-memory
|
@@ -225,7 +242,7 @@ See [QUICKSTART.md](QUICKSTART.md) for complete usage examples.
|
|
225
242
|
Following Phase 3 architectural simplification in v4.4.1, Claude MPM features:
|
226
243
|
|
227
244
|
- **Streamlined Rich Interface**: Removed complex TUI system (~2,500 lines) for cleaner user experience
|
228
|
-
- **
|
245
|
+
- **Optional MCP Services**: mcp-vector-search and kuzu-memory with automatic fallback installation
|
229
246
|
- **Persistent Knowledge System**: Project-specific kuzu-memory databases with intelligent prompt enrichment
|
230
247
|
- **Service-Oriented Architecture**: Simplified five specialized service domains
|
231
248
|
- **Interface-Based Contracts**: All services implement explicit interfaces
|
@@ -383,5 +400,5 @@ MIT License - see [LICENSE](LICENSE) file.
|
|
383
400
|
## Credits
|
384
401
|
|
385
402
|
- Based on [claude-multiagent-pm](https://github.com/kfsone/claude-multiagent-pm)
|
386
|
-
- Enhanced for [Claude Code](https://docs.anthropic.com/en/docs/claude-code) integration
|
403
|
+
- Enhanced for [Claude Code (CLI)](https://docs.anthropic.com/en/docs/claude-code) integration
|
387
404
|
- Built with ❤️ by the Claude MPM community
|
@@ -1,5 +1,5 @@
|
|
1
1
|
claude_mpm/BUILD_NUMBER,sha256=toytnNjkIKPgQaGwDqQdC1rpNTAdSEc6Vja50d7Ovug,4
|
2
|
-
claude_mpm/VERSION,sha256=
|
2
|
+
claude_mpm/VERSION,sha256=M-cFSdn4NoMwZN-6G3jqIuaWG2LiBtAkXTZdmRNAyc8,6
|
3
3
|
claude_mpm/__init__.py,sha256=lyTZAYGH4DTaFGLRNWJKk5Q5oTjzN5I6AXmfVX-Jff0,1512
|
4
4
|
claude_mpm/__main__.py,sha256=Ro5UBWBoQaSAIoSqWAr7zkbLyvi4sSy28WShqAhKJG0,723
|
5
5
|
claude_mpm/constants.py,sha256=cChN3myrAcF3jC-6DvHnBFTEnwlDk-TAsIXPvUZr_yw,5953
|
@@ -84,11 +84,11 @@ claude_mpm/cli/commands/mcp.py,sha256=kgmJVTAi0G7SAnIpYHddU25HqAdIY9mMmTH-C3DSCs
|
|
84
84
|
claude_mpm/cli/commands/mcp_command_router.py,sha256=8rTMZLxU3R3Izit9ia1Z_pIOq3bn2QjMPH4uvf1X9XY,6001
|
85
85
|
claude_mpm/cli/commands/mcp_config.py,sha256=I-MQEJdL93Rj9lIkz-T4rZqxdy-ls1J7cfXIIKS3tys,4814
|
86
86
|
claude_mpm/cli/commands/mcp_config_commands.py,sha256=TnTg7-erE5Z6O8C84o4lZITco72Wnu0FVlVF8tNVsP0,695
|
87
|
-
claude_mpm/cli/commands/mcp_external_commands.py,sha256=
|
88
|
-
claude_mpm/cli/commands/mcp_install_commands.py,sha256=
|
87
|
+
claude_mpm/cli/commands/mcp_external_commands.py,sha256=iggHpJYRTuGZjksqe4-isdq_vD5Wq8O4PjUgEWAT-OY,8968
|
88
|
+
claude_mpm/cli/commands/mcp_install_commands.py,sha256=ToQXNZLl39U31N9F-TERDcO2ACM8tjPqpSQLPDUiWb4,12799
|
89
89
|
claude_mpm/cli/commands/mcp_pipx_config.py,sha256=sE62VD6Q1CcO2k1nlbIhHMfAJFQTZfIzCss99LmfNqA,6088
|
90
90
|
claude_mpm/cli/commands/mcp_server_commands.py,sha256=-1G_2Y5ScTvzDd-kY8fTAao2H6FH7DnsLimleF1rVqQ,6197
|
91
|
-
claude_mpm/cli/commands/mcp_setup_external.py,sha256=
|
91
|
+
claude_mpm/cli/commands/mcp_setup_external.py,sha256=QA4sIOmmog_ApQ4dUTV8NbTrYW2pIzmpN6hy648G_OQ,33605
|
92
92
|
claude_mpm/cli/commands/mcp_tool_commands.py,sha256=q17GzlFT3JiLTrDqwPO2tz1-fKmPO5QU449syTnKTz4,1283
|
93
93
|
claude_mpm/cli/commands/memory.py,sha256=Yzfs3_oiKciv3sfOoDm2lJL4M9idG7ARV3-sNw1ge_g,26186
|
94
94
|
claude_mpm/cli/commands/monitor.py,sha256=S7kb2TnTmvX_T6iw5E1S5jlYNhbbBVFLCTlX5MGSLP8,9583
|
@@ -365,7 +365,7 @@ claude_mpm/generators/agent_profile_generator.py,sha256=8h3yjhnpNmgILzSddzPjFstG
|
|
365
365
|
claude_mpm/hooks/__init__.py,sha256=rVD-1bitn454djWzRN3wNNcM7xrXU-YiufVFD2T4H0Y,303
|
366
366
|
claude_mpm/hooks/base_hook.py,sha256=wKbT_0g3dhvkA48pTz4GJpZQw8URhaT0LpZnCc7CEas,5026
|
367
367
|
claude_mpm/hooks/instruction_reinforcement.py,sha256=PnjfDSZ_72gbzHnRoug7qtXfpW5d1cxnmittpnPd2ws,11059
|
368
|
-
claude_mpm/hooks/kuzu_memory_hook.py,sha256=
|
368
|
+
claude_mpm/hooks/kuzu_memory_hook.py,sha256=cuj8BThA0cr2jCwuhH1pkqLHOP2Yo5qfwSDF-QfqmuM,11354
|
369
369
|
claude_mpm/hooks/memory_integration_hook.py,sha256=VAazT6soMWoPVlDzP17psft-TDTVdblXNR2pjYpfnh4,16652
|
370
370
|
claude_mpm/hooks/tool_call_interceptor.py,sha256=k3Ghe2KvUs3y-5PcS63uHmBAxtUYraqq1bX9GN0QliU,7462
|
371
371
|
claude_mpm/hooks/validation_hooks.py,sha256=_-o4ROSRVuNOMMUIkHOnj9K-zPyAbRwJdrLTxVDmL5k,6464
|
@@ -409,7 +409,7 @@ claude_mpm/services/event_aggregator.py,sha256=DDcehIZVpiEDzs9o18gDZyvjMBHCq2H8H
|
|
409
409
|
claude_mpm/services/exceptions.py,sha256=5lVZETr_6-xk0ItH7BTfYUiX5RlckS1e8ah_UalYG9c,26475
|
410
410
|
claude_mpm/services/hook_installer_service.py,sha256=z3kKeriEY1Y9bFesuGlHBxhCtc0Wzd3Zv02k2_rEyGo,19727
|
411
411
|
claude_mpm/services/hook_service.py,sha256=rZnMn_4qxX5g9KAn0IQdoG50WmySNfsTmfG0XHuRHXk,15737
|
412
|
-
claude_mpm/services/mcp_config_manager.py,sha256=
|
412
|
+
claude_mpm/services/mcp_config_manager.py,sha256=bMV3vkDahRjH94Ht91sUg1Ha8H1Sz63Q1AM9SddfvBY,28957
|
413
413
|
claude_mpm/services/memory_hook_service.py,sha256=pRlTClkRcw30Jhwbha4BC8IMdzKZxF8aWqf52JlntgY,11600
|
414
414
|
claude_mpm/services/monitor_build_service.py,sha256=8gWR9CaqgXdG6-OjOFXGpk28GCcJTlHhojkUYnMCebI,12160
|
415
415
|
claude_mpm/services/port_manager.py,sha256=CYqLh8Ss_-aoYEXV3G6uZkGexpsRK_XTBL0bV4P3tSI,22838
|
@@ -544,20 +544,20 @@ claude_mpm/services/core/interfaces/communication.py,sha256=evwtLbYCFa3Zb8kEfL10
|
|
544
544
|
claude_mpm/services/core/interfaces/infrastructure.py,sha256=eLtr_dFhA3Ux3mPOV_4DbWhGjHpfpGnj6xOhfQcgZGk,10037
|
545
545
|
claude_mpm/services/core/interfaces/service.py,sha256=hNfHXe45LcPCp_dToOmZCfnUZBF5axMf_TdxqCSm2-I,11536
|
546
546
|
claude_mpm/services/diagnostics/__init__.py,sha256=WTRucANR9EwNi53rotjkeE4k75s18RjHJ8s1BfBj7ic,614
|
547
|
-
claude_mpm/services/diagnostics/diagnostic_runner.py,sha256=
|
548
|
-
claude_mpm/services/diagnostics/doctor_reporter.py,sha256=
|
547
|
+
claude_mpm/services/diagnostics/diagnostic_runner.py,sha256=bfF3QQfaJPv2fyo61AstHZ139nHvY0fcjXXbXFcNdZo,9336
|
548
|
+
claude_mpm/services/diagnostics/doctor_reporter.py,sha256=WhlHBWy-KI8OhAWujOu77VAgSvkBvtF3sDrjacYZhvg,19649
|
549
549
|
claude_mpm/services/diagnostics/models.py,sha256=nqOQLllZyZmw3Zt5eFJfE1Al7C3Vrn3REgFlARtT3jQ,3831
|
550
|
-
claude_mpm/services/diagnostics/checks/__init__.py,sha256=
|
550
|
+
claude_mpm/services/diagnostics/checks/__init__.py,sha256=aNdOeJHZVIpEqqzr6xWUOiyZCIrN4vckfRxkW70cqeo,987
|
551
551
|
claude_mpm/services/diagnostics/checks/agent_check.py,sha256=JZwqu4o4Q46uk2jKKU-AS0Y_n4AjVcmq2XR61t18UKE,14022
|
552
552
|
claude_mpm/services/diagnostics/checks/base_check.py,sha256=FdCPk4z5wdBVR5Y4bikwVY4P4BIIXBkYCmhr-qu1ChM,1574
|
553
|
-
claude_mpm/services/diagnostics/checks/
|
553
|
+
claude_mpm/services/diagnostics/checks/claude_code_check.py,sha256=NoOwyP-UQT4dmqJARmtXj-LJThGi6X0oP0e3cckNzik,10413
|
554
554
|
claude_mpm/services/diagnostics/checks/common_issues_check.py,sha256=Yi73_1yGNcQUCF8Jwba6xHvDHr4QbklWEbzidby-o0o,13353
|
555
555
|
claude_mpm/services/diagnostics/checks/configuration_check.py,sha256=mgqFsyr4W73gFGMF7kz5u4lloUMhTty5BHuErf0I0Uo,11176
|
556
556
|
claude_mpm/services/diagnostics/checks/filesystem_check.py,sha256=V5HoHDYlSuoK2lFv946Jhd81LrA0om71NWugnRxFvSE,8296
|
557
557
|
claude_mpm/services/diagnostics/checks/installation_check.py,sha256=WoTt15R8Wg-6k2JZFAtmffFuih1AIyCX71QOHEFH-Ro,19562
|
558
558
|
claude_mpm/services/diagnostics/checks/instructions_check.py,sha256=VbgBorl0RpFvxKQ_SC1gibTmGSiXaKSp-vVZt6hbH1g,16290
|
559
|
-
claude_mpm/services/diagnostics/checks/mcp_check.py,sha256=
|
560
|
-
claude_mpm/services/diagnostics/checks/mcp_services_check.py,sha256=
|
559
|
+
claude_mpm/services/diagnostics/checks/mcp_check.py,sha256=SftuhP70abopyMD8GlLA_K3XHEYnBAeITggUQI0cYP4,12173
|
560
|
+
claude_mpm/services/diagnostics/checks/mcp_services_check.py,sha256=aH1YgyAAj3rj5H02adWUjM00KdZuOz4Qm9oyY4bgELc,19007
|
561
561
|
claude_mpm/services/diagnostics/checks/monitor_check.py,sha256=NUx5G1yjHWlukZmwhUz4o8STRWgsQEx01YjIMReNC0A,10096
|
562
562
|
claude_mpm/services/diagnostics/checks/startup_log_check.py,sha256=DrXdml2rHvmhFBdb_sntE3xmwaP_DZIKjdVbCn8Dy7E,12258
|
563
563
|
claude_mpm/services/event_bus/__init__.py,sha256=ETCo4a6puIeyVWAv55uCDjjhzNyUwbVAHEcAVkVapx8,688
|
@@ -619,7 +619,7 @@ claude_mpm/services/mcp_gateway/core/__init__.py,sha256=iajLqFBrPixZiFmau3ZXC04m
|
|
619
619
|
claude_mpm/services/mcp_gateway/core/base.py,sha256=uTML3OBCv1-4XhSnLsEkn1C9Z71glUnKBXALyUtB24o,10225
|
620
620
|
claude_mpm/services/mcp_gateway/core/exceptions.py,sha256=oRCvGhGgXeqzzybiBz3KNBud5Dn6feBO9MQQUHuqyT0,6795
|
621
621
|
claude_mpm/services/mcp_gateway/core/interfaces.py,sha256=wsBuwKRspW6YJxpOKXynFphObkZ5XzaneCNke7F4W1s,10100
|
622
|
-
claude_mpm/services/mcp_gateway/core/process_pool.py,sha256=
|
622
|
+
claude_mpm/services/mcp_gateway/core/process_pool.py,sha256=tQSbmv8ZIUqoT6f2nl2zzC66EuHMCJ8In7PtAtevsrI,27713
|
623
623
|
claude_mpm/services/mcp_gateway/core/singleton_manager.py,sha256=yfyvt5macOsay82JTT10ya0jTwCAbsS1sdRcXOoC_bM,9422
|
624
624
|
claude_mpm/services/mcp_gateway/core/startup_verification.py,sha256=9i9k_i15Lc1Vvk0U2GR7uBMTbU3Xf16J6xoEvR0r-Ww,10873
|
625
625
|
claude_mpm/services/mcp_gateway/registry/__init__.py,sha256=6qjyfcCgW7sd_S82gY7G4DPZp3nL7tMHzyaxiz3G2Zc,195
|
@@ -632,10 +632,10 @@ claude_mpm/services/mcp_gateway/server/stdio_server.py,sha256=8HZfWbrysQB2lT9hJ3
|
|
632
632
|
claude_mpm/services/mcp_gateway/tools/__init__.py,sha256=Ga0kbvNOi8peBRZk5MUnO5bo3jWDCpHFko7mO21Vix4,754
|
633
633
|
claude_mpm/services/mcp_gateway/tools/base_adapter.py,sha256=na1MdyBCtVmKzgIcFJ5MuAUJ1LJrtA4yxkuqLnejiD8,16029
|
634
634
|
claude_mpm/services/mcp_gateway/tools/document_summarizer.py,sha256=J0YNEu4GPxWm2nTMxD7CwWl-2k1UJk3tWCI2timGWbU,28230
|
635
|
-
claude_mpm/services/mcp_gateway/tools/external_mcp_services.py,sha256=
|
635
|
+
claude_mpm/services/mcp_gateway/tools/external_mcp_services.py,sha256=PCw6egI7Vy7I-2l9ya9BZGusOdnQ3bY0uIJVSVnY_YA,18614
|
636
636
|
claude_mpm/services/mcp_gateway/tools/health_check_tool.py,sha256=P9fjHO63_yG58z4OB36OuBTakYgzLgfhjhbCcX0t-mU,16456
|
637
637
|
claude_mpm/services/mcp_gateway/tools/hello_world.py,sha256=NFtcz_lPu_55YQjugvYkFA5W7Fv_7iwxuWWS_uFlVzE,20308
|
638
|
-
claude_mpm/services/mcp_gateway/tools/kuzu_memory_service.py,sha256=
|
638
|
+
claude_mpm/services/mcp_gateway/tools/kuzu_memory_service.py,sha256=Js2YI_jOd8lOlMYifeVzVwQEwVOViK1iIQNqpY6XXKs,16830
|
639
639
|
claude_mpm/services/memory/__init__.py,sha256=vOZrdDfYdgjV5jhUyqGiICoywAwUNGcE_d7z1XfKTyE,472
|
640
640
|
claude_mpm/services/memory/builder.py,sha256=GyqyJAiOYuYZ2rULKunNf2Rf4C1slAKkUnELBy8pZV0,34365
|
641
641
|
claude_mpm/services/memory/indexed_memory.py,sha256=aK5Fo1_P87kHVex7H2FE3mLquZsw1OKdtreIigymWJ0,19538
|
@@ -668,7 +668,7 @@ claude_mpm/services/project/documentation_manager.py,sha256=pa8AjP94O4G-3wwt6RD3
|
|
668
668
|
claude_mpm/services/project/enhanced_analyzer.py,sha256=vt9K-M7e5LWMO7c6cFmQQGotceF9WRnfALZZpD3nY_g,18540
|
669
669
|
claude_mpm/services/project/language_analyzer.py,sha256=KnbwHLtUcnzdMY6bseZk90bMo0yI9n_pXP5Mj4tLDgg,9209
|
670
670
|
claude_mpm/services/project/metrics_collector.py,sha256=nqsf2zcVVQU785dYmZ45cex3PByk56NCFC93mr4McIM,12873
|
671
|
-
claude_mpm/services/project/project_organizer.py,sha256=
|
671
|
+
claude_mpm/services/project/project_organizer.py,sha256=sTxwlsHpVhjYvP4x6gDXjAGESVbwwinuOEn2qm4EPWE,37497
|
672
672
|
claude_mpm/services/project/registry.py,sha256=XhPmkuEz9tKKKnT9Ca1zsUuNgZJQy40WFHJERj09-40,24166
|
673
673
|
claude_mpm/services/shared/__init__.py,sha256=9sL2GHHGg8-lboHTZ8mzIfhcCWiFCQyWbpC27jkBRI0,597
|
674
674
|
claude_mpm/services/shared/async_service_base.py,sha256=46Z-ATX5N0FhugNsF6byJ42frs4Rw5ZWfhw3Paf2788,7010
|
@@ -717,12 +717,12 @@ claude_mpm/services/unified/analyzer_strategies/code_analyzer.py,sha256=tnr6NYEq
|
|
717
717
|
claude_mpm/services/unified/analyzer_strategies/dependency_analyzer.py,sha256=XDGkLdes8T4EJ4wjF8lqZN8RdwXglbPiZMOZ_xfmNik,24150
|
718
718
|
claude_mpm/services/unified/analyzer_strategies/performance_analyzer.py,sha256=s0r7sMQl5yIhvUOFFBkkcIAPwGx4m2x0JcwzaURryeU,33630
|
719
719
|
claude_mpm/services/unified/analyzer_strategies/security_analyzer.py,sha256=r2xQsVw8wQ2r6RnG088DgNuPZX0sT6y72xtTw3Om3bA,26496
|
720
|
-
claude_mpm/services/unified/analyzer_strategies/structure_analyzer.py,sha256=
|
720
|
+
claude_mpm/services/unified/analyzer_strategies/structure_analyzer.py,sha256=qmo1uwo4fOxqP6Y4E0X502pe9-RxMBnSWNpPtpECQNU,25249
|
721
721
|
claude_mpm/services/unified/config_strategies/__init__.py,sha256=FamM4maazbaaGdfWSOh26dXmFCCPA3T4FY55xjcUexI,4298
|
722
722
|
claude_mpm/services/unified/config_strategies/config_schema.py,sha256=Ub0V7MZbMoPv4_E6XKVsBhalU36MoXuO_0WJtwvYrmE,24813
|
723
|
-
claude_mpm/services/unified/config_strategies/context_strategy.py,sha256=
|
723
|
+
claude_mpm/services/unified/config_strategies/context_strategy.py,sha256=s2fDagOWd137E-ooMvy-CneNO76zDtpB3Ey7meUtUgg,25248
|
724
724
|
claude_mpm/services/unified/config_strategies/error_handling_strategy.py,sha256=qsGxBnGF0TDTKZFTPKUApwB9coXpWXdVz92q-z84VX0,35794
|
725
|
-
claude_mpm/services/unified/config_strategies/file_loader_strategy.py,sha256=
|
725
|
+
claude_mpm/services/unified/config_strategies/file_loader_strategy.py,sha256=SezFF0yqQMaNDMRz3sIbZa-P66Vbim2WAMgHMyCGZSw,29543
|
726
726
|
claude_mpm/services/unified/config_strategies/unified_config_service.py,sha256=DPClh8rKOC_rXoVezYYpWaFLDhf9XmKhrF5WKQqudAE,29513
|
727
727
|
claude_mpm/services/unified/config_strategies/validation_strategy.py,sha256=iewOimV4gtj6wo6HKahCXC8Jczzt8cCGut0gq5jPAZY,38862
|
728
728
|
claude_mpm/services/unified/deployment_strategies/__init__.py,sha256=nOaXf2mlFItXiNOBzizl8QxNWVEVBNIDq6uBw0gatpw,2986
|
@@ -769,10 +769,10 @@ claude_mpm/utils/session_logging.py,sha256=_6eoyCvVKhu2OhgRzC5FvMfFnD9et75lzCqAR
|
|
769
769
|
claude_mpm/utils/subprocess_utils.py,sha256=D0izRT8anjiUb_JG72zlJR_JAw1cDkb7kalNmfX9KlM,10443
|
770
770
|
claude_mpm/validation/__init__.py,sha256=YZhwE3mhit-lslvRLuwfX82xJ_k4haZeKmh4IWaVwtk,156
|
771
771
|
claude_mpm/validation/agent_validator.py,sha256=Nm2WmcbCb0EwOG4nFcikc3wVdiiAfjGBBI3YoR6ainQ,20915
|
772
|
-
claude_mpm/validation/frontmatter_validator.py,sha256=
|
773
|
-
claude_mpm-4.4.
|
774
|
-
claude_mpm-4.4.
|
775
|
-
claude_mpm-4.4.
|
776
|
-
claude_mpm-4.4.
|
777
|
-
claude_mpm-4.4.
|
778
|
-
claude_mpm-4.4.
|
772
|
+
claude_mpm/validation/frontmatter_validator.py,sha256=IDBOCBweO6umydSnUJjBh81sKk3cy9hRFYm61DCiXbI,7020
|
773
|
+
claude_mpm-4.4.6.dist-info/licenses/LICENSE,sha256=lpaivOlPuBZW1ds05uQLJJswy8Rp_HMNieJEbFlqvLk,1072
|
774
|
+
claude_mpm-4.4.6.dist-info/METADATA,sha256=31bVYfdqk4nEHGwBEE4wdir7O7A2MVEjtKyJiNr-Sew,17264
|
775
|
+
claude_mpm-4.4.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
776
|
+
claude_mpm-4.4.6.dist-info/entry_points.txt,sha256=FDPZgz8JOvD-6iuXY2l9Zbo9zYVRuE4uz4Qr0vLeGOk,471
|
777
|
+
claude_mpm-4.4.6.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
|
778
|
+
claude_mpm-4.4.6.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|