claude-mpm 4.5.15__py3-none-any.whl → 4.6.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.
@@ -1,10 +1,121 @@
1
1
  # Show help for available MPM commands
2
2
 
3
- Display help information for Claude MPM commands.
3
+ Display help information for Claude MPM slash commands and CLI capabilities.
4
4
 
5
- Usage: /mpm-help [command]
5
+ ## Usage
6
+
7
+ ```
8
+ /mpm-help [command]
9
+ ```
10
+
11
+ ## Description
12
+
13
+ This slash command delegates to the **PM agent** to provide comprehensive help information about available MPM commands and capabilities.
14
+
15
+ ## Implementation
16
+
17
+ This slash command delegates to the **PM agent** to show help information.
18
+
19
+ When you run `/mpm-help [command]`, the PM will:
20
+ 1. List all available slash commands if no command specified
21
+ 2. Show detailed help for a specific command if provided
22
+ 3. Include usage examples and options
23
+ 4. Explain what each command does and when to use it
24
+
25
+ ## Examples
26
+
27
+ ### Show All Commands
28
+ ```
29
+ /mpm-help
30
+ ```
31
+
32
+ Shows a complete list of all available MPM slash commands with brief descriptions.
33
+
34
+ ### Show Command-Specific Help
35
+ ```
36
+ /mpm-help doctor
37
+ /mpm-help agents
38
+ /mpm-help config
39
+ /mpm-help organize
40
+ ```
41
+
42
+ Shows detailed help for a specific command including:
43
+ - Full description
44
+ - Available options and flags
45
+ - Usage examples
46
+ - Related commands
47
+
48
+ ## Expected Output
49
+
50
+ ### General Help
51
+ ```
52
+ Claude MPM Slash Commands
53
+ =========================
54
+
55
+ Available Commands:
56
+
57
+ /mpm-help [command]
58
+ Show this help or help for specific command
59
+
60
+ /mpm-status
61
+ Display system status and environment information
62
+
63
+ /mpm-doctor [--fix] [--verbose]
64
+ Diagnose and fix common issues
65
+
66
+ /mpm-agents [list|deploy|remove] [name]
67
+ Manage agent deployment
68
+
69
+ /mpm-config [validate|view|status]
70
+ Manage configuration settings
71
+
72
+ /mpm-tickets [list|create|update]
73
+ Manage project tickets
74
+
75
+ /mpm-organize [--dry-run] [--force]
76
+ Organize project file structure
77
+
78
+ /mpm-init
79
+ Initialize or update project documentation
80
+
81
+ Use '/mpm-help <command>' for detailed help on a specific command.
82
+ ```
83
+
84
+ ### Command-Specific Help
85
+ ```
86
+ /mpm-doctor - Diagnose and Fix Issues
87
+ ======================================
88
+
89
+ Description:
90
+ Runs comprehensive diagnostics on your Claude MPM installation
91
+ and project setup. Can automatically fix common issues.
92
+
93
+ Usage:
94
+ /mpm-doctor [options]
95
+
96
+ Options:
97
+ --fix Automatically fix detected issues
98
+ --verbose Show detailed diagnostic output
6
99
 
7
100
  Examples:
8
- - /mpm-help - Show all MPM commands
9
- - /mpm-help doctor - Show detailed help for doctor command
10
- - /mpm-help agents - Show detailed help for agents command
101
+ /mpm-doctor # Run diagnostics
102
+ /mpm-doctor --fix # Run and fix issues
103
+ /mpm-doctor --verbose # Show detailed output
104
+
105
+ What it checks:
106
+ - Python environment and dependencies
107
+ - Configuration file validity
108
+ - Agent deployment status
109
+ - Service availability (WebSocket, Hooks)
110
+ - Memory system integrity
111
+ - Git repository status
112
+
113
+ Related Commands:
114
+ /mpm-status Show current system status
115
+ /mpm-config Manage configuration
116
+ ```
117
+
118
+ ## Related Commands
119
+
120
+ - All other `/mpm-*` commands - Access help for any command
121
+ - Standard Claude `--help` flag - CLI-level help
@@ -0,0 +1,282 @@
1
+ # /mpm-organize
2
+
3
+ Organize your project files into proper directories using intelligent pattern detection and framework-aware structure management.
4
+
5
+ ## Usage
6
+
7
+ ```
8
+ /mpm-organize # Interactive mode with preview
9
+ /mpm-organize --dry-run # Preview changes without applying
10
+ /mpm-organize --force # Proceed even with uncommitted changes
11
+ /mpm-organize --no-backup # Skip backup creation (not recommended)
12
+ ```
13
+
14
+ ## Description
15
+
16
+ This slash command delegates to the **Project Organizer agent** to perform thorough project housekeeping. The agent analyzes your project structure, detects existing patterns and framework conventions, then organizes files into proper directories following best practices.
17
+
18
+ **Smart Organization**: The agent first checks CLAUDE.md for project-specific organization guidelines. If not found, it applies framework-specific conventions and industry best practices.
19
+
20
+ ## Features
21
+
22
+ - **📁 Intelligent Pattern Detection**: Analyzes existing directory structure and naming conventions
23
+ - **🎯 Framework-Aware**: Respects Next.js, React, Django, Rails, and other framework patterns
24
+ - **🔍 CLAUDE.md Integration**: Follows project-specific guidelines when available
25
+ - **✅ Safe Operations**: Uses `git mv` for tracked files to preserve history
26
+ - **💾 Automatic Backups**: Creates backups before major reorganizations
27
+ - **🔄 Import Path Updates**: Updates import statements after file moves
28
+ - **📊 Organization Report**: Detailed summary of changes and recommendations
29
+
30
+ ## Options
31
+
32
+ ### Safety Options
33
+ - `--dry-run`: Preview all changes without making them (recommended first run)
34
+ - `--no-backup`: Skip backup creation before reorganization (not recommended)
35
+ - `--force`: Proceed even with uncommitted changes (use with caution)
36
+
37
+ ### Organization Options
38
+ - `--docs-only`: Only organize documentation files
39
+ - `--tests-only`: Only organize test files
40
+ - `--scripts-only`: Only organize script files
41
+ - `--skip-imports`: Don't update import paths after moves
42
+
43
+ ### Output Options
44
+ - `--verbose`: Show detailed analysis and reasoning
45
+ - `--quiet`: Minimal output, errors only
46
+ - `--report [path]`: Save organization report to file
47
+
48
+ ## What This Command Does
49
+
50
+ ### 1. CLAUDE.md Analysis
51
+ - Checks for existing organization guidelines
52
+ - Extracts project-specific rules and conventions
53
+ - Identifies priority areas for organization
54
+
55
+ ### 2. Project Structure Detection
56
+ - Scans directory hierarchy and patterns
57
+ - Identifies naming conventions (camelCase, kebab-case, snake_case)
58
+ - Maps current file type locations
59
+ - Detects framework-specific conventions (Next.js, Django, Rails, etc.)
60
+ - Determines organization type (feature/type/domain-based)
61
+
62
+ ### 3. File Organization Strategy
63
+
64
+ The agent organizes files into standard directories:
65
+
66
+ ```
67
+ docs/ # All documentation files (*.md, guides, architecture)
68
+ tests/ # All test files and test utilities
69
+ tmp/ # Temporary and ephemeral files
70
+ scripts/ # Ad-hoc scripts and utilities
71
+ src/ # Source code following framework conventions
72
+ .claude/ # Claude MPM configuration and agents
73
+ ```
74
+
75
+ ### 4. Framework-Specific Handling
76
+
77
+ **Next.js Projects**:
78
+ - Respects `pages/`, `app/`, `public/`, API routes
79
+ - Organizes components by feature or domain
80
+ - Maintains Next.js conventions
81
+
82
+ **Django Projects**:
83
+ - Maintains app structure
84
+ - Organizes migrations, templates, static files
85
+ - Preserves Django conventions
86
+
87
+ **React Projects**:
88
+ - Organizes components, hooks, utils
89
+ - Maintains component hierarchy
90
+ - Groups related files
91
+
92
+ **Other Frameworks**:
93
+ - Detects and respects framework conventions
94
+ - Applies appropriate organizational patterns
95
+
96
+ ### 5. Safe File Movement
97
+
98
+ For each file to be moved:
99
+ 1. Analyzes file purpose and dependencies
100
+ 2. Determines optimal location based on patterns
101
+ 3. Uses `git mv` for version-controlled files
102
+ 4. Updates import paths in affected files
103
+ 5. Validates build still works
104
+
105
+ ### 6. Backup Creation
106
+
107
+ Before major reorganization:
108
+ ```bash
109
+ backup_YYYYMMDD_HHMMSS.tar.gz # Complete project backup
110
+ ```
111
+
112
+ ### 7. Import Path Updates
113
+
114
+ Automatically updates:
115
+ - Python imports (`from old.path import X` → `from new.path import X`)
116
+ - JavaScript/TypeScript imports (`import X from './old/path'` → `import X from './new/path'`)
117
+ - Relative path references
118
+ - Configuration file paths
119
+
120
+ ### 8. Organization Report
121
+
122
+ Generates detailed report including:
123
+ - Files moved and their new locations
124
+ - Pattern analysis and detected conventions
125
+ - Import paths updated
126
+ - Recommendations for further improvements
127
+ - Violations of best practices (if any)
128
+
129
+ ## Examples
130
+
131
+ ### Preview Organization (Recommended First Run)
132
+ ```bash
133
+ /mpm-organize --dry-run
134
+ ```
135
+ Shows what would be changed without making any modifications.
136
+
137
+ ### Full Organization with Backup
138
+ ```bash
139
+ /mpm-organize
140
+ ```
141
+ Interactive mode with automatic backup before changes.
142
+
143
+ ### Force Organization (With Uncommitted Changes)
144
+ ```bash
145
+ /mpm-organize --force --verbose
146
+ ```
147
+ Organizes project even with uncommitted changes, shows detailed output.
148
+
149
+ ### Organize Documentation Only
150
+ ```bash
151
+ /mpm-organize --docs-only --dry-run
152
+ ```
153
+ Preview how documentation files would be organized.
154
+
155
+ ### Quick Organization Without Backup
156
+ ```bash
157
+ /mpm-organize --no-backup
158
+ ```
159
+ Skip backup creation for small changes (use with caution).
160
+
161
+ ### Save Organization Report
162
+ ```bash
163
+ /mpm-organize --report /tmp/organize-report.md
164
+ ```
165
+ Save detailed report to file for review.
166
+
167
+ ## Implementation
168
+
169
+ This slash command delegates to the **Project Organizer agent** (`project-organizer`), which performs intelligent file organization based on detected patterns and framework conventions.
170
+
171
+ The agent receives the command options as context and then:
172
+ 1. Analyzes CLAUDE.md for organization guidelines
173
+ 2. Detects project framework and patterns
174
+ 3. Identifies misplaced files
175
+ 4. Creates safe reorganization plan
176
+ 5. Executes file moves with git integration
177
+ 6. Updates import paths across codebase
178
+ 7. Validates build integrity
179
+ 8. Generates organization report
180
+
181
+ When you invoke `/mpm-organize [options]`, Claude MPM:
182
+ - Passes the options to the Project Organizer agent as task context
183
+ - The agent executes the organization workflow
184
+ - Results are returned to you through the agent's structured output
185
+
186
+ ## Expected Output
187
+
188
+ ### Dry Run Mode
189
+ ```
190
+ 🔍 Analyzing project structure...
191
+ ✓ Detected framework: Next.js
192
+ ✓ Organization pattern: Feature-based
193
+ ✓ Found CLAUDE.md guidelines
194
+
195
+ 📁 Proposed Changes:
196
+
197
+ docs/
198
+ ← README_OLD.md (from root)
199
+ ← architecture-notes.txt (from root)
200
+
201
+ tests/
202
+ ← test_helper.py (from src/)
203
+ ← api.test.js (from src/api/)
204
+
205
+ tmp/
206
+ ← debug_output.log (from root)
207
+ ← scratch.py (from root)
208
+
209
+ scripts/
210
+ ← migrate.sh (from root)
211
+ ← deploy_helper.py (from root)
212
+
213
+ 📊 Summary:
214
+ - 8 files to move
215
+ - 12 import paths to update
216
+ - 0 conflicts detected
217
+
218
+ Run without --dry-run to apply changes.
219
+ ```
220
+
221
+ ### Actual Organization
222
+ ```
223
+ 🔍 Analyzing project structure...
224
+ ✓ Detected framework: Next.js
225
+ ✓ Organization pattern: Feature-based
226
+ ✓ Created backup: backup_20250102_143022.tar.gz
227
+
228
+ 📁 Organizing files...
229
+ ✓ Moved README_OLD.md → docs/
230
+ ✓ Moved architecture-notes.txt → docs/
231
+ ✓ Updated 5 import statements
232
+
233
+ ✅ Organization complete!
234
+
235
+ 📊 Report saved to: /tmp/organization-report.md
236
+ ```
237
+
238
+ ## Safety Guarantees
239
+
240
+ - **Backup Created**: Full project backup before changes (unless --no-backup)
241
+ - **Git Integration**: Uses `git mv` to preserve file history
242
+ - **Dry Run Available**: Preview all changes before applying
243
+ - **Import Updates**: Automatically fixes broken imports
244
+ - **Build Validation**: Verifies build still works after changes
245
+ - **Rollback Support**: Backup enables full rollback if needed
246
+
247
+ ## When to Use This Command
248
+
249
+ Use `/mpm-organize` when:
250
+ - Starting a new project and establishing structure
251
+ - Project has accumulated misplaced files
252
+ - After major feature additions
253
+ - Before major refactoring
254
+ - When onboarding new team members
255
+ - To enforce organization standards
256
+
257
+ ## Best Practices
258
+
259
+ 1. **Always Start with Dry Run**: Use `--dry-run` first to preview changes
260
+ 2. **Commit First**: Commit your work before organizing (or use --force)
261
+ 3. **Review CLAUDE.md**: Ensure guidelines are current before organizing
262
+ 4. **Test After**: Run tests after organization to verify nothing broke
263
+ 5. **Update Documentation**: Document any new organizational patterns
264
+
265
+ ## Notes
266
+
267
+ - This slash command delegates to the **Project Organizer agent** (`project-organizer`)
268
+ - The agent performs intelligent file placement based on learned patterns
269
+ - Respects framework-specific conventions automatically
270
+ - Integrates with git to preserve file history
271
+ - Updates import paths to prevent build breakage
272
+ - Creates comprehensive reports for audit trails
273
+ - Can be run repeatedly safely (idempotent)
274
+ - Follows guidelines in CLAUDE.md when available
275
+ - Falls back to framework conventions and best practices
276
+
277
+ ## Related Commands
278
+
279
+ - `/mpm-init`: Initialize or update project documentation and structure
280
+ - `/mpm-doctor`: Diagnose project health and issues
281
+ - `/mpm-status`: Check current project state
282
+ - `/mpm-config`: Configure organization rules and preferences
@@ -2,12 +2,74 @@
2
2
 
