claude-mpm 4.15.6__py3-none-any.whl → 4.16.0__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-4.15.6.dist-info → claude_mpm-4.16.0.dist-info}/METADATA +37 -8
- {claude_mpm-4.15.6.dist-info → claude_mpm-4.16.0.dist-info}/RECORD +7 -7
- {claude_mpm-4.15.6.dist-info → claude_mpm-4.16.0.dist-info}/WHEEL +0 -0
- {claude_mpm-4.15.6.dist-info → claude_mpm-4.16.0.dist-info}/entry_points.txt +0 -0
- {claude_mpm-4.15.6.dist-info → claude_mpm-4.16.0.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-4.15.6.dist-info → claude_mpm-4.16.0.dist-info}/top_level.txt +0 -0
claude_mpm/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
4.
|
|
1
|
+
4.16.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: claude-mpm
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.16.0
|
|
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
|
|
@@ -157,6 +157,7 @@ A powerful orchestration framework for **Claude Code (CLI)** that enables multi-
|
|
|
157
157
|
## Features
|
|
158
158
|
|
|
159
159
|
- 🤖 **Multi-Agent System**: 15 specialized agents for comprehensive project management
|
|
160
|
+
- 🎯 **Skills System**: 15 bundled skills with auto-linking, three-tier organization (bundled/user/project), and interactive configuration
|
|
160
161
|
- 🧠 **Persistent Knowledge System**: Project-specific kuzu-memory integration for intelligent context retention
|
|
161
162
|
- 🔄 **Session Management**: Resume previous sessions with `--resume`
|
|
162
163
|
- 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
|
|
@@ -305,6 +306,34 @@ Claude MPM includes 15 specialized agents:
|
|
|
305
306
|
### Agent Memory System
|
|
306
307
|
Agents learn project-specific patterns using a simple list format and can update memories via JSON response fields (`remember` for incremental updates, `MEMORIES` for complete replacement). Initialize with `claude-mpm memory init`.
|
|
307
308
|
|
|
309
|
+
### Skills System
|
|
310
|
+
|
|
311
|
+
Claude MPM includes a powerful skills system that eliminates redundant agent guidance through reusable skill modules:
|
|
312
|
+
|
|
313
|
+
**15 Bundled Skills** covering essential development workflows:
|
|
314
|
+
- Git workflow, TDD, code review, systematic debugging
|
|
315
|
+
- API documentation, refactoring patterns, performance profiling
|
|
316
|
+
- Docker containerization, database migrations, security scanning
|
|
317
|
+
- JSON/PDF/XLSX handling, async testing, ImageMagick operations
|
|
318
|
+
|
|
319
|
+
**Three-Tier Organization:**
|
|
320
|
+
- **Bundled**: Core skills included with Claude MPM (~4,700 lines of reusable guidance)
|
|
321
|
+
- **User**: Custom skills in `~/.config/claude-mpm/skills/`
|
|
322
|
+
- **Project**: Project-specific skills in `.claude-mpm/skills/`
|
|
323
|
+
|
|
324
|
+
**Quick Access:**
|
|
325
|
+
```bash
|
|
326
|
+
# Interactive skills management
|
|
327
|
+
claude-mpm configure
|
|
328
|
+
# Choose option 2: Skills Management
|
|
329
|
+
|
|
330
|
+
# Auto-link skills to agents based on their roles
|
|
331
|
+
# Configure custom skill assignments
|
|
332
|
+
# View current skill mappings
|
|
333
|
+
```
|
|
334
|
+
|
|
335
|
+
Skills are automatically injected into agent prompts, reducing template size by 85% while maintaining full capability coverage.
|
|
336
|
+
|
|
308
337
|
### MCP Gateway (Model Context Protocol)
|
|
309
338
|
|
|
310
339
|
Claude MPM includes a powerful MCP Gateway that enables:
|
|
@@ -365,19 +394,19 @@ See [docs/MEMORY.md](docs/MEMORY.md) and [docs/developer/11-dashboard/README.md]
|
|
|
365
394
|
- **Single Entry Point**: [docs/README.md](docs/README.md) is your navigation hub
|
|
366
395
|
- **Clear User Paths**: Organized by user type and experience level
|
|
367
396
|
- **Cross-Referenced**: Links between related topics and sections
|
|
368
|
-
- **Up-to-Date**: Version 4.
|
|
397
|
+
- **Up-to-Date**: Version 4.16.0 with skills system and enhanced documentation
|
|
369
398
|
|
|
370
|
-
## Recent Updates (v4.
|
|
399
|
+
## Recent Updates (v4.16.0)
|
|
371
400
|
|
|
372
|
-
**
|
|
401
|
+
**Skills System Integration**: 15 bundled skills with auto-linking, three-tier organization, and interactive configuration. Eliminates 85% of redundant guidance across agent templates (~4,700 lines of reusable content).
|
|
373
402
|
|
|
374
|
-
**
|
|
403
|
+
**Enhanced Documentation**: Complete documentation suite with PDF guides, reorganized structure, and comprehensive design documents for skills integration.
|
|
375
404
|
|
|
376
|
-
**
|
|
405
|
+
**Agent Template Improvements**: Cleaned agent templates with skills integration, removing redundant guidance while maintaining full capability coverage.
|
|
377
406
|
|
|
378
|
-
**
|
|
407
|
+
**Interactive Skills Management**: New skills wizard accessible via `claude-mpm configure` for viewing, configuring, and auto-linking skills to agents.
|
|
379
408
|
|
|
380
|
-
**
|
|
409
|
+
**Bug Fixes**: Resolved agent template inconsistencies and improved configuration management.
|
|
381
410
|
|
|
382
411
|
See [CHANGELOG.md](CHANGELOG.md) for full history and [docs/user/MIGRATION.md](docs/user/MIGRATION.md) for upgrade instructions.
|
|
383
412
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
claude_mpm/BUILD_NUMBER,sha256=9JfxhnDtr-8l3kCP2U5TVXSErptHoga8m7XA8zqgGOc,4
|
|
2
|
-
claude_mpm/VERSION,sha256=
|
|
2
|
+
claude_mpm/VERSION,sha256=J9RA-mbUy3VLog-ldQxvDNxC_sI6cziu-VtO5ics_kY,7
|
|
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=sLjJF6Kw7H4V9WWeaEYltM-77TgXqzEMX5vx4ukM5-0,5977
|
|
@@ -862,9 +862,9 @@ claude_mpm/utils/subprocess_utils.py,sha256=D0izRT8anjiUb_JG72zlJR_JAw1cDkb7kalN
|
|
|
862
862
|
claude_mpm/validation/__init__.py,sha256=YZhwE3mhit-lslvRLuwfX82xJ_k4haZeKmh4IWaVwtk,156
|
|
863
863
|
claude_mpm/validation/agent_validator.py,sha256=GprtAvu80VyMXcKGsK_VhYiXWA6BjKHv7O6HKx0AB9w,20917
|
|
864
864
|
claude_mpm/validation/frontmatter_validator.py,sha256=YpJlYNNYcV8u6hIOi3_jaRsDnzhbcQpjCBE6eyBKaFY,7076
|
|
865
|
-
claude_mpm-4.
|
|
866
|
-
claude_mpm-4.
|
|
867
|
-
claude_mpm-4.
|
|
868
|
-
claude_mpm-4.
|
|
869
|
-
claude_mpm-4.
|
|
870
|
-
claude_mpm-4.
|
|
865
|
+
claude_mpm-4.16.0.dist-info/licenses/LICENSE,sha256=lpaivOlPuBZW1ds05uQLJJswy8Rp_HMNieJEbFlqvLk,1072
|
|
866
|
+
claude_mpm-4.16.0.dist-info/METADATA,sha256=WtcGsJTtm27k1tbTpogs0HdSL5qPQ3PFdKZsvyy3n5w,19389
|
|
867
|
+
claude_mpm-4.16.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
868
|
+
claude_mpm-4.16.0.dist-info/entry_points.txt,sha256=Vlw3GNi-OtTpKSrez04iNrPmxNxYDpIWxmJCxiZ5Tx8,526
|
|
869
|
+
claude_mpm-4.16.0.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
|
|
870
|
+
claude_mpm-4.16.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|