claude-mpm 5.4.3__py3-none-any.whl → 5.4.14__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.
- claude_mpm/VERSION +1 -1
- claude_mpm/__init__.py +4 -0
- claude_mpm/agents/PM_INSTRUCTIONS.md +39 -0
- claude_mpm/agents/agent_loader.py +3 -27
- claude_mpm/cli/__main__.py +4 -0
- claude_mpm/cli/commands/auto_configure.py +210 -25
- claude_mpm/cli/commands/config.py +88 -2
- claude_mpm/cli/commands/configure.py +85 -43
- claude_mpm/cli/commands/configure_agent_display.py +3 -1
- claude_mpm/cli/commands/mpm_init/core.py +2 -45
- claude_mpm/cli/commands/skills.py +21 -2
- claude_mpm/cli/executor.py +3 -3
- claude_mpm/cli/parsers/config_parser.py +153 -83
- claude_mpm/cli/parsers/skills_parser.py +3 -2
- claude_mpm/cli/startup.py +273 -36
- claude_mpm/commands/mpm-config.md +266 -0
- claude_mpm/core/framework/formatters/content_formatter.py +3 -13
- claude_mpm/core/framework_loader.py +4 -2
- claude_mpm/core/logger.py +13 -0
- claude_mpm/hooks/claude_hooks/event_handlers.py +171 -76
- claude_mpm/hooks/claude_hooks/hook_handler.py +2 -0
- claude_mpm/hooks/claude_hooks/installer.py +33 -10
- claude_mpm/hooks/claude_hooks/memory_integration.py +26 -9
- claude_mpm/hooks/claude_hooks/response_tracking.py +2 -3
- claude_mpm/hooks/memory_integration_hook.py +46 -1
- claude_mpm/init.py +0 -19
- claude_mpm/scripts/claude-hook-handler.sh +58 -18
- claude_mpm/services/agents/agent_recommendation_service.py +6 -7
- claude_mpm/services/agents/agent_review_service.py +280 -0
- claude_mpm/services/agents/deployment/agent_discovery_service.py +2 -3
- claude_mpm/services/agents/deployment/agent_template_builder.py +1 -0
- claude_mpm/services/agents/deployment/multi_source_deployment_service.py +78 -9
- claude_mpm/services/agents/deployment/remote_agent_discovery_service.py +13 -0
- claude_mpm/services/agents/git_source_manager.py +14 -0
- claude_mpm/services/agents/loading/base_agent_manager.py +1 -13
- claude_mpm/services/agents/toolchain_detector.py +6 -3
- claude_mpm/services/command_deployment_service.py +71 -8
- claude_mpm/services/git/git_operations_service.py +93 -8
- claude_mpm/services/self_upgrade_service.py +120 -12
- claude_mpm/services/skills/__init__.py +3 -0
- claude_mpm/services/skills/git_skill_source_manager.py +32 -2
- claude_mpm/services/skills/selective_skill_deployer.py +230 -0
- claude_mpm/services/skills/skill_to_agent_mapper.py +406 -0
- claude_mpm/services/skills_deployer.py +64 -3
- {claude_mpm-5.4.3.dist-info → claude_mpm-5.4.14.dist-info}/METADATA +47 -8
- {claude_mpm-5.4.3.dist-info → claude_mpm-5.4.14.dist-info}/RECORD +51 -70
- {claude_mpm-5.4.3.dist-info → claude_mpm-5.4.14.dist-info}/entry_points.txt +0 -3
- claude_mpm-5.4.14.dist-info/licenses/LICENSE +94 -0
- claude_mpm-5.4.14.dist-info/licenses/LICENSE-FAQ.md +153 -0
- claude_mpm/agents/BASE_AGENT_TEMPLATE.md +0 -292
- claude_mpm/agents/BASE_DOCUMENTATION.md +0 -53
- claude_mpm/agents/BASE_ENGINEER.md +0 -658
- claude_mpm/agents/BASE_OPS.md +0 -219
- claude_mpm/agents/BASE_PM.md +0 -480
- claude_mpm/agents/BASE_PROMPT_ENGINEER.md +0 -787
- claude_mpm/agents/BASE_QA.md +0 -167
- claude_mpm/agents/BASE_RESEARCH.md +0 -53
- claude_mpm/agents/base_agent.json +0 -31
- claude_mpm/agents/base_agent_loader.py +0 -601
- claude_mpm/cli/ticket_cli.py +0 -35
- claude_mpm/commands/mpm-config-view.md +0 -150
- claude_mpm/hooks/claude_hooks/__pycache__/__init__.cpython-313.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/correlation_manager.cpython-313.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/event_handlers.cpython-313.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/hook_handler.cpython-313.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/memory_integration.cpython-313.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/response_tracking.cpython-313.pyc +0 -0
- claude_mpm/hooks/claude_hooks/__pycache__/tool_analysis.cpython-313.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/__pycache__/__init__.cpython-313.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/__pycache__/connection_manager_http.cpython-313.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/__pycache__/duplicate_detector.cpython-313.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/__pycache__/state_manager.cpython-313.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/__pycache__/subagent_processor.cpython-313.pyc +0 -0
- claude_mpm-5.4.3.dist-info/licenses/LICENSE +0 -21
- {claude_mpm-5.4.3.dist-info → claude_mpm-5.4.14.dist-info}/WHEEL +0 -0
- {claude_mpm-5.4.3.dist-info → claude_mpm-5.4.14.dist-info}/top_level.txt +0 -0
|
@@ -1,150 +0,0 @@
|
|
|
1
|
-
---
|
|
2
|
-
namespace: mpm/config
|
|
3
|
-
command: view
|
|
4
|
-
aliases: [mpm-config-view]
|
|
5
|
-
migration_target: /mpm/config:view
|
|
6
|
-
category: config
|
|
7
|
-
deprecated_aliases: [mpm-config]
|
|
8
|
-
description: View and validate Claude MPM configuration settings
|
|
9
|
-
---
|
|
10
|
-
# View and validate claude-mpm configuration
|
|
11
|
-
|
|
12
|
-
Manage Claude MPM configuration settings through validation, viewing, and status checks.
|
|
13
|
-
|
|
14
|
-
## Usage
|
|
15
|
-
|
|
16
|
-
```
|
|
17
|
-
/mpm-config [subcommand] [options]
|
|
18
|
-
```
|
|
19
|
-
|
|
20
|
-
## Description
|
|
21
|
-
|
|
22
|
-
This slash command provides access to Claude MPM's configuration management capabilities through the actual CLI commands.
|
|
23
|
-
|
|
24
|
-
## Available Subcommands
|
|
25
|
-
|
|
26
|
-
### Validate Configuration
|
|
27
|
-
Validate configuration files for correctness and completeness.
|
|
28
|
-
|
|
29
|
-
```
|
|
30
|
-
/mpm-config validate [--config-file PATH] [--strict] [--fix]
|
|
31
|
-
```
|
|
32
|
-
|
|
33
|
-
**Options:**
|
|
34
|
-
- `--config-file PATH`: Validate specific config file (default: all)
|
|
35
|
-
- `--strict`: Use strict validation rules
|
|
36
|
-
- `--fix`: Attempt to fix validation errors automatically
|
|
37
|
-
|
|
38
|
-
**Example:**
|
|
39
|
-
```
|
|
40
|
-
/mpm-config validate --strict
|
|
41
|
-
/mpm-config validate --config-file .claude/config.yaml --fix
|
|
42
|
-
```
|
|
43
|
-
|
|
44
|
-
### View Configuration
|
|
45
|
-
Display current configuration settings.
|
|
46
|
-
|
|
47
|
-
```
|
|
48
|
-
/mpm-config view [--section SECTION] [--format FORMAT] [--show-defaults]
|
|
49
|
-
```
|
|
50
|
-
|
|
51
|
-
**Options:**
|
|
52
|
-
- `--section SECTION`: Specific configuration section to view
|
|
53
|
-
- `--format FORMAT`: Output format (yaml, json, table)
|
|
54
|
-
- `--show-defaults`: Include default values in output
|
|
55
|
-
|
|
56
|
-
**Examples:**
|
|
57
|
-
```
|
|
58
|
-
/mpm-config view
|
|
59
|
-
/mpm-config view --section agents --format json
|
|
60
|
-
/mpm-config view --show-defaults
|
|
61
|
-
```
|
|
62
|
-
|
|
63
|
-
### Configuration Status
|
|
64
|
-
Show configuration health and status.
|
|
65
|
-
|
|
66
|
-
```
|
|
67
|
-
/mpm-config status [--verbose]
|
|
68
|
-
```
|
|
69
|
-
|
|
70
|
-
**Options:**
|
|
71
|
-
- `--verbose`: Show detailed status information
|
|
72
|
-
|
|
73
|
-
**Example:**
|
|
74
|
-
```
|
|
75
|
-
/mpm-config status --verbose
|
|
76
|
-
```
|
|
77
|
-
|
|
78
|
-
## Implementation
|
|
79
|
-
|
|
80
|
-
This command executes:
|
|
81
|
-
```bash
|
|
82
|
-
claude-mpm config [subcommand] [options]
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
The slash command passes through to the actual CLI configuration management system.
|
|
86
|
-
|
|
87
|
-
## Configuration Categories
|
|
88
|
-
|
|
89
|
-
Configuration is organized into sections:
|
|
90
|
-
|
|
91
|
-
- **agents**: Agent deployment and management settings
|
|
92
|
-
- **memory**: Memory system configuration
|
|
93
|
-
- **websocket**: WebSocket server settings (port, host)
|
|
94
|
-
- **hooks**: Hook service configuration
|
|
95
|
-
- **logging**: Logging levels and output
|
|
96
|
-
- **tickets**: Ticket tracking settings
|
|
97
|
-
- **monitor**: Dashboard and monitoring settings
|
|
98
|
-
|
|
99
|
-
## Expected Output
|
|
100
|
-
|
|
101
|
-
### Validation Output
|
|
102
|
-
```
|
|
103
|
-
Validating configuration files...
|
|
104
|
-
|
|
105
|
-
✓ .claude/config.yaml: Valid
|
|
106
|
-
✓ .claude/agents/config.yaml: Valid
|
|
107
|
-
✓ Configuration schema: Valid
|
|
108
|
-
|
|
109
|
-
Configuration is valid and ready to use.
|
|
110
|
-
```
|
|
111
|
-
|
|
112
|
-
### View Output
|
|
113
|
-
```yaml
|
|
114
|
-
agents:
|
|
115
|
-
deploy_mode: project
|
|
116
|
-
auto_reload: true
|
|
117
|
-
|
|
118
|
-
websocket:
|
|
119
|
-
host: localhost
|
|
120
|
-
port: 8765
|
|
121
|
-
|
|
122
|
-
logging:
|
|
123
|
-
level: INFO
|
|
124
|
-
format: detailed
|
|
125
|
-
```
|
|
126
|
-
|
|
127
|
-
### Status Output
|
|
128
|
-
```
|
|
129
|
-
Configuration Status
|
|
130
|
-
====================
|
|
131
|
-
|
|
132
|
-
Files Found: 2
|
|
133
|
-
✓ .claude/config.yaml
|
|
134
|
-
✓ .claude/agents/config.yaml
|
|
135
|
-
|
|
136
|
-
Validation: Passed
|
|
137
|
-
Schema Version: 4.5
|
|
138
|
-
Last Modified: 2025-01-15 14:30:22
|
|
139
|
-
|
|
140
|
-
Active Settings:
|
|
141
|
-
- WebSocket Port: 8765
|
|
142
|
-
- Agent Deploy Mode: project
|
|
143
|
-
- Logging Level: INFO
|
|
144
|
-
```
|
|
145
|
-
|
|
146
|
-
## Related Commands
|
|
147
|
-
|
|
148
|
-
- `/mpm-status`: Show overall system status
|
|
149
|
-
- `/mpm-doctor`: Diagnose configuration issues
|
|
150
|
-
- `/mpm-init`: Initialize project configuration
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Claude MPM Team
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
File without changes
|
|
File without changes
|