3
3
  Display the current status of Claude MPM including environment information, active services, and system health.
4
4
 
5
- This command shows:
6
- - Claude MPM version
7
- - Python environment
8
- - Active services (WebSocket, Hook Service, etc.)
9
- - Memory usage
10
- - Agent deployment status
11
- - Configuration summary
12
-
13
- Usage: /mpm-status
5
+ ## Usage
6
+
7
+ ```
8
+ /mpm-status
9
+ ```
10
+
11
+ ## Description
12
+
13
+ This slash command delegates to the **PM agent** to gather and display comprehensive status information about your Claude MPM environment.
14
+
15
+ ## Implementation
16
+
17
+ This slash command delegates to the **PM agent** to collect status information.
18
+
19
+ When you run `/mpm-status`, the PM will:
20
+ 1. Check Claude MPM version and installation
21
+ 2. Verify Python environment and dependencies
22
+ 3. Query active services (WebSocket server, Hook Service, Monitor)
23
+ 4. Report memory system status
24
+ 5. Check agent deployment status
25
+ 6. Summarize current configuration
26
+
27
+ ## Information Displayed
28
+
29
+ The PM agent will gather and present:
30
+
31
+ - **Claude MPM Version**: Current version and build number
32
+ - **Python Environment**: Python version, virtual environment status
33
+ - **Active Services**:
34
+ - WebSocket server status and port
35
+ - Hook service status
36
+ - Monitor/dashboard status
37
+ - **Memory Usage**: Agent memory files and sizes
38
+ - **Agent Deployment**: Deployed agents and their locations
39
+ - **Configuration**: Key configuration settings
40
+ - **Project Info**: Current project directory and git status
41
+
42
+ ## Expected Output
43
+
44
+ ```
45
+ Claude MPM Status Report
46
+ ========================
47
+
48
+ Version: v4.5.15
49
+ Python: 3.11.13
50
+ Environment: Mamba (claude-mpm)
51
+
52
+ Services:
53
+ ✓ WebSocket Server: Running (port 8765)
54
+ ✓ Hook Service: Active
55
+ ✓ Monitor: Running (port 3000)
56
+
57
+ Agents Deployed: 5
58
+ - PM (Core)
59
+ - Engineer
60
+ - Prompt-Engineer
61
+ - Tester
62
+ - Project-Organizer
63
+
64
+ Memory Files: 3 (2.4 MB)
65
+ Configuration: Valid
66
+
67
+ Project: /Users/masa/Projects/my-project
68
+ Git Status: Clean (main branch)
69
+ ```
70
+
71
+ ## Related Commands
72
+
73
+ - `/mpm-doctor`: Diagnose issues and run health checks
74
+ - `/mpm-config`: View or modify configuration
75
+ - `/mpm-agents`: List and manage deployed agents
@@ -369,7 +369,7 @@ class InteractiveSession:
369
369
 
