claude-mpm 5.4.88__py3-none-any.whl → 5.4.90__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/CLAUDE_MPM_OUTPUT_STYLE.md +8 -5
- claude_mpm/agents/PM_INSTRUCTIONS.md +67 -779
- claude_mpm/cli/commands/mpm_init/core.py +2 -2
- claude_mpm/cli/startup.py +51 -14
- claude_mpm/init.py +1 -1
- claude_mpm/services/cli/session_resume_helper.py +10 -2
- claude_mpm/services/pm_skills_deployer.py +177 -83
- claude_mpm/services/socketio/handlers/hook.py +14 -7
- claude_mpm/services/socketio/server/main.py +12 -4
- claude_mpm/skills/bundled/pm/mpm-agent-update-workflow/SKILL.md +75 -0
- claude_mpm/skills/bundled/pm/mpm-circuit-breaker-enforcement/SKILL.md +476 -0
- claude_mpm/skills/bundled/pm/mpm-session-management/SKILL.md +312 -0
- claude_mpm/skills/bundled/pm/{pm-teaching-mode → mpm-teaching-mode}/SKILL.md +2 -2
- claude_mpm/skills/bundled/pm/mpm-tool-usage-guide/SKILL.md +386 -0
- claude_mpm/skills/skill_manager.py +4 -4
- claude_mpm-5.4.90.dist-info/METADATA +377 -0
- {claude_mpm-5.4.88.dist-info → claude_mpm-5.4.90.dist-info}/RECORD +29 -27
- claude_mpm/hooks/claude_hooks/__pycache__/installer.cpython-311.pyc +0 -0
- claude_mpm/hooks/claude_hooks/services/__pycache__/connection_manager.cpython-311.pyc +0 -0
- claude_mpm-5.4.88.dist-info/METADATA +0 -1023
- /claude_mpm/skills/bundled/pm/{pm-bug-reporting/pm-bug-reporting.md → mpm-bug-reporting/SKILL.md} +0 -0
- /claude_mpm/skills/bundled/pm/{pm-delegation-patterns → mpm-delegation-patterns}/SKILL.md +0 -0
- /claude_mpm/skills/bundled/pm/{pm-git-file-tracking → mpm-git-file-tracking}/SKILL.md +0 -0
- /claude_mpm/skills/bundled/pm/{pm-pr-workflow → mpm-pr-workflow}/SKILL.md +0 -0
- /claude_mpm/skills/bundled/pm/{pm-ticketing-integration → mpm-ticketing-integration}/SKILL.md +0 -0
- /claude_mpm/skills/bundled/pm/{pm-verification-protocols → mpm-verification-protocols}/SKILL.md +0 -0
- {claude_mpm-5.4.88.dist-info → claude_mpm-5.4.90.dist-info}/WHEEL +0 -0
- {claude_mpm-5.4.88.dist-info → claude_mpm-5.4.90.dist-info}/entry_points.txt +0 -0
- {claude_mpm-5.4.88.dist-info → claude_mpm-5.4.90.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-5.4.88.dist-info → claude_mpm-5.4.90.dist-info}/licenses/LICENSE-FAQ.md +0 -0
- {claude_mpm-5.4.88.dist-info → claude_mpm-5.4.90.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,377 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: claude-mpm
|
|
3
|
+
Version: 5.4.90
|
|
4
|
+
Summary: Claude Multi-Agent Project Manager - Orchestrate Claude with agent delegation and ticket tracking
|
|
5
|
+
Author-email: Bob Matsuoka <bob@matsuoka.com>
|
|
6
|
+
Maintainer: Claude MPM Team
|
|
7
|
+
License: Elastic-2.0
|
|
8
|
+
Project-URL: Homepage, https://github.com/bobmatnyc/claude-mpm
|
|
9
|
+
Project-URL: Repository, https://github.com/bobmatnyc/claude-mpm.git
|
|
10
|
+
Project-URL: Issues, https://github.com/bobmatnyc/claude-mpm/issues
|
|
11
|
+
Project-URL: Documentation, https://github.com/bobmatnyc/claude-mpm/blob/main/README.md
|
|
12
|
+
Keywords: claude,orchestration,multi-agent,ticket-management
|
|
13
|
+
Classifier: Development Status :: 3 - Alpha
|
|
14
|
+
Classifier: Intended Audience :: Developers
|
|
15
|
+
Classifier: License :: Other/Proprietary License
|
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
20
|
+
Requires-Python: >=3.11
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
License-File: LICENSE-FAQ.md
|
|
24
|
+
Requires-Dist: ai-trackdown-pytools>=1.4.0
|
|
25
|
+
Requires-Dist: pyyaml>=6.0
|
|
26
|
+
Requires-Dist: python-dotenv>=0.19.0
|
|
27
|
+
Requires-Dist: click>=8.0.0
|
|
28
|
+
Requires-Dist: pexpect>=4.8.0
|
|
29
|
+
Requires-Dist: psutil>=5.9.0
|
|
30
|
+
Requires-Dist: requests>=2.25.0
|
|
31
|
+
Requires-Dist: flask>=3.0.0
|
|
32
|
+
Requires-Dist: flask-cors>=4.0.0
|
|
33
|
+
Requires-Dist: watchdog>=3.0.0
|
|
34
|
+
Requires-Dist: python-socketio>=5.14.0
|
|
35
|
+
Requires-Dist: aiohttp>=3.9.0
|
|
36
|
+
Requires-Dist: aiohttp-cors<0.8.0,>=0.7.0
|
|
37
|
+
Requires-Dist: python-engineio>=4.8.0
|
|
38
|
+
Requires-Dist: aiofiles>=23.0.0
|
|
39
|
+
Requires-Dist: websockets>=12.0
|
|
40
|
+
Requires-Dist: python-frontmatter>=1.0.0
|
|
41
|
+
Requires-Dist: mistune>=3.0.0
|
|
42
|
+
Requires-Dist: tree-sitter>=0.21.0
|
|
43
|
+
Requires-Dist: ijson>=3.2.0
|
|
44
|
+
Requires-Dist: toml>=0.10.2
|
|
45
|
+
Requires-Dist: packaging>=21.0
|
|
46
|
+
Requires-Dist: pydantic>=2.0.0
|
|
47
|
+
Requires-Dist: pydantic-settings>=2.0.0
|
|
48
|
+
Requires-Dist: rich>=13.0.0
|
|
49
|
+
Requires-Dist: questionary>=2.0.0
|
|
50
|
+
Requires-Dist: pyee>=13.0.0
|
|
51
|
+
Requires-Dist: pathspec>=0.11.0
|
|
52
|
+
Provides-Extra: mcp
|
|
53
|
+
Requires-Dist: mcp>=0.1.0; extra == "mcp"
|
|
54
|
+
Requires-Dist: mcp-vector-search>=0.1.0; extra == "mcp"
|
|
55
|
+
Requires-Dist: mcp-browser>=0.1.0; extra == "mcp"
|
|
56
|
+
Requires-Dist: mcp-ticketer>=0.1.0; extra == "mcp"
|
|
57
|
+
Provides-Extra: dev
|
|
58
|
+
Requires-Dist: pytest>=7.0; extra == "dev"
|
|
59
|
+
Requires-Dist: pytest-asyncio; extra == "dev"
|
|
60
|
+
Requires-Dist: pytest-cov; extra == "dev"
|
|
61
|
+
Requires-Dist: ruff>=0.8.0; extra == "dev"
|
|
62
|
+
Requires-Dist: pylint>=3.0.0; extra == "dev"
|
|
63
|
+
Requires-Dist: pre-commit; extra == "dev"
|
|
64
|
+
Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
65
|
+
Requires-Dist: types-PyYAML>=6.0.0; extra == "dev"
|
|
66
|
+
Requires-Dist: types-requests>=2.25.0; extra == "dev"
|
|
67
|
+
Provides-Extra: eval
|
|
68
|
+
Requires-Dist: deepeval>=1.0.0; extra == "eval"
|
|
69
|
+
Requires-Dist: pytest>=7.4.0; extra == "eval"
|
|
70
|
+
Requires-Dist: pytest-asyncio>=0.21.0; extra == "eval"
|
|
71
|
+
Requires-Dist: pytest-timeout>=2.1.0; extra == "eval"
|
|
72
|
+
Provides-Extra: docs
|
|
73
|
+
Requires-Dist: sphinx>=7.2.0; extra == "docs"
|
|
74
|
+
Requires-Dist: sphinx-rtd-theme>=1.3.0; extra == "docs"
|
|
75
|
+
Requires-Dist: sphinx-autobuild>=2021.3.14; extra == "docs"
|
|
76
|
+
Provides-Extra: monitor
|
|
77
|
+
Requires-Dist: python-socketio>=5.14.0; extra == "monitor"
|
|
78
|
+
Requires-Dist: aiohttp>=3.9.0; extra == "monitor"
|
|
79
|
+
Requires-Dist: aiohttp-cors<0.8.0,>=0.7.0; extra == "monitor"
|
|
80
|
+
Requires-Dist: python-engineio>=4.8.0; extra == "monitor"
|
|
81
|
+
Requires-Dist: aiofiles>=23.0.0; extra == "monitor"
|
|
82
|
+
Requires-Dist: websockets>=12.0; extra == "monitor"
|
|
83
|
+
Provides-Extra: data-processing
|
|
84
|
+
Requires-Dist: pandas>=2.1.0; extra == "data-processing"
|
|
85
|
+
Requires-Dist: openpyxl>=3.1.0; extra == "data-processing"
|
|
86
|
+
Requires-Dist: xlsxwriter>=3.1.0; extra == "data-processing"
|
|
87
|
+
Requires-Dist: numpy>=1.24.0; extra == "data-processing"
|
|
88
|
+
Requires-Dist: pyarrow>=14.0.0; extra == "data-processing"
|
|
89
|
+
Requires-Dist: dask>=2023.12.0; extra == "data-processing"
|
|
90
|
+
Requires-Dist: polars>=0.19.0; extra == "data-processing"
|
|
91
|
+
Requires-Dist: xlrd>=2.0.0; extra == "data-processing"
|
|
92
|
+
Requires-Dist: xlwt>=1.3.0; extra == "data-processing"
|
|
93
|
+
Requires-Dist: csvkit>=1.3.0; extra == "data-processing"
|
|
94
|
+
Requires-Dist: tabulate>=0.9.0; extra == "data-processing"
|
|
95
|
+
Requires-Dist: python-dateutil>=2.8.0; extra == "data-processing"
|
|
96
|
+
Requires-Dist: lxml>=4.9.0; extra == "data-processing"
|
|
97
|
+
Requires-Dist: sqlalchemy>=2.0.0; extra == "data-processing"
|
|
98
|
+
Requires-Dist: psycopg2-binary>=2.9.0; extra == "data-processing"
|
|
99
|
+
Requires-Dist: pymongo>=4.5.0; extra == "data-processing"
|
|
100
|
+
Requires-Dist: redis>=5.0.0; extra == "data-processing"
|
|
101
|
+
Requires-Dist: beautifulsoup4>=4.12.0; extra == "data-processing"
|
|
102
|
+
Requires-Dist: jsonschema>=4.19.0; extra == "data-processing"
|
|
103
|
+
Provides-Extra: memory
|
|
104
|
+
Requires-Dist: kuzu-memory>=1.1.5; extra == "memory"
|
|
105
|
+
Dynamic: license-file
|
|
106
|
+
|
|
107
|
+
# Claude MPM - Multi-Agent Project Manager
|
|
108
|
+
|
|
109
|
+
A powerful orchestration framework for **Claude Code (CLI)** that enables multi-agent workflows, session management, and real-time monitoring through a streamlined Rich-based interface.
|
|
110
|
+
|
|
111
|
+
> **⚠️ Important**: Claude MPM **requires Claude Code CLI** (v2.0.30+), not Claude Desktop (app). All MCP integrations work with Claude Code's CLI interface only.
|
|
112
|
+
>
|
|
113
|
+
> **Don't have Claude Code?** Install from: https://docs.anthropic.com/en/docs/claude-code
|
|
114
|
+
>
|
|
115
|
+
> **Quick Start**: See [Getting Started Guide](docs/getting-started/README.md) to get running in 5 minutes!
|
|
116
|
+
|
|
117
|
+
---
|
|
118
|
+
|
|
119
|
+
## Who Should Use Claude MPM?
|
|
120
|
+
|
|
121
|
+
- 👥 **[Non-Technical Users (Founders/PMs)](docs/usecases/non-technical-users.md)** - Understand and oversee your technical projects without coding experience
|
|
122
|
+
- 💻 **[Developers](docs/usecases/developers.md)** - Multi-agent development workflows with semantic code search and advanced features
|
|
123
|
+
- 🏢 **[Teams](docs/usecases/teams.md)** - Collaboration patterns, session management, and coordinated workflows
|
|
124
|
+
|
|
125
|
+
---
|
|
126
|
+
|
|
127
|
+
## What is Claude MPM?
|
|
128
|
+
|
|
129
|
+
Claude MPM transforms Claude Code into a **multi-agent orchestration platform** with:
|
|
130
|
+
|
|
131
|
+
- **47+ Specialized Agents** - From Git repositories (Python, Rust, QA, Security, Ops, etc.)
|
|
132
|
+
- **Intelligent Task Routing** - PM agent delegates work to specialist agents
|
|
133
|
+
- **Session Management** - Resume previous sessions with full context preservation
|
|
134
|
+
- **Semantic Code Search** - AI-powered discovery of existing code and patterns
|
|
135
|
+
- **Real-Time Monitoring** - Live dashboard showing agent activity and performance
|
|
136
|
+
- **Git Repository Integration** - Always up-to-date agents and skills from curated repositories
|
|
137
|
+
|
|
138
|
+
---
|
|
139
|
+
|
|
140
|
+
## Quick Installation
|
|
141
|
+
|
|
142
|
+
### Prerequisites
|
|
143
|
+
|
|
144
|
+
1. **Python 3.10+** (3.11+ recommended)
|
|
145
|
+
2. **Claude Code CLI v2.0.30+** (required!)
|
|
146
|
+
|
|
147
|
+
```bash
|
|
148
|
+
# Verify Claude Code is installed
|
|
149
|
+
claude --version
|
|
150
|
+
|
|
151
|
+
# If not installed, get it from:
|
|
152
|
+
# https://docs.anthropic.com/en/docs/claude-code
|
|
153
|
+
```
|
|
154
|
+
|
|
155
|
+
### Install Claude MPM
|
|
156
|
+
|
|
157
|
+
**Homebrew (macOS):**
|
|
158
|
+
```bash
|
|
159
|
+
brew install claude-mpm --with-monitor
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
**pipx/uv (recommended):**
|
|
163
|
+
```bash
|
|
164
|
+
# With pipx
|
|
165
|
+
pipx install "claude-mpm[monitor]"
|
|
166
|
+
|
|
167
|
+
# Or with uv
|
|
168
|
+
uv tool install "claude-mpm[monitor]"
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
**pip:**
|
|
172
|
+
```bash
|
|
173
|
+
pip install "claude-mpm[monitor]"
|
|
174
|
+
```
|
|
175
|
+
|
|
176
|
+
### Verify Installation
|
|
177
|
+
|
|
178
|
+
```bash
|
|
179
|
+
# Check versions
|
|
180
|
+
claude-mpm --version
|
|
181
|
+
claude --version
|
|
182
|
+
|
|
183
|
+
# Run diagnostics
|
|
184
|
+
claude-mpm doctor
|
|
185
|
+
|
|
186
|
+
# Verify agents deployed
|
|
187
|
+
ls ~/.claude/agents/ # Should show 47+ agents
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
**What You Should See:**
|
|
191
|
+
- ✅ 47+ agents deployed to `~/.claude/agents/`
|
|
192
|
+
- ✅ 17 bundled skills (in Python package)
|
|
193
|
+
- ✅ Agent sources configured
|
|
194
|
+
- ✅ Progress bars showing sync and deployment
|
|
195
|
+
|
|
196
|
+
**💡 Recommended Partners**: Install [kuzu-memory](https://github.com/bobmatnyc/kuzu-memory) (persistent context) and [mcp-vector-search](https://github.com/bobmatnyc/mcp-vector-search) (semantic search) for enhanced capabilities.
|
|
197
|
+
|
|
198
|
+
---
|
|
199
|
+
|
|
200
|
+
## Key Features
|
|
201
|
+
|
|
202
|
+
### 🎯 Multi-Agent Orchestration
|
|
203
|
+
- **47+ Specialized Agents** from Git repositories covering all development needs
|
|
204
|
+
- **Smart Task Routing** via PM agent intelligently delegating to specialists
|
|
205
|
+
- **Session Management** with `--resume` flag for seamless continuity
|
|
206
|
+
- **Resume Log System** with automatic 10k-token summaries at 70%/85%/95% thresholds
|
|
207
|
+
|
|
208
|
+
[→ Learn more: Multi-Agent Development](docs/usecases/developers.md#multi-agent-development)
|
|
209
|
+
|
|
210
|
+
### 📦 Git Repository Integration
|
|
211
|
+
- **Curated Content** with 47+ agents automatically deployed from repositories
|
|
212
|
+
- **Always Up-to-Date** with ETag-based caching (95%+ bandwidth reduction)
|
|
213
|
+
- **Hierarchical BASE-AGENT.md** for template inheritance and DRY principles
|
|
214
|
+
- **Custom Repositories** via `claude-mpm agent-source add`
|
|
215
|
+
|
|
216
|
+
[→ Learn more: Agent Sources](docs/user/agent-sources.md)
|
|
217
|
+
|
|
218
|
+
### 🎯 Skills System
|
|
219
|
+
- **17 Bundled Skills** covering Git, TDD, Docker, API docs, testing, and more
|
|
220
|
+
- **Three-Tier Organization**: Bundled/user/project with priority resolution
|
|
221
|
+
- **Auto-Linking** to relevant agents based on roles
|
|
222
|
+
- **Custom Skills** via `.claude/skills/` or skill repositories
|
|
223
|
+
|
|
224
|
+
[→ Learn more: Skills Guide](docs/user/skills-guide.md)
|
|
225
|
+
|
|
226
|
+
### 🔍 Semantic Code Search
|
|
227
|
+
- **AI-Powered Discovery** with mcp-vector-search integration
|
|
228
|
+
- **Find by Intent** not just keywords ("authentication logic" finds relevant code)
|
|
229
|
+
- **Pattern Recognition** for discovering similar implementations
|
|
230
|
+
- **Live Updates** tracking code changes automatically
|
|
231
|
+
|
|
232
|
+
[→ Learn more: Developer Use Cases](docs/usecases/developers.md#semantic-code-search)
|
|
233
|
+
|
|
234
|
+
### 🔌 Advanced Integration
|
|
235
|
+
- **MCP Integration** with full Model Context Protocol support
|
|
236
|
+
- **Real-Time Monitoring** via `--monitor` flag and web dashboard
|
|
237
|
+
- **Multi-Project Support** with per-session working directories
|
|
238
|
+
- **Git Integration** with diff viewing and change tracking
|
|
239
|
+
|
|
240
|
+
[→ Learn more: MCP Gateway](docs/developer/13-mcp-gateway/README.md)
|
|
241
|
+
|
|
242
|
+
### ⚡ Performance & Security
|
|
243
|
+
- **Simplified Architecture** with ~3,700 lines removed for better performance
|
|
244
|
+
- **Enhanced Security** with comprehensive input validation
|
|
245
|
+
- **Intelligent Caching** with ~200ms faster startup via hash-based invalidation
|
|
246
|
+
- **Memory Management** with cleanup commands for large conversation histories
|
|
247
|
+
|
|
248
|
+
[→ Learn more: Architecture](docs/developer/ARCHITECTURE.md)
|
|
249
|
+
|
|
250
|
+
---
|
|
251
|
+
|
|
252
|
+
## Quick Usage
|
|
253
|
+
|
|
254
|
+
```bash
|
|
255
|
+
# Start interactive mode
|
|
256
|
+
claude-mpm
|
|
257
|
+
|
|
258
|
+
# Start with monitoring dashboard
|
|
259
|
+
claude-mpm run --monitor
|
|
260
|
+
|
|
261
|
+
# Resume previous session
|
|
262
|
+
claude-mpm run --resume
|
|
263
|
+
|
|
264
|
+
# Semantic code search
|
|
265
|
+
claude-mpm search "authentication logic"
|
|
266
|
+
# or inside Claude Code:
|
|
267
|
+
/mpm-search "authentication logic"
|
|
268
|
+
|
|
269
|
+
# Health diagnostics
|
|
270
|
+
claude-mpm doctor
|
|
271
|
+
|
|
272
|
+
# Verify MCP services
|
|
273
|
+
claude-mpm verify
|
|
274
|
+
|
|
275
|
+
# Manage memory
|
|
276
|
+
claude-mpm cleanup-memory
|
|
277
|
+
```
|
|
278
|
+
|
|
279
|
+
**💡 Update Checking**: Claude MPM automatically checks for updates and verifies Claude Code compatibility on startup. Configure in `~/.claude-mpm/configuration.yaml` or see [docs/update-checking.md](docs/update-checking.md).
|
|
280
|
+
|
|
281
|
+
[→ Complete usage examples: User Guide](docs/user/user-guide.md)
|
|
282
|
+
|
|
283
|
+
---
|
|
284
|
+
|
|
285
|
+
## What's New in v5.0
|
|
286
|
+
|
|
287
|
+
### Git Repository Integration for Agents & Skills
|
|
288
|
+
|
|
289
|
+
- **📦 Massive Library**: 47+ agents and hundreds of skills deployed automatically
|
|
290
|
+
- **🏢 Official Content**: Anthropic's official skills repository included by default
|
|
291
|
+
- **🔧 Fully Extensible**: Add your own repositories with immediate testing
|
|
292
|
+
- **🌳 Smart Organization**: Hierarchical BASE-AGENT.md inheritance
|
|
293
|
+
- **📊 Clear Visibility**: Two-phase progress bars (sync + deployment)
|
|
294
|
+
- **✅ Fail-Fast Testing**: Test repositories before they cause startup issues
|
|
295
|
+
|
|
296
|
+
**Quick Start with Custom Repositories:**
|
|
297
|
+
```bash
|
|
298
|
+
# Add custom agent repository
|
|
299
|
+
claude-mpm agent-source add https://github.com/yourorg/your-agents
|
|
300
|
+
|
|
301
|
+
# Add custom skill repository
|
|
302
|
+
claude-mpm skill-source add https://github.com/yourorg/your-skills
|
|
303
|
+
|
|
304
|
+
# Test repository without saving
|
|
305
|
+
claude-mpm agent-source add https://github.com/yourorg/your-agents --test
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
[→ Full details: What's New](CHANGELOG.md)
|
|
309
|
+
|
|
310
|
+
---
|
|
311
|
+
|
|
312
|
+
## Documentation
|
|
313
|
+
|
|
314
|
+
**📚 [Complete Documentation Hub](docs/README.md)** - Start here for all documentation!
|
|
315
|
+
|
|
316
|
+
### Quick Links by User Type
|
|
317
|
+
|
|
318
|
+
#### 👥 For Users
|
|
319
|
+
- **[🚀 5-Minute Quick Start](docs/user/quickstart.md)** - Get running immediately
|
|
320
|
+
- **[📦 Installation Guide](docs/user/installation.md)** - All installation methods
|
|
321
|
+
- **[📖 User Guide](docs/user/user-guide.md)** - Complete user documentation
|
|
322
|
+
- **[❓ FAQ](docs/guides/FAQ.md)** - Common questions answered
|
|
323
|
+
|
|
324
|
+
#### 💻 For Developers
|
|
325
|
+
- **[🏗️ Architecture Overview](docs/developer/ARCHITECTURE.md)** - Service-oriented system design
|
|
326
|
+
- **[💻 Developer Guide](docs/developer/README.md)** - Complete development documentation
|
|
327
|
+
- **[🧪 Contributing](docs/developer/03-development/README.md)** - How to contribute
|
|
328
|
+
- **[📊 API Reference](docs/API.md)** - Complete API documentation
|
|
329
|
+
|
|
330
|
+
#### 🤖 For Agent Creators
|
|
331
|
+
- **[🤖 Agent System](docs/AGENTS.md)** - Complete agent development guide
|
|
332
|
+
- **[📝 Creation Guide](docs/developer/07-agent-system/creation-guide.md)** - Step-by-step tutorials
|
|
333
|
+
- **[📋 Schema Reference](docs/developer/10-schemas/agent_schema_documentation.md)** - Agent format specifications
|
|
334
|
+
|
|
335
|
+
#### 🚀 For Operations
|
|
336
|
+
- **[🚀 Deployment](docs/DEPLOYMENT.md)** - Release management & versioning
|
|
337
|
+
- **[📊 Monitoring](docs/MONITOR.md)** - Real-time dashboard & metrics
|
|
338
|
+
- **[🐛 Troubleshooting](docs/TROUBLESHOOTING.md)** - Enhanced `doctor` command with auto-fix
|
|
339
|
+
|
|
340
|
+
---
|
|
341
|
+
|
|
342
|
+
## Contributing
|
|
343
|
+
|
|
344
|
+
Contributions are welcome! Please see:
|
|
345
|
+
- **[Contributing Guide](docs/developer/03-development/README.md)** - How to contribute
|
|
346
|
+
- **[Code Formatting](docs/developer/CODE_FORMATTING.md)** - Code quality standards
|
|
347
|
+
- **[Project Structure](docs/reference/STRUCTURE.md)** - Codebase organization
|
|
348
|
+
|
|
349
|
+
**Development Workflow:**
|
|
350
|
+
```bash
|
|
351
|
+
# Complete development setup
|
|
352
|
+
make dev-complete
|
|
353
|
+
|
|
354
|
+
# Or step by step:
|
|
355
|
+
make setup-dev # Install in development mode
|
|
356
|
+
make setup-pre-commit # Set up automated code formatting
|
|
357
|
+
```
|
|
358
|
+
|
|
359
|
+
---
|
|
360
|
+
|
|
361
|
+
## 📜 License
|
|
362
|
+
|
|
363
|
+
[](LICENSE)
|
|
364
|
+
|
|
365
|
+
Licensed under the [Elastic License 2.0](LICENSE) - free for internal use and commercial products.
|
|
366
|
+
|
|
367
|
+
**Main restriction:** Cannot offer as a hosted SaaS service without a commercial license.
|
|
368
|
+
|
|
369
|
+
📖 [Licensing FAQ](LICENSE-FAQ.md) | 💼 Commercial licensing: bob@matsuoka.com
|
|
370
|
+
|
|
371
|
+
---
|
|
372
|
+
|
|
373
|
+
## Credits
|
|
374
|
+
|
|
375
|
+
- Based on [claude-multiagent-pm](https://github.com/kfsone/claude-multiagent-pm)
|
|
376
|
+
- Enhanced for [Claude Code (CLI)](https://docs.anthropic.com/en/docs/claude-code) integration
|
|
377
|
+
- Built with ❤️ by the Claude MPM community
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
claude_mpm/BUILD_NUMBER,sha256=9JfxhnDtr-8l3kCP2U5TVXSErptHoga8m7XA8zqgGOc,4
|
|
2
|
-
claude_mpm/VERSION,sha256=
|
|
2
|
+
claude_mpm/VERSION,sha256=PqwFkZ733iP3V1Gh-jpOeNrrbb-Ax7nlNJHcEfhxqfE,7
|
|
3
3
|
claude_mpm/__init__.py,sha256=AGfh00BHKvLYD-UVFw7qbKtl7NMRIzRXOWw7vEuZ-h4,2214
|
|
4
4
|
claude_mpm/__main__.py,sha256=Ro5UBWBoQaSAIoSqWAr7zkbLyvi4sSy28WShqAhKJG0,723
|
|
5
5
|
claude_mpm/constants.py,sha256=pz3lTrZZR5HhV3eZzYtIbtBwWo7iM6pkBHP_ixxmI6Y,6827
|
|
6
|
-
claude_mpm/init.py,sha256=
|
|
6
|
+
claude_mpm/init.py,sha256=YSA2f0evX8FvqyI2Zx_4tvhaw18FPSMlf5yqTR_ilPE,26394
|
|
7
7
|
claude_mpm/ticket_wrapper.py,sha256=qe5xY579t7_7fK5nyeAfHN_fr7CXdeOD3jfXEc8-7yo,828
|
|
8
8
|
claude_mpm/agents/BASE_AGENT.md,sha256=UWvKX5S5L2l68F_sn54otC_HDX5kTt8G4ionUcTVpGo,5645
|
|
9
9
|
claude_mpm/agents/BASE_ENGINEER.md,sha256=I7BusSGQfuV0uSkRBro51qzCzagUEPrXnndIElypPJk,24434
|
|
10
10
|
claude_mpm/agents/CLAUDE_MPM_FOUNDERS_OUTPUT_STYLE.md,sha256=d4hZRc2wG2XzLaIxl2eQgdeuW6115C_pm6MtqNHVtOc,12997
|
|
11
|
-
claude_mpm/agents/CLAUDE_MPM_OUTPUT_STYLE.md,sha256=
|
|
11
|
+
claude_mpm/agents/CLAUDE_MPM_OUTPUT_STYLE.md,sha256=C61nb8szGeeGaXQd9-VPpL1t79G2pDoYlDsGv_JLOLk,4349
|
|
12
12
|
claude_mpm/agents/CLAUDE_MPM_TEACHER_OUTPUT_STYLE.md,sha256=vneNW5vHjfKsRIukkuGbAnvnyp_-EC3qpFzHDdsMOwc,4796
|
|
13
13
|
claude_mpm/agents/MEMORY.md,sha256=V1mGx5oEaLdN9AYLX3Xetslmr2Ja6vnLPATeEoR6bvw,3303
|
|
14
|
-
claude_mpm/agents/PM_INSTRUCTIONS.md,sha256=
|
|
14
|
+
claude_mpm/agents/PM_INSTRUCTIONS.md,sha256=_PeWJGuXrtmJVCGjaoiZufvChjWhpLNiEL2Qe-nXZDQ,33224
|
|
15
15
|
claude_mpm/agents/WORKFLOW.md,sha256=BD5V5wNgz4C2gHPn4ekRmj4i7nn56s1ZF8YnhWBPkFw,3331
|
|
16
16
|
claude_mpm/agents/__init__.py,sha256=3cCQh2Hf_-2F9XDT5In533Bw7oKuGIqZvOdBW7af6dY,3403
|
|
17
17
|
claude_mpm/agents/agent-template.yaml,sha256=mRlz5Yd0SmknTeoJWgFkZXzEF5T7OmGBJGs2-KPT93k,1969
|
|
@@ -42,7 +42,7 @@ claude_mpm/cli/chrome_devtools_installer.py,sha256=efA_ZX1iR3oaJi3222079BQw6DEG8
|
|
|
42
42
|
claude_mpm/cli/executor.py,sha256=1MQdNPNoIewSR1q8nXjJuES3zKEi_IqVcZQzt9bsxw8,10601
|
|
43
43
|
claude_mpm/cli/helpers.py,sha256=CypEhw0tbNH6_GzVTaQdi4w7ThCWO43Ep92YbJzPR4I,3638
|
|
44
44
|
claude_mpm/cli/parser.py,sha256=Vqx9n-6Xo1uNhXR4rThmgWpZXTr0nOtkgDf3oMS9b0g,5855
|
|
45
|
-
claude_mpm/cli/startup.py,sha256=
|
|
45
|
+
claude_mpm/cli/startup.py,sha256=pOFS4qtVAvfUEEsgSMi7vW9M_5b_mYtNwADXikoa2Y4,62961
|
|
46
46
|
claude_mpm/cli/startup_display.py,sha256=R_QIamjfdaY5o_VxpIeymyYj1Qde2B9hPXy1P-KmUKI,14972
|
|
47
47
|
claude_mpm/cli/startup_logging.py,sha256=RTuyd6CbhiFQz7Z07LDDhK_ZAnZfuJ9B0NghVSntHFI,29390
|
|
48
48
|
claude_mpm/cli/utils.py,sha256=FSMPftBZM8MeUyTtiB63Lz7oFOgkzwTetQs58RbRb_Q,8785
|
|
@@ -104,7 +104,7 @@ claude_mpm/cli/commands/uninstall.py,sha256=KGlVG6veEs1efLVjrZ3wSty7e1zVR9wpt-VX
|
|
|
104
104
|
claude_mpm/cli/commands/upgrade.py,sha256=NYMVONNlj78WHoQ6eyVInroE95AeQxUY2_TpjYFTdYE,5409
|
|
105
105
|
claude_mpm/cli/commands/verify.py,sha256=wmu2UYINK15q2e34TdlTyamvtLDE7r3Oj_XT9zpT5Kk,3687
|
|
106
106
|
claude_mpm/cli/commands/mpm_init/__init__.py,sha256=o8cgMUfG-ZsZcXj9sphlc99mikAbtZc2GBVBeYCDowc,2513
|
|
107
|
-
claude_mpm/cli/commands/mpm_init/core.py,sha256=
|
|
107
|
+
claude_mpm/cli/commands/mpm_init/core.py,sha256=o2piSExsMOFrYgTi0BnNJUIpB6Jg2DLRXUtsNHbX5hY,29714
|
|
108
108
|
claude_mpm/cli/commands/mpm_init/display.py,sha256=sZiG0idXy5Rmj6YXnQOdLBtjKnhpy3woiF5pqWJxtPI,12218
|
|
109
109
|
claude_mpm/cli/commands/mpm_init/git_activity.py,sha256=TO5qiNB1-Ox48m6aJMNTP4n7Q1CNY9hHg4znZ_hyUFE,14225
|
|
110
110
|
claude_mpm/cli/commands/mpm_init/knowledge_extractor.py,sha256=P8cgyXmREosV9bVsCrvp1TFyN1rp6vDm1LsV42pn7BI,16520
|
|
@@ -347,7 +347,6 @@ claude_mpm/hooks/claude_hooks/__pycache__/auto_pause_handler.cpython-311.pyc,sha
|
|
|
347
347
|
claude_mpm/hooks/claude_hooks/__pycache__/correlation_manager.cpython-311.pyc,sha256=SQX5iiP9bQZkLL-cj_2tlGH7lpAzarO0mYal7btj3tc,3521
|
|
348
348
|
claude_mpm/hooks/claude_hooks/__pycache__/event_handlers.cpython-311.pyc,sha256=xS_cl5CFEHT4U_Za1vGhTTjKRayLvLoBvRfekvK-1gk,38986
|
|
349
349
|
claude_mpm/hooks/claude_hooks/__pycache__/hook_handler.cpython-311.pyc,sha256=pA793fTKMsdmyho-jURwvJjHXfIy8AnC0Tjw3x9toro,30559
|
|
350
|
-
claude_mpm/hooks/claude_hooks/__pycache__/installer.cpython-311.pyc,sha256=9mpAKY4gNcbU5VvZ5tGbf2UM0uIEWdreKSUvVr_BKcM,33917
|
|
351
350
|
claude_mpm/hooks/claude_hooks/__pycache__/memory_integration.cpython-311.pyc,sha256=YbwauQDKSGvXkT1972faalJLuxwyvq328DYQhkCnel0,10513
|
|
352
351
|
claude_mpm/hooks/claude_hooks/__pycache__/response_tracking.cpython-311.pyc,sha256=YV5iCKSXtrON611Rp3S8PQGPz0H3RIBO6K_n1BAfGWw,17523
|
|
353
352
|
claude_mpm/hooks/claude_hooks/__pycache__/tool_analysis.cpython-311.pyc,sha256=ZjcNfNY5Ht6FhalPeh7M7OzMffcey5iF4AVjDDg9kak,10694
|
|
@@ -358,7 +357,6 @@ claude_mpm/hooks/claude_hooks/services/duplicate_detector.py,sha256=Fh9LmEMsVmQM
|
|
|
358
357
|
claude_mpm/hooks/claude_hooks/services/state_manager.py,sha256=QB0JPJQThTVg0TGRO3Dc_3y3bac-hkulgMqqzo_71ng,11189
|
|
359
358
|
claude_mpm/hooks/claude_hooks/services/subagent_processor.py,sha256=nJw1ERCMxq23ioZ5DKwprmwO0fuvuqpdFHJ03XaMiDo,16052
|
|
360
359
|
claude_mpm/hooks/claude_hooks/services/__pycache__/__init__.cpython-311.pyc,sha256=xBfLBSqnpcKfcQBWfh7xUm454g1lq1LvbO7SxGvcOPc,644
|
|
361
|
-
claude_mpm/hooks/claude_hooks/services/__pycache__/connection_manager.cpython-311.pyc,sha256=Q40QpUbg9q_QHgv8kuYdQmRVjqcjewzYUC5BoaHinFo,10152
|
|
362
360
|
claude_mpm/hooks/claude_hooks/services/__pycache__/connection_manager_http.cpython-311.pyc,sha256=bvZ_QcuI0j125Ebv8RzeWUh1BkuRTUfufGi0NV7HjuY,12359
|
|
363
361
|
claude_mpm/hooks/claude_hooks/services/__pycache__/duplicate_detector.cpython-311.pyc,sha256=Yy_REAUhJCiFjOhxeDb4v0qyEvEbUtCmXD9PAz40dhw,5321
|
|
364
362
|
claude_mpm/hooks/claude_hooks/services/__pycache__/state_manager.cpython-311.pyc,sha256=TPkEc-Zi3oNS5dCXBpGbSZwg_8RQvzNzd4pVx9B3WeM,12364
|
|
@@ -397,7 +395,7 @@ claude_mpm/services/memory_hook_service.py,sha256=u0WyZB2oLm_cEungByPNv7SRa-wqyU
|
|
|
397
395
|
claude_mpm/services/monitor_build_service.py,sha256=8gWR9CaqgXdG6-OjOFXGpk28GCcJTlHhojkUYnMCebI,12160
|
|
398
396
|
claude_mpm/services/native_agent_converter.py,sha256=mG9uYZvjP-lAjlwyfE1aRdJc2vN5x-haMwSry0YqP0E,12247
|
|
399
397
|
claude_mpm/services/orphan_detection.py,sha256=cEFE96FhC6EJSa53rUjbgjDj_E1_Ej-0KoYDQST22t0,26339
|
|
400
|
-
claude_mpm/services/pm_skills_deployer.py,sha256
|
|
398
|
+
claude_mpm/services/pm_skills_deployer.py,sha256=-k8VkXLHxUmVRLDzAbYyVILvT_K34vNp38tZlhLZcgc,29411
|
|
401
399
|
claude_mpm/services/port_manager.py,sha256=tL5oymXrIRzpkGWLy3g2THhA4wy1U_uZ2VtDE6Bbwck,22840
|
|
402
400
|
claude_mpm/services/profile_manager.py,sha256=L8vuLpFwcHsFUUr8uZwgHBSbqIZPVcUk_hAPrlSWqZU,10991
|
|
403
401
|
claude_mpm/services/project_port_allocator.py,sha256=L_EPuX_vGdv8vWWRVTpRk7F-v7uimaRTlqZP7LtJk7A,19085
|
|
@@ -544,7 +542,7 @@ claude_mpm/services/cli/memory_output_formatter.py,sha256=iNXMSu-K24rkgVhJURS-B6
|
|
|
544
542
|
claude_mpm/services/cli/resume_service.py,sha256=ENlx5ynuw1bBuPX6XOinOizLqWGNAlSUOu--oV_hrRs,21758
|
|
545
543
|
claude_mpm/services/cli/session_manager.py,sha256=-zG0osFnDYyta9iPCwmL5Dxu6Z-4_LHylFfqQAnIEvY,20126
|
|
546
544
|
claude_mpm/services/cli/session_pause_manager.py,sha256=neCXcZC5b-OLkKNBHtr0PqE4VQg_n2S3PYzhuIt-6v0,17178
|
|
547
|
-
claude_mpm/services/cli/session_resume_helper.py,sha256=
|
|
545
|
+
claude_mpm/services/cli/session_resume_helper.py,sha256=CwQ5EtDH8p2OREkOpPl4FuS1nzBMBSsxFus_7KgXDtA,13747
|
|
548
546
|
claude_mpm/services/cli/startup_checker.py,sha256=MmztJ7yAnk5O5shArGDzRzwBDmx1WikhtE5s9P4IU9M,12251
|
|
549
547
|
claude_mpm/services/cli/unified_dashboard_manager.py,sha256=wX3PLys0XKZncUwMysvYDfzMzNFjkhCdu62hi2qZUF0,15608
|
|
550
548
|
claude_mpm/services/communication/__init__.py,sha256=b4qc7_Rqy4DE9q7BAUlfUZjoYG4uimAyUnE0irPcXyU,560
|
|
@@ -731,7 +729,7 @@ claude_mpm/services/socketio/handlers/connection.py,sha256=aPRc57uiq8g-rUhtpWPvD
|
|
|
731
729
|
claude_mpm/services/socketio/handlers/connection_handler.py,sha256=D8Qfn7FneIIlH0TWMVisB_frCokJVWTzxl8O6IBxjYM,13486
|
|
732
730
|
claude_mpm/services/socketio/handlers/file.py,sha256=y80AZK0Ey_lj8sTO7-685R5SGCJBbIBbS38TnsPRZ7M,9897
|
|
733
731
|
claude_mpm/services/socketio/handlers/git.py,sha256=49PTfsk9Rpy-z4-hSawmFYUrB9N3CvT71EpmzQv1JWQ,37919
|
|
734
|
-
claude_mpm/services/socketio/handlers/hook.py,sha256=
|
|
732
|
+
claude_mpm/services/socketio/handlers/hook.py,sha256=Fn0GLCeI7-McQrXU4-f08UhXqQeITl4ugwHPUrPNObc,8781
|
|
735
733
|
claude_mpm/services/socketio/handlers/memory.py,sha256=Ape6cCMe3uOgMiXRbgQttvgHUABsFXrrxQ9OI-mGM8M,971
|
|
736
734
|
claude_mpm/services/socketio/handlers/project.py,sha256=yYqWlPfPanA7zH7dgQnP3EpO6fqvvicBFeut5I5K1HI,776
|
|
737
735
|
claude_mpm/services/socketio/handlers/registry.py,sha256=Bqsb8-1RSx2qIG94gsfpmQHtwntLGp4QJsrvJK2ezlY,8185
|
|
@@ -740,7 +738,7 @@ claude_mpm/services/socketio/server/broadcaster.py,sha256=KufM0ziJl8524bDr_j9oed
|
|
|
740
738
|
claude_mpm/services/socketio/server/connection_manager.py,sha256=3-Q2v3iAzsHX7ke9_cQVvwlPa3dDQTWtklW_Qicn_aY,21256
|
|
741
739
|
claude_mpm/services/socketio/server/core.py,sha256=XsxTYPgXz6F8Iyaiq-yav7nW8y_Y-Zjz_pnx4zco4Ng,44899
|
|
742
740
|
claude_mpm/services/socketio/server/eventbus_integration.py,sha256=AxOrGmUnQLlB5O7PjvbUw5BNf2hr7a_018JobRbMs2M,8049
|
|
743
|
-
claude_mpm/services/socketio/server/main.py,sha256=
|
|
741
|
+
claude_mpm/services/socketio/server/main.py,sha256=S5vC1541Z4pMH3VKQ6xPHOQHNQb3gvD1sS0ChpiNRDw,20146
|
|
744
742
|
claude_mpm/services/ticket_services/__init__.py,sha256=I01W25n-tBWwZ0TD-dPA63nqzCU2KnpOvbqeysmaa2E,798
|
|
745
743
|
claude_mpm/services/ticket_services/crud_service.py,sha256=4Ab1HONY219QSdRaLTgRInm6DNJXIUKiihyAree8y8A,11193
|
|
746
744
|
claude_mpm/services/ticket_services/formatter_service.py,sha256=luSJhyq-4-X7EAIQbXUZcOz7cN4rp_JLeXd8Py06uII,9104
|
|
@@ -784,7 +782,7 @@ claude_mpm/services/visualization/mermaid_generator.py,sha256=GIThvzs6BSH2oqtaT4
|
|
|
784
782
|
claude_mpm/skills/__init__.py,sha256=KiQt5Ly2s1B6PN4J-xJ7b2tCBe8OsoFgEAfmJ23u3ng,1247
|
|
785
783
|
claude_mpm/skills/agent_skills_injector.py,sha256=djkKgm2LzaCVFoxv3XEyNr1NvtZu5Tabm-3Xvrf9e0Q,11839
|
|
786
784
|
claude_mpm/skills/registry.py,sha256=P4CsN7FylbxIrxuMD8LKVjOv6SLrMJunwvDHPvYqS7U,10233
|
|
787
|
-
claude_mpm/skills/skill_manager.py,sha256=
|
|
785
|
+
claude_mpm/skills/skill_manager.py,sha256=5GwT-2BZWWg65hxA5Z7mL4JCBzVQBh7jswNYTtXjOF4,13979
|
|
788
786
|
claude_mpm/skills/skills_registry.py,sha256=Y06hde9S8PyrfiGYgscXK66qX5b0LGtoWJwnGMfKd4U,12331
|
|
789
787
|
claude_mpm/skills/skills_service.py,sha256=s_2eU-1zjDC7b4vsBSEupAtvWOqRON0BLl9Q-RtV6Ag,26530
|
|
790
788
|
claude_mpm/skills/bundled/LICENSE_ATTRIBUTIONS.md,sha256=TPBpOXIvpwlRL1Q_k4yJJFbnpfJjwV_sqji56Aio8PM,3222
|
|
@@ -884,13 +882,17 @@ claude_mpm/skills/bundled/php/espocrm-development/references/development-workflo
|
|
|
884
882
|
claude_mpm/skills/bundled/php/espocrm-development/references/frontend-customization.md,sha256=0h1VohuIr-El_Rj9wWWPluRynQqi2B8i0-xTaPdkGBY,17519
|
|
885
883
|
claude_mpm/skills/bundled/php/espocrm-development/references/hooks-and-services.md,sha256=2KwnVcf5s1TCAo1GMdbLitJMVbi7cdYfDK_M5C4oBtI,20820
|
|
886
884
|
claude_mpm/skills/bundled/php/espocrm-development/references/testing-debugging.md,sha256=9TVZk_ZTez65kzx2R8nG-8fn9V_pIT5oTLsFQdPk2zQ,18250
|
|
887
|
-
claude_mpm/skills/bundled/pm/
|
|
888
|
-
claude_mpm/skills/bundled/pm/
|
|
889
|
-
claude_mpm/skills/bundled/pm/
|
|
890
|
-
claude_mpm/skills/bundled/pm/
|
|
891
|
-
claude_mpm/skills/bundled/pm/
|
|
892
|
-
claude_mpm/skills/bundled/pm/
|
|
893
|
-
claude_mpm/skills/bundled/pm/
|
|
885
|
+
claude_mpm/skills/bundled/pm/mpm-agent-update-workflow/SKILL.md,sha256=Y-0wxWgiAaDShQkoqJd9p_4WL-tiwOvLqKPcDsQY67A,2231
|
|
886
|
+
claude_mpm/skills/bundled/pm/mpm-bug-reporting/SKILL.md,sha256=mDjGQd9ALSZ0jsuWyXSVT6_GxTudzAVTkasqwnf4zJE,6494
|
|
887
|
+
claude_mpm/skills/bundled/pm/mpm-circuit-breaker-enforcement/SKILL.md,sha256=G8HQH00z_JiIqgL5B5k7RAxRLN7cf8bFK8RkiekYU20,17791
|
|
888
|
+
claude_mpm/skills/bundled/pm/mpm-delegation-patterns/SKILL.md,sha256=kdFyy5T_70vw5XpGexlXr18VdQWIFD59A8pLmmcWiVA,5388
|
|
889
|
+
claude_mpm/skills/bundled/pm/mpm-git-file-tracking/SKILL.md,sha256=bnmO9Wzoe0AYJ72yKBO_FqtxsfjIkYhUHlosPRrYgTM,3607
|
|
890
|
+
claude_mpm/skills/bundled/pm/mpm-pr-workflow/SKILL.md,sha256=HSeVxw_znHqiPA95gpHnPKavNkSgSLTKuVaHqV976Ao,3369
|
|
891
|
+
claude_mpm/skills/bundled/pm/mpm-session-management/SKILL.md,sha256=GcGbCPoVs-N4MHZIoLf7q3EK1Noy4DLoCGvs3dVfZq4,8341
|
|
892
|
+
claude_mpm/skills/bundled/pm/mpm-teaching-mode/SKILL.md,sha256=SRhxpc6EyiO-hH5pQ7FcxNDUaaj5pfTEV9FwkjxfCA4,17761
|
|
893
|
+
claude_mpm/skills/bundled/pm/mpm-ticketing-integration/SKILL.md,sha256=bPQZuMztenS5jEHidliwzYULAmH-L72iA4_sH28O1WU,4458
|
|
894
|
+
claude_mpm/skills/bundled/pm/mpm-tool-usage-guide/SKILL.md,sha256=w6m_E-0rkI_vpKRPVQPQDXpSSP5kv_1duq8Mohjd6os,14014
|
|
895
|
+
claude_mpm/skills/bundled/pm/mpm-verification-protocols/SKILL.md,sha256=ROTcT_tpXzHIli-1BT0FSGzMycU7c7GVif4eE98lr2A,6620
|
|
894
896
|
claude_mpm/skills/bundled/react/flexlayout-react.md,sha256=uJF_kNuqerR5PXTAcO7H6WwAsI16IdSy5R8iIgGzRec,18327
|
|
895
897
|
claude_mpm/skills/bundled/rust/desktop-applications/SKILL.md,sha256=vaOgYEeW8m2HY5q0NOHYVTcfdmNUGvMdqowfwQd7PyM,10441
|
|
896
898
|
claude_mpm/skills/bundled/rust/desktop-applications/references/architecture-patterns.md,sha256=ec_1mqn120NOhh2R5gjS8m7SQwSr7q8AlZN0pEr3sUc,22009
|
|
@@ -991,10 +993,10 @@ claude_mpm/utils/subprocess_utils.py,sha256=D0izRT8anjiUb_JG72zlJR_JAw1cDkb7kalN
|
|
|
991
993
|
claude_mpm/validation/__init__.py,sha256=YZhwE3mhit-lslvRLuwfX82xJ_k4haZeKmh4IWaVwtk,156
|
|
992
994
|
claude_mpm/validation/agent_validator.py,sha256=GprtAvu80VyMXcKGsK_VhYiXWA6BjKHv7O6HKx0AB9w,20917
|
|
993
995
|
claude_mpm/validation/frontmatter_validator.py,sha256=YpJlYNNYcV8u6hIOi3_jaRsDnzhbcQpjCBE6eyBKaFY,7076
|
|
994
|
-
claude_mpm-5.4.
|
|
995
|
-
claude_mpm-5.4.
|
|
996
|
-
claude_mpm-5.4.
|
|
997
|
-
claude_mpm-5.4.
|
|
998
|
-
claude_mpm-5.4.
|
|
999
|
-
claude_mpm-5.4.
|
|
1000
|
-
claude_mpm-5.4.
|
|
996
|
+
claude_mpm-5.4.90.dist-info/licenses/LICENSE,sha256=ca3y_Rk4aPrbF6f62z8Ht5MJM9OAvbGlHvEDcj9vUQ4,3867
|
|
997
|
+
claude_mpm-5.4.90.dist-info/licenses/LICENSE-FAQ.md,sha256=TxfEkXVCK98RzDOer09puc7JVCP_q_bN4dHtZKHCMcM,5104
|
|
998
|
+
claude_mpm-5.4.90.dist-info/METADATA,sha256=k2-qodY858TX6F1IukwiFKe2Mzzoc0sS6HChyU35Fs4,14185
|
|
999
|
+
claude_mpm-5.4.90.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
1000
|
+
claude_mpm-5.4.90.dist-info/entry_points.txt,sha256=n-Uk4vwHPpuvu-g_I7-GHORzTnN_m6iyOsoLveKKD0E,228
|
|
1001
|
+
claude_mpm-5.4.90.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
|
|
1002
|
+
claude_mpm-5.4.90.dist-info/RECORD,,
|
|
Binary file
|