claude-mpm 4.16.0__py3-none-any.whl → 4.20.3__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/agents/BASE_ENGINEER.md +286 -0
- claude_mpm/agents/BASE_PM.md +255 -23
- claude_mpm/agents/PM_INSTRUCTIONS.md +40 -0
- claude_mpm/agents/agent_loader.py +4 -4
- claude_mpm/agents/templates/engineer.json +5 -1
- claude_mpm/agents/templates/python_engineer.json +8 -3
- claude_mpm/agents/templates/rust_engineer.json +12 -7
- claude_mpm/agents/templates/svelte-engineer.json +225 -0
- claude_mpm/cli/commands/__init__.py +2 -0
- claude_mpm/cli/commands/mpm_init.py +109 -24
- claude_mpm/cli/commands/skills.py +434 -0
- claude_mpm/cli/executor.py +2 -0
- claude_mpm/cli/parsers/base_parser.py +7 -0
- claude_mpm/cli/parsers/skills_parser.py +137 -0
- claude_mpm/cli/startup.py +57 -0
- claude_mpm/commands/mpm-auto-configure.md +52 -0
- claude_mpm/commands/mpm-help.md +3 -0
- claude_mpm/commands/mpm-init.md +112 -6
- claude_mpm/commands/mpm-version.md +113 -0
- claude_mpm/commands/mpm.md +1 -0
- claude_mpm/config/agent_config.py +2 -2
- claude_mpm/constants.py +12 -0
- claude_mpm/core/config.py +42 -0
- claude_mpm/core/factories.py +1 -1
- claude_mpm/core/optimized_agent_loader.py +3 -3
- claude_mpm/hooks/__init__.py +8 -0
- claude_mpm/hooks/claude_hooks/response_tracking.py +35 -1
- claude_mpm/hooks/session_resume_hook.py +121 -0
- claude_mpm/models/resume_log.py +340 -0
- claude_mpm/services/agents/auto_config_manager.py +1 -1
- claude_mpm/services/agents/deployment/agent_configuration_manager.py +1 -1
- claude_mpm/services/agents/deployment/agent_record_service.py +1 -1
- claude_mpm/services/agents/deployment/agent_validator.py +17 -1
- claude_mpm/services/agents/deployment/async_agent_deployment.py +1 -1
- claude_mpm/services/agents/deployment/local_template_deployment.py +1 -1
- claude_mpm/services/agents/local_template_manager.py +1 -1
- claude_mpm/services/agents/recommender.py +47 -0
- claude_mpm/services/cli/resume_service.py +617 -0
- claude_mpm/services/cli/session_manager.py +87 -0
- claude_mpm/services/cli/session_resume_helper.py +352 -0
- claude_mpm/services/core/path_resolver.py +1 -1
- claude_mpm/services/infrastructure/resume_log_generator.py +439 -0
- claude_mpm/services/mcp_config_manager.py +7 -131
- claude_mpm/services/session_manager.py +205 -1
- claude_mpm/services/unified/deployment_strategies/local.py +1 -1
- claude_mpm/services/version_service.py +104 -1
- claude_mpm/skills/__init__.py +21 -0
- claude_mpm/skills/agent_skills_injector.py +331 -0
- claude_mpm/skills/bundled/LICENSE_ATTRIBUTIONS.md +79 -0
- claude_mpm/skills/bundled/api-documentation.md +393 -0
- claude_mpm/skills/bundled/async-testing.md +571 -0
- claude_mpm/skills/bundled/code-review.md +143 -0
- claude_mpm/skills/bundled/collaboration/brainstorming/SKILL.md +75 -0
- claude_mpm/skills/bundled/collaboration/dispatching-parallel-agents/SKILL.md +184 -0
- claude_mpm/skills/bundled/collaboration/requesting-code-review/SKILL.md +107 -0
- claude_mpm/skills/bundled/collaboration/requesting-code-review/code-reviewer.md +146 -0
- claude_mpm/skills/bundled/collaboration/writing-plans/SKILL.md +118 -0
- claude_mpm/skills/bundled/database-migration.md +199 -0
- claude_mpm/skills/bundled/debugging/root-cause-tracing/SKILL.md +177 -0
- claude_mpm/skills/bundled/debugging/systematic-debugging/CREATION-LOG.md +119 -0
- claude_mpm/skills/bundled/debugging/systematic-debugging/SKILL.md +148 -0
- claude_mpm/skills/bundled/debugging/systematic-debugging/references/anti-patterns.md +483 -0
- claude_mpm/skills/bundled/debugging/systematic-debugging/references/examples.md +452 -0
- claude_mpm/skills/bundled/debugging/systematic-debugging/references/troubleshooting.md +449 -0
- claude_mpm/skills/bundled/debugging/systematic-debugging/references/workflow.md +411 -0
- claude_mpm/skills/bundled/debugging/systematic-debugging/test-academic.md +14 -0
- claude_mpm/skills/bundled/debugging/systematic-debugging/test-pressure-1.md +58 -0
- claude_mpm/skills/bundled/debugging/systematic-debugging/test-pressure-2.md +68 -0
- claude_mpm/skills/bundled/debugging/systematic-debugging/test-pressure-3.md +69 -0
- claude_mpm/skills/bundled/debugging/verification-before-completion/SKILL.md +175 -0
- claude_mpm/skills/bundled/debugging/verification-before-completion/references/common-failures.md +213 -0
- claude_mpm/skills/bundled/debugging/verification-before-completion/references/gate-function.md +314 -0
- claude_mpm/skills/bundled/debugging/verification-before-completion/references/verification-patterns.md +227 -0
- claude_mpm/skills/bundled/docker-containerization.md +194 -0
- claude_mpm/skills/bundled/express-local-dev.md +1429 -0
- claude_mpm/skills/bundled/fastapi-local-dev.md +1199 -0
- claude_mpm/skills/bundled/git-workflow.md +414 -0
- claude_mpm/skills/bundled/imagemagick.md +204 -0
- claude_mpm/skills/bundled/json-data-handling.md +223 -0
- claude_mpm/skills/bundled/main/artifacts-builder/SKILL.md +74 -0
- claude_mpm/skills/bundled/main/internal-comms/SKILL.md +32 -0
- claude_mpm/skills/bundled/main/internal-comms/examples/3p-updates.md +47 -0
- claude_mpm/skills/bundled/main/internal-comms/examples/company-newsletter.md +65 -0
- claude_mpm/skills/bundled/main/internal-comms/examples/faq-answers.md +30 -0
- claude_mpm/skills/bundled/main/internal-comms/examples/general-comms.md +16 -0
- claude_mpm/skills/bundled/main/mcp-builder/SKILL.md +328 -0
- claude_mpm/skills/bundled/main/mcp-builder/reference/evaluation.md +602 -0
- claude_mpm/skills/bundled/main/mcp-builder/reference/mcp_best_practices.md +915 -0
- claude_mpm/skills/bundled/main/mcp-builder/reference/node_mcp_server.md +916 -0
- claude_mpm/skills/bundled/main/mcp-builder/reference/python_mcp_server.md +752 -0
- claude_mpm/skills/bundled/main/mcp-builder/scripts/connections.py +150 -0
- claude_mpm/skills/bundled/main/mcp-builder/scripts/evaluation.py +372 -0
- claude_mpm/skills/bundled/main/skill-creator/SKILL.md +209 -0
- claude_mpm/skills/bundled/main/skill-creator/scripts/init_skill.py +302 -0
- claude_mpm/skills/bundled/main/skill-creator/scripts/package_skill.py +111 -0
- claude_mpm/skills/bundled/main/skill-creator/scripts/quick_validate.py +65 -0
- claude_mpm/skills/bundled/nextjs-local-dev.md +807 -0
- claude_mpm/skills/bundled/pdf.md +141 -0
- claude_mpm/skills/bundled/performance-profiling.md +567 -0
- claude_mpm/skills/bundled/refactoring-patterns.md +180 -0
- claude_mpm/skills/bundled/security-scanning.md +327 -0
- claude_mpm/skills/bundled/systematic-debugging.md +473 -0
- claude_mpm/skills/bundled/test-driven-development.md +378 -0
- claude_mpm/skills/bundled/testing/condition-based-waiting/SKILL.md +123 -0
- claude_mpm/skills/bundled/testing/test-driven-development/SKILL.md +145 -0
- claude_mpm/skills/bundled/testing/test-driven-development/references/anti-patterns.md +543 -0
- claude_mpm/skills/bundled/testing/test-driven-development/references/examples.md +741 -0
- claude_mpm/skills/bundled/testing/test-driven-development/references/integration.md +470 -0
- claude_mpm/skills/bundled/testing/test-driven-development/references/philosophy.md +458 -0
- claude_mpm/skills/bundled/testing/test-driven-development/references/workflow.md +639 -0
- claude_mpm/skills/bundled/testing/testing-anti-patterns/SKILL.md +304 -0
- claude_mpm/skills/bundled/testing/webapp-testing/SKILL.md +96 -0
- claude_mpm/skills/bundled/testing/webapp-testing/examples/console_logging.py +35 -0
- claude_mpm/skills/bundled/testing/webapp-testing/examples/element_discovery.py +40 -0
- claude_mpm/skills/bundled/testing/webapp-testing/examples/static_html_automation.py +34 -0
- claude_mpm/skills/bundled/testing/webapp-testing/scripts/with_server.py +107 -0
- claude_mpm/skills/bundled/vite-local-dev.md +1061 -0
- claude_mpm/skills/bundled/web-performance-optimization.md +2305 -0
- claude_mpm/skills/bundled/xlsx.md +157 -0
- claude_mpm/skills/registry.py +97 -9
- claude_mpm/skills/skills_registry.py +351 -0
- claude_mpm/skills/skills_service.py +730 -0
- claude_mpm/utils/agent_dependency_loader.py +2 -2
- {claude_mpm-4.16.0.dist-info → claude_mpm-4.20.3.dist-info}/METADATA +181 -32
- {claude_mpm-4.16.0.dist-info → claude_mpm-4.20.3.dist-info}/RECORD +130 -48
- claude_mpm/agents/INSTRUCTIONS_OLD_DEPRECATED.md +0 -602
- {claude_mpm-4.16.0.dist-info → claude_mpm-4.20.3.dist-info}/WHEEL +0 -0
- {claude_mpm-4.16.0.dist-info → claude_mpm-4.20.3.dist-info}/entry_points.txt +0 -0
- {claude_mpm-4.16.0.dist-info → claude_mpm-4.20.3.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-4.16.0.dist-info → claude_mpm-4.20.3.dist-info}/top_level.txt +0 -0
|
@@ -85,7 +85,7 @@ class AgentDependencyLoader:
|
|
|
85
85
|
deployed_agents[agent_id] = agent_file
|
|
86
86
|
logger.debug(f"Found deployed agent: {agent_id}")
|
|
87
87
|
|
|
88
|
-
logger.
|
|
88
|
+
logger.debug(f"Discovered {len(deployed_agents)} deployed agents")
|
|
89
89
|
self.deployed_agents = deployed_agents
|
|
90
90
|
return deployed_agents
|
|
91
91
|
|
|
@@ -121,7 +121,7 @@ class AgentDependencyLoader:
|
|
|
121
121
|
logger.warning(f"Failed to load config for {agent_id}: {e}")
|
|
122
122
|
|
|
123
123
|
self.agent_dependencies = agent_dependencies
|
|
124
|
-
logger.
|
|
124
|
+
logger.debug(f"Loaded dependencies for {len(agent_dependencies)} agents")
|
|
125
125
|
return agent_dependencies
|
|
126
126
|
|
|
127
127
|
def check_python_dependency(self, package_spec: str) -> Tuple[bool, Optional[str]]:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: claude-mpm
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.20.3
|
|
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
|
|
@@ -31,7 +31,7 @@ Requires-Dist: requests>=2.25.0
|
|
|
31
31
|
Requires-Dist: flask>=3.0.0
|
|
32
32
|
Requires-Dist: flask-cors>=4.0.0
|
|
33
33
|
Requires-Dist: watchdog>=3.0.0
|
|
34
|
-
Requires-Dist: python-socketio>=5.
|
|
34
|
+
Requires-Dist: python-socketio>=5.14.0
|
|
35
35
|
Requires-Dist: aiohttp>=3.9.0
|
|
36
36
|
Requires-Dist: aiohttp-cors<0.8.0,>=0.7.0
|
|
37
37
|
Requires-Dist: python-engineio>=4.8.0
|
|
@@ -75,7 +75,7 @@ Requires-Dist: sphinx>=7.2.0; extra == "docs"
|
|
|
75
75
|
Requires-Dist: sphinx-rtd-theme>=1.3.0; extra == "docs"
|
|
76
76
|
Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
|
|
77
77
|
Provides-Extra: monitor
|
|
78
|
-
Requires-Dist: python-socketio>=5.
|
|
78
|
+
Requires-Dist: python-socketio>=5.14.0; extra == "monitor"
|
|
79
79
|
Requires-Dist: aiohttp>=3.9.0; extra == "monitor"
|
|
80
80
|
Requires-Dist: aiohttp-cors<0.8.0,>=0.7.0; extra == "monitor"
|
|
81
81
|
Requires-Dist: python-engineio>=4.8.0; extra == "monitor"
|
|
@@ -157,13 +157,12 @@ 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**:
|
|
161
|
-
- 🧠 **Persistent Knowledge System**: Project-specific kuzu-memory integration for intelligent context retention
|
|
160
|
+
- 🎯 **Skills System**: 20 bundled skills with auto-linking, three-tier organization (bundled/user/project), and interactive configuration
|
|
162
161
|
- 🔄 **Session Management**: Resume previous sessions with `--resume`
|
|
162
|
+
- 📋 **Resume Log System**: Proactive context management with automatic 10k-token session logs at 70%/85%/95% thresholds
|
|
163
163
|
- 📊 **Real-Time Monitoring**: Live dashboard with `--monitor` flag
|
|
164
|
-
- 🔌 **
|
|
165
|
-
-
|
|
166
|
-
- 📁 **Multi-Project Support**: Per-session working directories with persistent knowledge graphs
|
|
164
|
+
- 🔌 **MCP Integration**: Full support for Model Context Protocol services
|
|
165
|
+
- 📁 **Multi-Project Support**: Per-session working directories
|
|
167
166
|
- 🔍 **Git Integration**: View diffs and track changes across projects
|
|
168
167
|
- 🎯 **Smart Task Orchestration**: PM agent intelligently routes work to specialists
|
|
169
168
|
- ⚡ **Simplified Architecture**: ~3,700 lines removed for better performance and maintainability
|
|
@@ -175,8 +174,8 @@ A powerful orchestration framework for **Claude Code (CLI)** that enables multi-
|
|
|
175
174
|
# Basic installation
|
|
176
175
|
pip install claude-mpm
|
|
177
176
|
|
|
178
|
-
# Install with
|
|
179
|
-
pip install "claude-mpm[
|
|
177
|
+
# Install with monitoring dashboard (recommended)
|
|
178
|
+
pip install "claude-mpm[monitor]"
|
|
180
179
|
```
|
|
181
180
|
|
|
182
181
|
Or with pipx (recommended for isolated installation):
|
|
@@ -184,30 +183,87 @@ Or with pipx (recommended for isolated installation):
|
|
|
184
183
|
# Basic installation
|
|
185
184
|
pipx install claude-mpm
|
|
186
185
|
|
|
187
|
-
# Install with
|
|
188
|
-
pipx install "claude-mpm[
|
|
189
|
-
|
|
190
|
-
# Install with all features
|
|
191
|
-
pipx install "claude-mpm[mcp,monitor]"
|
|
192
|
-
|
|
193
|
-
# Configure MCP for pipx users:
|
|
194
|
-
claude-mpm mcp-pipx-config
|
|
186
|
+
# Install with monitoring dashboard (recommended)
|
|
187
|
+
pipx install "claude-mpm[monitor]"
|
|
195
188
|
```
|
|
196
189
|
|
|
197
190
|
**💡 Optional Dependencies**:
|
|
198
|
-
- `[mcp]` - Include MCP services (mcp-vector-search, mcp-browser, mcp-ticketer)
|
|
199
191
|
- `[monitor]` - Full monitoring dashboard with Socket.IO and async web server components
|
|
200
|
-
-
|
|
201
|
-
- **Note**: kuzu-memory is now a required dependency, always included with Claude MPM
|
|
202
|
-
- **Auto-Install**: mcp-vector-search offers interactive installation on first use (pip/pipx choice)
|
|
203
|
-
- Without pre-installed MCP dependencies, services install on-demand with user confirmation
|
|
192
|
+
- `[mcp]` - Additional MCP services (mcp-browser, mcp-ticketer) - most users won't need this
|
|
204
193
|
|
|
205
194
|
**🎉 Pipx Support Now Fully Functional!** Recent improvements ensure complete compatibility:
|
|
206
195
|
- ✅ Socket.IO daemon script path resolution (fixed)
|
|
207
|
-
- ✅ Commands directory access (fixed)
|
|
196
|
+
- ✅ Commands directory access (fixed)
|
|
208
197
|
- ✅ Resource files properly packaged for pipx environments
|
|
209
198
|
- ✅ Python 3.13+ fully supported
|
|
210
199
|
|
|
200
|
+
## 🤝 Recommended Partner Products
|
|
201
|
+
|
|
202
|
+
Claude MPM works excellently with these complementary MCP tools. While optional, we **strongly recommend** installing them for enhanced capabilities:
|
|
203
|
+
|
|
204
|
+
### kuzu-memory - Advanced Memory Management
|
|
205
|
+
|
|
206
|
+
**What it does**: Provides persistent, project-specific knowledge graphs that enable agents to learn and retain context across sessions. Your agents will remember project patterns, architectural decisions, and important context automatically.
|
|
207
|
+
|
|
208
|
+
**Installation:**
|
|
209
|
+
```bash
|
|
210
|
+
pipx install kuzu-memory
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
**Benefits with Claude MPM:**
|
|
214
|
+
- 🧠 **Persistent Context**: Agents remember project-specific patterns and decisions across sessions
|
|
215
|
+
- 🎯 **Intelligent Prompts**: Automatically enriches agent prompts with relevant historical context
|
|
216
|
+
- 📊 **Knowledge Graphs**: Structured storage of project knowledge, not just flat memory
|
|
217
|
+
- 🔄 **Seamless Integration**: Works transparently in the background with zero configuration
|
|
218
|
+
- 💡 **Smart Learning**: Agents improve over time as they learn your project's patterns
|
|
219
|
+
|
|
220
|
+
**Perfect for**: Long-running projects, teams needing consistent context, complex codebases with deep architectural patterns.
|
|
221
|
+
|
|
222
|
+
**Learn more**: [kuzu-memory on PyPI](https://pypi.org/project/kuzu-memory/) | [GitHub Repository](https://github.com/bobmatnyc/kuzu-memory)
|
|
223
|
+
|
|
224
|
+
---
|
|
225
|
+
|
|
226
|
+
### mcp-vector-search - Semantic Code Search
|
|
227
|
+
|
|
228
|
+
**What it does**: Enables semantic code search across your entire codebase using AI embeddings. Find code by what it *does*, not just what it's *named*. Search for "authentication logic" and find relevant functions even if they're named differently.
|
|
229
|
+
|
|
230
|
+
**Installation:**
|
|
231
|
+
```bash
|
|
232
|
+
pipx install mcp-vector-search
|
|
233
|
+
```
|
|
234
|
+
|
|
235
|
+
**Benefits with Claude MPM:**
|
|
236
|
+
- 🔍 **Semantic Discovery**: Find code by intent and functionality, not just keywords
|
|
237
|
+
- 🎯 **Context-Aware**: Understand code relationships and similarities automatically
|
|
238
|
+
- ⚡ **Fast Indexing**: Efficient vector embeddings for large codebases
|
|
239
|
+
- 🔄 **Live Updates**: Automatically tracks code changes and updates index
|
|
240
|
+
- 📊 **Pattern Recognition**: Discover similar code patterns and potential refactoring opportunities
|
|
241
|
+
|
|
242
|
+
**Use with**: `/mpm-search "authentication logic"` command in Claude Code sessions or `claude-mpm search` CLI command.
|
|
243
|
+
|
|
244
|
+
**Perfect for**: Large codebases, discovering existing functionality, finding similar implementations, architectural exploration.
|
|
245
|
+
|
|
246
|
+
**Learn more**: [mcp-vector-search on PyPI](https://pypi.org/project/mcp-vector-search/) | [GitHub Repository](https://github.com/bobmatnyc/mcp-vector-search)
|
|
247
|
+
|
|
248
|
+
---
|
|
249
|
+
|
|
250
|
+
### Quick Setup - Both Tools
|
|
251
|
+
|
|
252
|
+
Install both recommended tools in one go:
|
|
253
|
+
|
|
254
|
+
```bash
|
|
255
|
+
pipx install kuzu-memory
|
|
256
|
+
pipx install mcp-vector-search
|
|
257
|
+
```
|
|
258
|
+
|
|
259
|
+
Then verify they're working:
|
|
260
|
+
|
|
261
|
+
```bash
|
|
262
|
+
claude-mpm verify
|
|
263
|
+
```
|
|
264
|
+
|
|
265
|
+
**That's it!** These tools integrate automatically with Claude MPM once installed. No additional configuration needed.
|
|
266
|
+
|
|
211
267
|
**That's it!** See [QUICKSTART.md](QUICKSTART.md) for immediate usage or [docs/user/installation.md](docs/user/installation.md) for advanced options.
|
|
212
268
|
|
|
213
269
|
## Quick Usage
|
|
@@ -263,8 +319,7 @@ See [QUICKSTART.md](QUICKSTART.md) for complete usage examples.
|
|
|
263
319
|
Following Phase 3 architectural simplification in v4.4.1, Claude MPM features:
|
|
264
320
|
|
|
265
321
|
- **Streamlined Rich Interface**: Removed complex TUI system (~2,500 lines) for cleaner user experience
|
|
266
|
-
- **
|
|
267
|
-
- **Persistent Knowledge System**: Project-specific kuzu-memory databases with intelligent prompt enrichment
|
|
322
|
+
- **MCP Integration**: Full support for Model Context Protocol services with automatic detection
|
|
268
323
|
- **Service-Oriented Architecture**: Simplified five specialized service domains
|
|
269
324
|
- **Interface-Based Contracts**: All services implement explicit interfaces
|
|
270
325
|
- **Enhanced Performance**: ~3,700 lines removed for better startup time and maintainability
|
|
@@ -280,11 +335,26 @@ Claude MPM includes 15 specialized agents:
|
|
|
280
335
|
|
|
281
336
|
#### Core Development
|
|
282
337
|
- **Engineer** - Software development and implementation
|
|
283
|
-
- **Research** - Code analysis and research
|
|
338
|
+
- **Research** - Code analysis and research
|
|
284
339
|
- **Documentation** - Documentation creation and maintenance
|
|
285
340
|
- **QA** - Testing and quality assurance
|
|
286
341
|
- **Security** - Security analysis and implementation
|
|
287
342
|
|
|
343
|
+
#### Language-Specific Engineers
|
|
344
|
+
- **Python Engineer (v2.3.0)** - Type-safe, async-first Python with SOA patterns for non-trivial applications
|
|
345
|
+
- Service-oriented architecture with ABC interfaces for applications
|
|
346
|
+
- Lightweight script patterns for automation and one-off tasks
|
|
347
|
+
- Clear decision criteria for when to use DI/SOA vs simple functions
|
|
348
|
+
- Dependency injection containers with auto-resolution
|
|
349
|
+
- Use for: Web applications, microservices, data pipelines (DI/SOA) or scripts, CLI tools, notebooks (simple functions)
|
|
350
|
+
|
|
351
|
+
- **Rust Engineer (v1.1.0)** - Memory-safe, high-performance systems with trait-based service architecture
|
|
352
|
+
- Dependency injection with traits (constructor injection, trait objects)
|
|
353
|
+
- Service-oriented architecture patterns (repository, builder)
|
|
354
|
+
- Decision criteria for when to use DI/SOA vs simple code
|
|
355
|
+
- Async programming with tokio and zero-cost abstractions
|
|
356
|
+
- Use for: Web services, microservices (DI/SOA) or CLI tools, scripts (simple code)
|
|
357
|
+
|
|
288
358
|
#### Operations & Infrastructure
|
|
289
359
|
- **Ops** - Operations and deployment with advanced git commit authority and security verification (v2.2.2+)
|
|
290
360
|
- **Version Control** - Git and version management
|
|
@@ -310,17 +380,24 @@ Agents learn project-specific patterns using a simple list format and can update
|
|
|
310
380
|
|
|
311
381
|
Claude MPM includes a powerful skills system that eliminates redundant agent guidance through reusable skill modules:
|
|
312
382
|
|
|
313
|
-
**
|
|
383
|
+
**20 Bundled Skills** covering essential development workflows (all versioned starting at 0.1.0):
|
|
314
384
|
- Git workflow, TDD, code review, systematic debugging
|
|
315
385
|
- API documentation, refactoring patterns, performance profiling
|
|
316
386
|
- Docker containerization, database migrations, security scanning
|
|
317
387
|
- JSON/PDF/XLSX handling, async testing, ImageMagick operations
|
|
388
|
+
- Local development servers: Next.js, FastAPI, Vite, Express
|
|
389
|
+
- Web performance: Lighthouse metrics, Core Web Vitals optimization
|
|
318
390
|
|
|
319
391
|
**Three-Tier Organization:**
|
|
320
|
-
- **Bundled**: Core skills included with Claude MPM (~
|
|
392
|
+
- **Bundled**: Core skills included with Claude MPM (~15,000 lines of reusable guidance)
|
|
321
393
|
- **User**: Custom skills in `~/.config/claude-mpm/skills/`
|
|
322
394
|
- **Project**: Project-specific skills in `.claude-mpm/skills/`
|
|
323
395
|
|
|
396
|
+
**Version Tracking:**
|
|
397
|
+
- All skills support semantic versioning (MAJOR.MINOR.PATCH)
|
|
398
|
+
- Check versions with `/mpm-version` command in Claude Code
|
|
399
|
+
- See [Skills Versioning Guide](docs/user/skills-versioning.md) for details
|
|
400
|
+
|
|
324
401
|
**Quick Access:**
|
|
325
402
|
```bash
|
|
326
403
|
# Interactive skills management
|
|
@@ -356,6 +433,72 @@ claude-mpm cleanup-memory
|
|
|
356
433
|
claude-mpm cleanup-memory --days 7
|
|
357
434
|
```
|
|
358
435
|
|
|
436
|
+
### Resume Log System
|
|
437
|
+
|
|
438
|
+
**NEW in v4.17.2** - Proactive context management for seamless session continuity.
|
|
439
|
+
|
|
440
|
+
The Resume Log System automatically generates structured 10k-token logs when approaching Claude's context window limits, enabling you to resume work without losing important context.
|
|
441
|
+
|
|
442
|
+
**Key Features**:
|
|
443
|
+
- 🎯 **Graduated Thresholds**: Warnings at 70% (60k buffer), 85% (30k buffer), and 95% (10k buffer)
|
|
444
|
+
- 📋 **Structured Logs**: 10k-token budget intelligently distributed across 7 key sections
|
|
445
|
+
- 🔄 **Seamless Resumption**: Automatically loads previous session context on startup
|
|
446
|
+
- 📁 **Human-Readable**: Markdown format for both Claude and human review
|
|
447
|
+
- ⚙️ **Zero-Configuration**: Works automatically with sensible defaults
|
|
448
|
+
|
|
449
|
+
**How It Works**:
|
|
450
|
+
1. Monitor token usage continuously throughout session
|
|
451
|
+
2. Display proactive warnings at 70%, 85%, and 95% thresholds
|
|
452
|
+
3. Automatically generate resume log when approaching limits
|
|
453
|
+
4. Load previous resume log when starting new session
|
|
454
|
+
5. Continue work seamlessly with full context preservation
|
|
455
|
+
|
|
456
|
+
**Example Resume Log Structure**:
|
|
457
|
+
```markdown
|
|
458
|
+
# Session Resume Log: 20251101_115000
|
|
459
|
+
|
|
460
|
+
## Context Metrics (500 tokens)
|
|
461
|
+
- Token usage and percentage
|
|
462
|
+
|
|
463
|
+
## Mission Summary (1,000 tokens)
|
|
464
|
+
- Overall goal and purpose
|
|
465
|
+
|
|
466
|
+
## Accomplishments (2,000 tokens)
|
|
467
|
+
- What was completed
|
|
468
|
+
|
|
469
|
+
## Key Findings (2,500 tokens)
|
|
470
|
+
- Important discoveries
|
|
471
|
+
|
|
472
|
+
## Decisions & Rationale (1,500 tokens)
|
|
473
|
+
- Why choices were made
|
|
474
|
+
|
|
475
|
+
## Next Steps (1,500 tokens)
|
|
476
|
+
- What to do next
|
|
477
|
+
|
|
478
|
+
## Critical Context (1,000 tokens)
|
|
479
|
+
- Essential state, IDs, paths
|
|
480
|
+
```
|
|
481
|
+
|
|
482
|
+
**Configuration** (`.claude-mpm/configuration.yaml`):
|
|
483
|
+
```yaml
|
|
484
|
+
context_management:
|
|
485
|
+
enabled: true
|
|
486
|
+
budget_total: 200000
|
|
487
|
+
thresholds:
|
|
488
|
+
caution: 0.70 # First warning - plan transition
|
|
489
|
+
warning: 0.85 # Strong warning - wrap up
|
|
490
|
+
critical: 0.95 # Urgent - stop new work
|
|
491
|
+
resume_logs:
|
|
492
|
+
enabled: true
|
|
493
|
+
auto_generate: true
|
|
494
|
+
max_tokens: 10000
|
|
495
|
+
storage_dir: ".claude-mpm/resume-logs"
|
|
496
|
+
```
|
|
497
|
+
|
|
498
|
+
**QA Status**: 40/41 tests passing (97.6% coverage), APPROVED FOR PRODUCTION ✅
|
|
499
|
+
|
|
500
|
+
See [docs/user/resume-logs.md](docs/user/resume-logs.md) for complete documentation.
|
|
501
|
+
|
|
359
502
|
### Real-Time Monitoring
|
|
360
503
|
The `--monitor` flag opens a web dashboard showing live agent activity, file operations, and session management.
|
|
361
504
|
|
|
@@ -394,11 +537,17 @@ See [docs/MEMORY.md](docs/MEMORY.md) and [docs/developer/11-dashboard/README.md]
|
|
|
394
537
|
- **Single Entry Point**: [docs/README.md](docs/README.md) is your navigation hub
|
|
395
538
|
- **Clear User Paths**: Organized by user type and experience level
|
|
396
539
|
- **Cross-Referenced**: Links between related topics and sections
|
|
397
|
-
- **Up-to-Date**: Version 4.16.
|
|
540
|
+
- **Up-to-Date**: Version 4.16.3 with web performance optimization skill
|
|
541
|
+
|
|
542
|
+
## Recent Updates (v4.16.3)
|
|
543
|
+
|
|
544
|
+
**Web Performance Optimization**: New `web-performance-optimization` skill for Lighthouse metrics, Core Web Vitals (LCP, INP, CLS), and framework-specific optimization patterns.
|
|
545
|
+
|
|
546
|
+
## Previous Updates (v4.16.1)
|
|
398
547
|
|
|
399
|
-
|
|
548
|
+
**Local Development Skills**: Added 4 new toolchain-specific skills: `nextjs-local-dev`, `fastapi-local-dev`, `vite-local-dev`, and `express-local-dev` for professional local server management with PM2, HMR, and production-grade patterns.
|
|
400
549
|
|
|
401
|
-
**Skills System Integration**:
|
|
550
|
+
**Skills System Integration**: 20 bundled skills with auto-linking, three-tier organization, and interactive configuration. Eliminates 85% of redundant guidance across agent templates (~15,000 lines of reusable content).
|
|
402
551
|
|
|
403
552
|
**Enhanced Documentation**: Complete documentation suite with PDF guides, reorganized structure, and comprehensive design documents for skills integration.
|
|
404
553
|
|