370
370
  return cmd
371
371
  # Normal mode - full command with all claude-mpm enhancements
372
- cmd = ["claude", "--model", "opus", "--dangerously-skip-permissions"]
372
+ cmd = ["claude", "--dangerously-skip-permissions"]
373
373
 
374
374
  # Add custom arguments
375
375
  if self.runner.claude_args:
@@ -260,7 +260,7 @@ class OneshotSession:
260
260
 
261
261
  def _build_command(self) -> list:
262
262
  """Build the base Claude command."""
263
- cmd = ["claude", "--model", "opus", "--dangerously-skip-permissions"]
263
+ cmd = ["claude", "--dangerously-skip-permissions"]
264
264
 
265
265
  # Add custom arguments
266
266
  if self.runner.claude_args:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-mpm
3
- Version: 4.5.15
3
+ Version: 4.6.1
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
@@ -1,5 +1,5 @@
1
1
  claude_mpm/BUILD_NUMBER,sha256=9JfxhnDtr-8l3kCP2U5TVXSErptHoga8m7XA8zqgGOc,4
2
- claude_mpm/VERSION,sha256=dJWB_kIfpWFAo3YfAz5NbupObhQSPOh_6cTmYavflrw,7
2
+ claude_mpm/VERSION,sha256=FlUK9vl7Hdh-nq5YCasDRfTt2CzyjMj7COgJHTl0VfM,6
3
3
  claude_mpm/__init__.py,sha256=UCw6j9e_tZQ3kJtTqmdfNv7MHyw9nD1jkj80WurwM2g,2064
