claude-mpm 4.12.4__py3-none-any.whl → 4.13.1__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.

Potentially problematic release.


This version of claude-mpm might be problematic. Click here for more details.

Files changed (29) hide show
  1. claude_mpm/VERSION +1 -1
  2. claude_mpm/cli/__init__.py +10 -0
  3. claude_mpm/cli/commands/agents.py +31 -0
  4. claude_mpm/cli/commands/agents_detect.py +380 -0
  5. claude_mpm/cli/commands/agents_recommend.py +309 -0
  6. claude_mpm/cli/commands/auto_configure.py +572 -0
  7. claude_mpm/cli/parsers/agents_parser.py +9 -0
  8. claude_mpm/cli/parsers/auto_configure_parser.py +245 -0
  9. claude_mpm/cli/parsers/base_parser.py +7 -0
  10. claude_mpm/services/agents/__init__.py +18 -5
  11. claude_mpm/services/agents/auto_config_manager.py +797 -0
  12. claude_mpm/services/agents/observers.py +547 -0
  13. claude_mpm/services/agents/recommender.py +568 -0
  14. claude_mpm/services/core/__init__.py +33 -1
  15. claude_mpm/services/core/interfaces/__init__.py +16 -1
  16. claude_mpm/services/core/interfaces/agent.py +184 -0
  17. claude_mpm/services/core/interfaces/project.py +121 -0
  18. claude_mpm/services/core/models/__init__.py +46 -0
  19. claude_mpm/services/core/models/agent_config.py +397 -0
  20. claude_mpm/services/core/models/toolchain.py +306 -0
  21. claude_mpm/services/project/__init__.py +23 -0
  22. claude_mpm/services/project/detection_strategies.py +719 -0
  23. claude_mpm/services/project/toolchain_analyzer.py +581 -0
  24. {claude_mpm-4.12.4.dist-info → claude_mpm-4.13.1.dist-info}/METADATA +1 -1
  25. {claude_mpm-4.12.4.dist-info → claude_mpm-4.13.1.dist-info}/RECORD +29 -16
  26. {claude_mpm-4.12.4.dist-info → claude_mpm-4.13.1.dist-info}/WHEEL +0 -0
  27. {claude_mpm-4.12.4.dist-info → claude_mpm-4.13.1.dist-info}/entry_points.txt +0 -0
  28. {claude_mpm-4.12.4.dist-info → claude_mpm-4.13.1.dist-info}/licenses/LICENSE +0 -0
  29. {claude_mpm-4.12.4.dist-info → claude_mpm-4.13.1.dist-info}/top_level.txt +0 -0
@@ -6,16 +6,39 @@ This module contains all project-related services including
6
6
  project analysis and registry management.
7
7
 
8
8
  Part of TSK-0046: Service Layer Architecture Reorganization
9
+ Part of TSK-0054: Auto-Configuration Feature - Phase 2
9
10
 
10
11
  Services:
11
12
  - ProjectAnalyzer: Analyzes project structure and metadata
12
13
  - ProjectRegistry: Manages project registration and discovery
14
+ - ToolchainAnalyzerService: Analyzes project toolchains for auto-configuration
15
+
16
+ Detection Strategies:
17
+ - NodeJSDetectionStrategy: Detects Node.js projects
18
+ - PythonDetectionStrategy: Detects Python projects
19
+ - RustDetectionStrategy: Detects Rust projects
20
+ - GoDetectionStrategy: Detects Go projects
21
+ - IToolchainDetectionStrategy: Base interface for detection strategies
13
22
  """
14
23
 
15
24
  from .analyzer import ProjectAnalyzer
25
+ from .detection_strategies import (
26
+ GoDetectionStrategy,
27
+ IToolchainDetectionStrategy,
28
+ NodeJSDetectionStrategy,
29
+ PythonDetectionStrategy,
30
+ RustDetectionStrategy,
31
+ )
16
32
  from .registry import ProjectRegistry
33
+ from .toolchain_analyzer import ToolchainAnalyzerService
17
34
 
18
35
  __all__ = [
36
+ "GoDetectionStrategy",
37
+ "IToolchainDetectionStrategy",
38
+ "NodeJSDetectionStrategy",
19
39
  "ProjectAnalyzer",
20
40
  "ProjectRegistry",
41
+ "PythonDetectionStrategy",
42
+ "RustDetectionStrategy",
43
+ "ToolchainAnalyzerService",
21
44
  ]