4
4
  claude_mpm/__main__.py,sha256=Ro5UBWBoQaSAIoSqWAr7zkbLyvi4sSy28WShqAhKJG0,723
5
5
  claude_mpm/constants.py,sha256=cChN3myrAcF3jC-6DvHnBFTEnwlDk-TAsIXPvUZr_yw,5953
@@ -15,8 +15,8 @@ claude_mpm/agents/BASE_RESEARCH.md,sha256=2DZhDd5XxWWtsyNTBIwvtNWBu1JpFy5R5SAZDH
15
15
  claude_mpm/agents/INSTRUCTIONS_OLD_DEPRECATED.md,sha256=zQZhrhVq9NLCtSjVX-aC0xcgueemSuPhKyv0SjEOyIQ,25852
16
16
  claude_mpm/agents/MEMORY.md,sha256=KbRwY_RYdOvTvFC2DD-ATfwjHkQWJ5PIjlGws_7RmjI,3307
17
17
  claude_mpm/agents/OUTPUT_STYLE.md,sha256=IYbo4jmICihrfnChbdrRpwVk4VobCcNyYqZqd53VXMk,533
18
- claude_mpm/agents/PM_INSTRUCTIONS.md,sha256=pMfkBNCqDy3LjdV4xAVz6kZZQ-GFPp-EUCkCrgaOKZU,32807
19
- claude_mpm/agents/WORKFLOW.md,sha256=m4hjQNX8tZKNlyVPjvGJJXc-UG3yzkscmu9Nwfcddsw,2373
18
+ claude_mpm/agents/PM_INSTRUCTIONS.md,sha256=Gp3vyt8_ufp0tWbiBrpYI4MwucxzedumNRiRyWIekhg,41104
19
+ claude_mpm/agents/WORKFLOW.md,sha256=vJ9iXCVqAaeM_yVlXxbcP3bsL210-1BI3ZAanvWv4hI,9085
20
20
  claude_mpm/agents/__init__.py,sha256=jRFxvV_DIZ-NdENa-703Xu3YpwvlQj6yv-mQ6FgmldM,3220
21
21
  claude_mpm/agents/agent-template.yaml,sha256=mRlz5Yd0SmknTeoJWgFkZXzEF5T7OmGBJGs2-KPT93k,1969
22
22
  claude_mpm/agents/agent_loader.py,sha256=tseaXJRgitZdw5_H6fCmhVSr7J4zr-UILwxdJjq_evk,32563
@@ -51,6 +51,7 @@ claude_mpm/agents/templates/qa.json,sha256=B_pWrC78G3lOfxmKweOzbdG9fYOG42w6gSJTC
51
51
  claude_mpm/agents/templates/react_engineer.json,sha256=heW2yT65_7ku-99HCp3s8sKzdjuKNQOwRxZuKY1QI40,12898
52
52
  claude_mpm/agents/templates/refactoring_engineer.json,sha256=oik5Hufp8W5K2BJIBx-d765XU6PLI7YouiPaKThoLqA,11883
53
53
  claude_mpm/agents/templates/research.json,sha256=32YSundUnEKEhDmXIPV561rTz6fHwDKvcOtwsk0_PAc,12159
54
+ claude_mpm/agents/templates/ruby-engineer.json,sha256=4p0eo6fUjS1dmYO5Nti4ObbJS_bYjm44pAabnfx1RKQ,29007
54
55
  claude_mpm/agents/templates/security.json,sha256=a2txld126oF_9hGAxQKt859JBB25yrVoEFIMeKILRUc,24309
55
56
  claude_mpm/agents/templates/ticketing.json,sha256=qda7sOKnsOEtz0BGX2clDcYFl_82KVr9hZdzUET-z8k,11656
56
57
  claude_mpm/agents/templates/typescript_engineer.json,sha256=AVYE3T8WSpwPt294lc_-_F8yksf4RAZ4KxpSdDOdHsA,21414
@@ -62,7 +63,7 @@ claude_mpm/agents/templates/.claude-mpm/memories/README.md,sha256=vEiG7cPjHRZfwX
62
63
  claude_mpm/agents/templates/.claude-mpm/memories/engineer_memories.md,sha256=KMZSJrQi-wHOwfl2C0m3A4PpC4QuBtDolAtVybGahKc,77
63
64
  claude_mpm/agents/templates/logs/prompts/agent_engineer_20250826_014258_728.md,sha256=UBm4BycXtdaa-_l1VCh0alTGGOUSsnCbpKwbFuI-mUY,2219
64
65
  claude_mpm/agents/templates/logs/prompts/agent_engineer_20250901_010124_142.md,sha256=oPvFSYFnmJ4TkbTe4AZnNHWaJMJ-xqZP2WM6scUKQKo,13089
65
- claude_mpm/cli/__init__.py,sha256=Ax7UaFjC5_oSdK_iREVaWIwSO7tF92YQKvA2UvAPKYE,22352
66
+ claude_mpm/cli/__init__.py,sha256=0qyZe1R_9I_GJdyIfF6GatbZUVcaclxtvglPjN7dAIA,26270
66
67
  claude_mpm/cli/__main__.py,sha256=WnVGBwe10InxuZjJRFdwuMF6Gh16aXox6zFgxr0sRXk,847
67
68
  claude_mpm/cli/parser.py,sha256=Vqx9n-6Xo1uNhXR4rThmgWpZXTr0nOtkgDf3oMS9b0g,5855
68
69
  claude_mpm/cli/startup_logging.py,sha256=RTuyd6CbhiFQz7Z07LDDhK_ZAnZfuJ9B0NghVSntHFI,29390
@@ -131,11 +132,12 @@ claude_mpm/cli_module/commands.py,sha256=zZmjP4J19i9PNMA7gCI5Dl--R1u_H4sCt5ZtOad
131
132
  claude_mpm/cli_module/migration_example.py,sha256=DtQ59RyoBD6r8FIfrjKXCQ8-xnUiOqP5McBiS6_W1Qc,5183
132
133
  claude_mpm/commands/__init__.py,sha256=paX5Ub5-UmRgiQ8UgKWIKwU2-RjLu67OmNJND-fVtjg,588
133
134
  claude_mpm/commands/mpm-agents.md,sha256=JnYPJ-eWvIEEtiCB6iPu182P2xDBRvU3ArVXQ7h32kU,1341
134
- claude_mpm/commands/mpm-config.md,sha256=F-9kKUC30gT6QXvOr5OTpYOq6L97iA2-SXVGxXjyF8M,547
135
+ claude_mpm/commands/mpm-config.md,sha256=79Eb-srRpEVV3HCHDHZc8SKec6_LVP6HbXDEVkZKLgw,2929
135
136
  claude_mpm/commands/mpm-doctor.md,sha256=ut5LhFKVRw-2ecjMSPsnaTiRuFXa6Q9t-Wgl3CCnQvk,590
136
- claude_mpm/commands/mpm-help.md,sha256=gUMhJ1aTWyNeNMLZJeDJMN2sPuL-ugUFalmrNDEP5bI,282
137
+ claude_mpm/commands/mpm-help.md,sha256=Dik-wLRNeU2c96L6WXLeAqGsqmv6R5YwoKQLyh6UIP0,2743
137
138
  claude_mpm/commands/mpm-init.md,sha256=Rpzm_ZnhJ8Q9zD9GQIRHZcU6WhQ0rA7mEPWToWMFTXU,7996
138
- claude_mpm/commands/mpm-status.md,sha256=zY9toecba_UZTEY3JEKV1EvENQ-FPPvZk4dZwLyZ3LM,351
139
+ claude_mpm/commands/mpm-organize.md,sha256=JDP32AFX-j8FfsogiPwPiyoTnli6wPClqF3Kj8M6tf0,9167
140
+ claude_mpm/commands/mpm-status.md,sha256=oaM4ybL4ffp55nkT9F0mp_5H4tF-wX9mbqK-LEKEqUU,1919
139
141
  claude_mpm/commands/mpm-tickets.md,sha256=a2_mW56QDhw7-jMU92ycGaxvSSYpNoQFGhkWbr3MJ88,2356
140
142
  claude_mpm/commands/mpm.md,sha256=tv_Mr6p2olRKIltKui4ljfCNG69VokkyIg951CeMBas,559
141
143
  claude_mpm/config/__init__.py,sha256=V2dyJQ8_gVCpNiCg8zYTQqE1RSeON5Zm8n5Ndkqhp1g,916
@@ -165,7 +167,7 @@ claude_mpm/core/hook_manager.py,sha256=Cq3vwYW7-ffKw_HSFqtv1RJTxs8YUpD_qeTiWvua3
165
167
  claude_mpm/core/hook_performance_config.py,sha256=e7a7oFctkRhA3aPXMO5Wavr-E6ku7ikLxMzPU7P1-yg,5779
166
168
  claude_mpm/core/injectable_service.py,sha256=6MUqTVTBBw6legToIVj1C_BzdERO0zKYEPnFPVZJJfE,7398
167
169
  claude_mpm/core/instruction_reinforcement_hook.py,sha256=s9KGkdJO8E9ip3MB5PlXo52-dTocHXqsVy5TcxOK8-A,9487
168
- claude_mpm/core/interactive_session.py,sha256=OO0Oqv5hXfEtnAUNUc2WKd6BtxbT_p4Kcei-53GKxno,21973
170
+ claude_mpm/core/interactive_session.py,sha256=sb8fXMuFHNbT29reYDP4i6JCdov4m0VapDhqJ9QU4ag,21954
169
171
  claude_mpm/core/interfaces.py,sha256=RNqXxUioEpV4vOaEoUJ38OvKYPMlpSb3V5Sb97l0w3Q,25625
170
172
  claude_mpm/core/lazy.py,sha256=pyCfEqGHyLz18yXTu_uG52-II-9nCaBcpzwwQGBrQro,14808
171
173
  claude_mpm/core/log_manager.py,sha256=MN45RwQoxM9jBXgnqGFOtZainzUudmJgq4AdyIGkHyM,24515
@@ -174,7 +176,7 @@ claude_mpm/core/logging_config.py,sha256=tCxM3EpSmjZ7kT7hckQxQZlrxuWVm4g-qu9RHe8
174
176
  claude_mpm/core/logging_utils.py,sha256=KKFkUW9rSxa28xk6L9EUK0DttBR1MWQk_AS-4fzWfTo,16007
175
177
  claude_mpm/core/minimal_framework_loader.py,sha256=vmDEjL3MjnV7W4WIR-ymaL8QgsGsgxJJ0KdiQqAtudM,3640
176
178
  claude_mpm/core/mixins.py,sha256=vmZ7Nu2ZOnKjbhN07Ixk4noIej9nsJiknrp-Sclfu0A,5344
177
- claude_mpm/core/oneshot_session.py,sha256=QkSw-gs7tTQkdKQiZh7mbia5hc5PMt_xaMoDY-9_bZk,17693
179
+ claude_mpm/core/oneshot_session.py,sha256=KgdxaeHlSjcbiHNlhR4Hj8VxNUGsiIgmSxbmK0y8o8w,17674
178
180
  claude_mpm/core/optimized_agent_loader.py,sha256=7TIwIF4fhGEEc60pbiI3FlhgZCmEXkWJjqzhJJxXS1o,15854
179
181
  claude_mpm/core/optimized_startup.py,sha256=3Gpdc5qrDp803wxZesG696RqGdyFRVEq2hf4xZAssSs,15479
180
182
  claude_mpm/core/output_style_manager.py,sha256=LjEADIvCZr8iGL1RGwh15EDDVdkOCgTepIN2TDY50ho,20729
@@ -780,9 +782,9 @@ claude_mpm/utils/subprocess_utils.py,sha256=D0izRT8anjiUb_JG72zlJR_JAw1cDkb7kalN
780
782
  claude_mpm/validation/__init__.py,sha256=YZhwE3mhit-lslvRLuwfX82xJ_k4haZeKmh4IWaVwtk,156
781
783
  claude_mpm/validation/agent_validator.py,sha256=GprtAvu80VyMXcKGsK_VhYiXWA6BjKHv7O6HKx0AB9w,20917
782
784
  claude_mpm/validation/frontmatter_validator.py,sha256=n85nEsLWhhCnuOFb6fvnqXAOUOzXRJSUOi9VNnpKgGk,7021
783
- claude_mpm-4.5.15.dist-info/licenses/LICENSE,sha256=lpaivOlPuBZW1ds05uQLJJswy8Rp_HMNieJEbFlqvLk,1072
784
- claude_mpm-4.5.15.dist-info/METADATA,sha256=1PZg7-cpPClohRcwsjlnrHNSUrDN5Zhv1CX63e2Y7ZY,17518
785
- claude_mpm-4.5.15.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
786
- claude_mpm-4.5.15.dist-info/entry_points.txt,sha256=Vlw3GNi-OtTpKSrez04iNrPmxNxYDpIWxmJCxiZ5Tx8,526
787
- claude_mpm-4.5.15.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
788
- claude_mpm-4.5.15.dist-info/RECORD,,
785
+ claude_mpm-4.6.1.dist-info/licenses/LICENSE,sha256=lpaivOlPuBZW1ds05uQLJJswy8Rp_HMNieJEbFlqvLk,1072
786
+ claude_mpm-4.6.1.dist-info/METADATA,sha256=DF0ApbPgLYGp5LFOS0kN9jVTGoIBxxoOokXJdnRfc14,17517
787
+ claude_mpm-4.6.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
788
+ claude_mpm-4.6.1.dist-info/entry_points.txt,sha256=Vlw3GNi-OtTpKSrez04iNrPmxNxYDpIWxmJCxiZ5Tx8,526
789
+ claude_mpm-4.6.1.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
790
+ claude_mpm-4.6.1.dist-info/RECORD,,