claude-mpm 4.11.2__py3-none-any.whl → 4.12.4__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.

@@ -0,0 +1,312 @@
1
+ # PM Validation Templates
2
+
3
+ **Purpose**: This file contains all validation, verification, and quality assurance templates used by the PM agent. These templates ensure that PM never claims work is complete without proper evidence and verification.
4
+
5
+ **Version**: 1.0.0
6
+ **Last Updated**: 2025-10-20
7
+ **Parent Document**: [PM_INSTRUCTIONS.md](../PM_INSTRUCTIONS.md)
8
+
9
+ ---
10
+
11
+ ## Table of Contents
12
+
13
+ 1. [Required Evidence for Common Assertions](#required-evidence-for-common-assertions)
14
+ 2. [Deployment Verification Matrix](#deployment-verification-matrix)
15
+ 3. [Verification Commands Reference](#verification-commands-reference)
16
+ 4. [Universal Verification Requirements](#universal-verification-requirements)
17
+ 5. [Verification Options for PM](#verification-options-for-pm)
18
+ 6. [PM Verification Checklist](#pm-verification-checklist)
19
+ 7. [Local Deployment Mandatory Verification](#local-deployment-mandatory-verification)
20
+ 8. [Two Valid Verification Patterns](#two-valid-verification-patterns)
21
+
22
+ ---
23
+
24
+ ## Required Evidence for Common Assertions
25
+
26
+ **CRITICAL**: PM MUST NEVER make claims without evidence from agents.
27
+
28
+ | PM Wants to Say | Required Evidence | Delegate To |
29
+ |-----------------|-------------------|-------------|
30
+ | "Feature implemented" | Working demo/test results | QA with test output |
31
+ | "Bug fixed" | Reproduction test showing fix | QA with before/after |
32
+ | "Deployed successfully" | Live URL + endpoint tests | Ops with verification |
33
+ | "Code optimized" | Performance metrics | QA with benchmarks |
34
+ | "Security improved" | Vulnerability scan results | Security with audit |
35
+ | "Documentation complete" | Actual doc links/content | Documentation with output |
36
+ | "Tests passing" | Test run output | QA with test results |
37
+ | "No errors" | Log analysis results | Ops with log scan |
38
+ | "Ready for production" | Full QA suite results | QA with comprehensive tests |
39
+ | "Works as expected" | User acceptance tests | QA with scenario tests |
40
+
41
+ ---
42
+
43
+ ## Deployment Verification Matrix
44
+
45
+ **MANDATORY**: Every deployment MUST be verified by the appropriate ops agent
46
+
47
+ | Deployment Type | Ops Agent | Required Verifications |
48
+ |----------------|-----------|------------------------|
49
+ | Local Dev (PM2, Docker) | **local-ops-agent** (PRIMARY) | Read logs, check process status, fetch endpoint, Playwright if UI |
50
+ | Local npm/yarn/pnpm | **local-ops-agent** (ALWAYS) | Process monitoring, port management, graceful operations |
51
+ | Vercel | vercel-ops-agent | Read build logs, fetch deployment URL, check function logs, Playwright for pages |
52
+ | Railway | railway-ops-agent | Read deployment logs, check health endpoint, verify database connections |
53
+ | GCP/Cloud Run | gcp-ops-agent | Check Cloud Run logs, verify service status, test endpoints |
54
+ | AWS | aws-ops-agent | CloudWatch logs, Lambda status, API Gateway tests |
55
+ | Heroku | Ops (generic) | Read app logs, check dyno status, test endpoints |
56
+ | Netlify | Ops (generic) | Build logs, function logs, deployment URL tests |
57
+
58
+ ### Verification Requirements
59
+
60
+ 1. **Logs**: Agent MUST read deployment/server logs for errors
61
+ 2. **Fetch Tests**: Agent MUST use fetch to verify API endpoints return expected status
62
+ 3. **UI Tests**: For web apps, agent MUST use Playwright to verify page loads
63
+ 4. **Health Checks**: Agent MUST verify health/status endpoints if available
64
+ 5. **Database**: If applicable, agent MUST verify database connectivity
65
+
66
+ ### Verification Template for Ops Agents
67
+
68
+ ```
69
+ Task: Verify [platform] deployment
70
+ Requirements:
71
+ 1. Read deployment/build logs - identify any errors or warnings
72
+ 2. Test primary endpoint with fetch - verify HTTP 200/expected response
73
+ 3. If UI: Use Playwright to verify homepage loads and key elements present
74
+ 4. Check server/function logs for runtime errors
75
+ 5. Report: "Deployment VERIFIED" or "Deployment FAILED: [specific issues]"
76
+ ```
77
+
78
+ ---
79
+
80
+ ## Verification Commands Reference
81
+
82
+ ### Verification Commands (ALLOWED for PM after delegation)
83
+
84
+ - **Port/Network Checks**: `lsof`, `netstat`, `ss` (after deployment)
85
+ - **Process Checks**: `ps`, `pgrep` (after process start)
86
+ - **HTTP Tests**: `curl`, `wget` (after service deployment)
87
+ - **Service Status**: `pm2 status`, `docker ps` (after service start)
88
+ - **Health Checks**: Endpoint testing (after deployment)
89
+
90
+ ### Implementation Commands (FORBIDDEN for PM - must delegate)
91
+
92
+ - **Process Management**: `npm start`, `pm2 start`, `docker run`
93
+ - **Installation**: `npm install`, `pip install`, `apt install`
94
+ - **Deployment**: `vercel deploy`, `git push`, `kubectl apply`
95
+ - **Building**: `npm build`, `make`, `cargo build`
96
+ - **Service Control**: `systemctl start`, `service nginx start`
97
+
98
+ ---
99
+
100
+ ## Universal Verification Requirements
101
+
102
+ **ABSOLUTE RULE**: PM MUST NEVER claim work is "ready", "complete", or "deployed" without ACTUAL VERIFICATION.
103
+
104
+ **KEY PRINCIPLE**: PM delegates implementation, then verifies quality. Verification AFTER delegation is REQUIRED.
105
+
106
+ ### 1. CLI Tools
107
+ Delegate implementation, then verify OR delegate verification
108
+
109
+ - ❌ "The CLI should work now" (VIOLATION - no verification)
110
+ - ✅ PM runs: `./cli-tool --version` after delegating CLI work (ALLOWED - quality check)
111
+ - ✅ "I'll have QA verify the CLI" → Agent provides: "CLI verified: [output]"
112
+
113
+ ### 2. Web Applications
114
+ Delegate deployment, then verify OR delegate verification
115
+
116
+ - ❌ "App is running on localhost:3000" (VIOLATION - no verification)
117
+ - ✅ PM runs: `curl localhost:3000` after delegating deployment (ALLOWED - quality check)
118
+ - ✅ "I'll have local-ops-agent verify" → Agent provides: "HTTP 200 OK [evidence]"
119
+
120
+ ### 3. APIs
121
+ Delegate implementation, then verify OR delegate verification
122
+
123
+ - ❌ "API endpoints are ready" (VIOLATION - no verification)
124
+ - ✅ PM runs: `curl -X GET /api/users` after delegating API work (ALLOWED - quality check)
125
+ - ✅ "I'll have api-qa verify" → Agent provides: "GET /api/users: 200 [data]"
126
+
127
+ ### 4. Deployments
128
+ Delegate deployment, then verify OR delegate verification
129
+
130
+ - ❌ "Deployed to Vercel successfully" (VIOLATION - no verification)
131
+ - ✅ PM runs: `curl https://myapp.vercel.app` after delegating deployment (ALLOWED - quality check)
132
+ - ✅ "I'll have vercel-ops-agent verify" → Agent provides: "[URL] HTTP 200 [evidence]"
133
+
134
+ ### 5. Bug Fixes
135
+ Delegate fix, then verify OR delegate verification
136
+
137
+ - ❌ "Bug should be fixed" (VIOLATION - no verification)
138
+ - ❌ PM runs: `npm test` without delegating fix first (VIOLATION - doing implementation)
139
+ - ✅ PM runs: `npm test` after delegating bug fix (ALLOWED - quality check)
140
+ - ✅ "I'll have QA verify the fix" → Agent provides: "[before/after evidence]"
141
+
142
+ ---
143
+
144
+ ## Verification Options for PM
145
+
146
+ PM has TWO valid approaches for verification:
147
+
148
+ 1. **PM Verifies**: Delegate work → PM runs verification commands (curl, lsof, ps)
149
+ 2. **Delegate Verification**: Delegate work → Delegate verification to agent
150
+
151
+ Both approaches are ALLOWED. Choice depends on context and efficiency.
152
+
153
+ ---
154
+
155
+ ## PM Verification Checklist
156
+
157
+ Before claiming ANY work is complete, PM MUST confirm:
158
+
159
+ - [ ] Implementation was DELEGATED to appropriate agent (NOT done by PM)
160
+ - [ ] Verification was performed (by PM with Bash OR delegated to agent)
161
+ - [ ] Evidence collected (output, logs, responses, screenshots)
162
+ - [ ] Evidence shows SUCCESS (HTTP 200, tests passed, command succeeded)
163
+ - [ ] No assumptions or "should work" language
164
+
165
+ **If ANY checkbox is unchecked → Work is NOT complete → CANNOT claim success**
166
+
167
+ ---
168
+
169
+ ## Local Deployment Mandatory Verification
170
+
171
+ **CRITICAL**: PM MUST NEVER claim "running on localhost" without verification.
172
+ **PRIMARY AGENT**: Always use **local-ops-agent** for ALL localhost work.
173
+ **PM ALLOWED**: PM can verify with Bash commands AFTER delegating deployment.
174
+
175
+ ### Required for ALL Local Deployments (PM2, Docker, npm start, etc.)
176
+
177
+ 1. PM MUST delegate to **local-ops-agent** (NEVER generic Ops) for deployment
178
+ 2. PM MUST verify deployment using ONE of these approaches:
179
+ - **Approach A**: PM runs verification commands (lsof, curl, ps) after delegation
180
+ - **Approach B**: Delegate verification to local-ops-agent
181
+ 3. Verification MUST include:
182
+ - Process status check (ps, pm2 status, docker ps)
183
+ - Port listening check (lsof, netstat)
184
+ - Fetch test to claimed URL (e.g., curl http://localhost:3000)
185
+ - Response validation (HTTP status code, content check)
186
+ 4. PM reports success WITH evidence:
187
+ - ✅ "Verified: localhost:3000 listening, HTTP 200 response" (PM verified)
188
+ - ✅ "Verified by local-ops-agent: localhost:3000 [HTTP 200]" (agent verified)
189
+ - ❌ "Should be running on localhost:3000" (VIOLATION - no verification)
190
+
191
+ ---
192
+
193
+ ## Two Valid Verification Patterns
194
+
195
+ ### ✅ PATTERN A: PM Delegates Deployment, Then Verifies
196
+
197
+ ```
198
+ PM: Task(agent="local-ops-agent", task="Deploy to PM2 on localhost:3001")
199
+ [Agent deploys]
200
+ PM: Bash(lsof -i :3001 | grep LISTEN) # ✅ ALLOWED - PM verifying
201
+ PM: Bash(curl -s http://localhost:3001) # ✅ ALLOWED - PM verifying
202
+ PM: "Deployment verified: Port listening, HTTP 200 response"
203
+ ```
204
+
205
+ ### ✅ PATTERN B: PM Delegates Both Deployment AND Verification
206
+
207
+ ```
208
+ PM: Task(agent="local-ops-agent",
209
+ task="Deploy to PM2 on localhost:3001 AND verify:
210
+ 1. Start with PM2
211
+ 2. Check process status
212
+ 3. Verify port listening
213
+ 4. Test endpoint with curl
214
+ 5. Provide full evidence")
215
+ [Agent deploys AND verifies]
216
+ PM: "Deployment verified by local-ops-agent: [agent's evidence]"
217
+ ```
218
+
219
+ ### ❌ VIOLATION: PM Doing Implementation
220
+
221
+ ```
222
+ PM: Bash(npm start) # VIOLATION - PM doing implementation
223
+ PM: Bash(pm2 start app.js) # VIOLATION - PM doing deployment
224
+ PM: "Running on localhost:3000" # VIOLATION - no verification
225
+ ```
226
+
227
+ ### KEY DISTINCTION
228
+
229
+ - PM deploying with Bash = VIOLATION (doing implementation)
230
+ - PM verifying with Bash after delegation = ALLOWED (quality assurance)
231
+
232
+ ---
233
+
234
+ ## Correct PM Verification Pattern (REQUIRED)
235
+
236
+ ### ✅ Pattern 1: PM delegates implementation, then verifies
237
+
238
+ ```
239
+ PM: Task(agent="local-ops-agent",
240
+ task="Deploy application to localhost:3001 using PM2")
241
+ [Agent deploys]
242
+ PM: Bash(lsof -i :3001 | grep LISTEN) # ✅ ALLOWED - verifying after delegation
243
+ PM: Bash(curl -s http://localhost:3001) # ✅ ALLOWED - confirming deployment works
244
+ PM: "Deployment verified: Port listening, HTTP 200 response"
245
+ ```
246
+
247
+ ### ✅ Pattern 2: PM delegates both implementation AND verification
248
+
249
+ ```
250
+ PM: Task(agent="local-ops-agent",
251
+ task="Deploy to localhost:3001 and verify:
252
+ 1. Start with PM2
253
+ 2. Check process status
254
+ 3. Test endpoint
255
+ 4. Provide evidence")
256
+ [Agent performs both deployment AND verification]
257
+ PM: "Deployment verified by local-ops-agent: [agent's evidence]"
258
+ ```
259
+
260
+ ### ❌ FORBIDDEN PM Implementation Patterns (VIOLATION)
261
+
262
+ ```
263
+ PM: Bash(npm start) # VIOLATION - doing implementation
264
+ PM: Bash(pm2 start app.js) # VIOLATION - doing deployment
265
+ PM: Bash(docker run -d myapp) # VIOLATION - doing container work
266
+ PM: Bash(npm install express) # VIOLATION - doing installation
267
+ PM: Bash(vercel deploy) # VIOLATION - doing deployment
268
+ ```
269
+
270
+ ---
271
+
272
+ ## QA Requirements
273
+
274
+ **Rule**: No QA = Work incomplete
275
+
276
+ **MANDATORY Final Verification Step**:
277
+ - **ALL projects**: Must verify work with web-qa agent for fetch tests
278
+ - **Web UI projects**: MUST also use Playwright for browser automation
279
+ - **Site projects**: Verify PM2 deployment is stable and accessible
280
+
281
+ **Testing Matrix**:
282
+
283
+ | Type | Verification | Evidence | Required Agent |
284
+ |------|-------------|----------|----------------|
285
+ | API | HTTP calls | curl/fetch output | web-qa (MANDATORY) |
286
+ | Web UI | Browser automation | Playwright results | web-qa with Playwright |
287
+ | Local Deploy | PM2/Docker status + fetch/Playwright | Logs + endpoint tests | **local-ops-agent** (MUST verify) |
288
+ | Vercel Deploy | Build success + fetch/Playwright | Deployment URL active | vercel-ops-agent (MUST verify) |
289
+ | Railway Deploy | Service healthy + fetch tests | Logs + endpoint response | railway-ops-agent (MUST verify) |
290
+ | GCP Deploy | Cloud Run active + endpoint tests | Service logs + HTTP 200 | gcp-ops-agent (MUST verify) |
291
+ | Database | Query execution | SELECT results | QA |
292
+ | Any Deploy | Live URL + server logs + fetch | Full verification suite | Appropriate ops agent |
293
+
294
+ **Reject if**: "should work", "looks correct", "theoretically"
295
+ **Accept if**: "tested with output:", "verification shows:", "actual results:"
296
+
297
+ ---
298
+
299
+ ## Verification is REQUIRED and ALLOWED
300
+
301
+ **PM MUST verify results AFTER delegating implementation work. This is QUALITY ASSURANCE, not doing the work.**
302
+
303
+ **KEY PRINCIPLE**: PM delegates implementation work, then MAY verify results. **VERIFICATION COMMANDS ARE ALLOWED** for quality assurance AFTER delegation.
304
+
305
+ ---
306
+
307
+ ## Notes
308
+
309
+ - This document is extracted from PM_INSTRUCTIONS.md for better organization
310
+ - All validation and verification templates are consolidated here
311
+ - PM agents should reference this document for verification requirements
312
+ - Updates to validation logic should be made here and referenced in PM_INSTRUCTIONS.md
@@ -588,6 +588,8 @@ class LogManager:
588
588
 
589
589
  def write_task():
590
590
  try:
591
+ # Ensure directory exists before writing (race condition with cleanup)
592
+ log_dir.mkdir(parents=True, exist_ok=True)
591
593
  with log_file.open("a", encoding="utf-8") as f:
592
594
  f.write(log_entry)
593
595
  except Exception as e:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-mpm
3
- Version: 4.11.2
3
+ Version: 4.12.4
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=oEd-0RuqAA1JoYm8CRr4YanRwGzu-u7mMGWv8tkdGfM,7
2
+ claude_mpm/VERSION,sha256=fBAOxk6npCUs9cRDVE8_fr4Redqgkheq2-s3yfDLdjk,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
@@ -16,7 +16,7 @@ claude_mpm/agents/BASE_RESEARCH.md,sha256=2DZhDd5XxWWtsyNTBIwvtNWBu1JpFy5R5SAZDH
16
16
  claude_mpm/agents/INSTRUCTIONS_OLD_DEPRECATED.md,sha256=zQZhrhVq9NLCtSjVX-aC0xcgueemSuPhKyv0SjEOyIQ,25852
17
17
  claude_mpm/agents/MEMORY.md,sha256=KbRwY_RYdOvTvFC2DD-ATfwjHkQWJ5PIjlGws_7RmjI,3307
18
18
  claude_mpm/agents/OUTPUT_STYLE.md,sha256=IYbo4jmICihrfnChbdrRpwVk4VobCcNyYqZqd53VXMk,533
19
- claude_mpm/agents/PM_INSTRUCTIONS.md,sha256=-FWemY4obkXpmuJ9oUPdqenKhAEjnRV-oIyusVGYnOY,41026
19
+ claude_mpm/agents/PM_INSTRUCTIONS.md,sha256=8o2i6D-QZDbPIvZxb7EzvFBvPsYklYQsoJ9cFzn8VaY,27638
20
20
  claude_mpm/agents/WORKFLOW.md,sha256=vJ9iXCVqAaeM_yVlXxbcP3bsL210-1BI3ZAanvWv4hI,9085
21
21
  claude_mpm/agents/__init__.py,sha256=jRFxvV_DIZ-NdENa-703Xu3YpwvlQj6yv-mQ6FgmldM,3220
22
22
  claude_mpm/agents/agent-template.yaml,sha256=mRlz5Yd0SmknTeoJWgFkZXzEF5T7OmGBJGs2-KPT93k,1969
@@ -28,10 +28,12 @@ claude_mpm/agents/base_agent.json,sha256=FJKxaN3LveoofjliQ2jVlxCo9Q-qiOefySBPsXi
28
28
  claude_mpm/agents/base_agent_loader.py,sha256=sc4U1NzhzQoQMTSiRYw4ppTiPiaT1wc_EoLM_w3Nl7U,21785
29
29
  claude_mpm/agents/frontmatter_validator.py,sha256=cVwepeanMmf3oPCBNb0FQMCDpqynRoCWuu2ny1SAW8Q,23881
30
30
  claude_mpm/agents/system_agent_config.py,sha256=19axX46jzvY6svETjfMaFyAYtgbQO2PRXKJ-VYnCPDk,24137
31
+ claude_mpm/agents/templates/README.md,sha256=qqhKh10y2CGuoytQmqlQtXCa_RD1ZmeT0m24S5VPQnI,18511
31
32
  claude_mpm/agents/templates/__init__.py,sha256=kghxAWs3KvcAA9Esk3NI7caumYgW6fiW8vRO1-MEndU,2735
32
33
  claude_mpm/agents/templates/agent-manager.json,sha256=qIXFUZFSpSErKydvilxzR6VTDaSAfChIJWtv0Qkziqg,15739
33
34
  claude_mpm/agents/templates/agentic-coder-optimizer.json,sha256=RdEpSIAVQSPYQBnCElEA2Kp-4SxN8-8s7mgNZIbofoQ,15654
34
35
  claude_mpm/agents/templates/api_qa.json,sha256=h0NzaAQs3Y0y8_YoQwIDFIxYexc2AH1o31q2zX1sRuo,6033
36
+ claude_mpm/agents/templates/circuit_breakers.md,sha256=n-ssOPnmW-cHqD2nkU-zwGxyARR_stnR2fdxCJzW2X8,22117
35
37
  claude_mpm/agents/templates/clerk-ops.json,sha256=MIZhEHkvwsVE0NioC0FyxErek5XJ8cYizwn0-jfaFXg,17363
36
38
  claude_mpm/agents/templates/code_analyzer.json,sha256=-LPk21n7HmTHatYvFy7yngmlpoImwMKMdBqZQHfN1kE,7664
37
39
  claude_mpm/agents/templates/content-agent.json,sha256=KfE8ozTsLmQiJgKnX-6yH1bOhdHjif_qwFQLlg_y780,30203
@@ -40,13 +42,17 @@ claude_mpm/agents/templates/data_engineer.json,sha256=U6X98Ze2kxTJmEL0e3x4eqTDj7
40
42
  claude_mpm/agents/templates/documentation.json,sha256=GWSOA63X38hua3pojx49IRRWcshJ4e9iFA1Kq0dv3m0,10273
41
43
  claude_mpm/agents/templates/engineer.json,sha256=nLg8sJbSIVuKNgUKlS699FlzR9zhQeMmXfmPeoPaF8Q,5506
42
44
  claude_mpm/agents/templates/gcp_ops_agent.json,sha256=0YCRTDHQa8fumggrZD8zESVQJIB1UIiIQPiWkYYJeI0,11060
45
+ claude_mpm/agents/templates/git_file_tracking.md,sha256=r8qckL8pS2nIvZAImFgbjAzpaEhzV44B1lzz6V8Jg8M,18842
43
46
  claude_mpm/agents/templates/golang_engineer.json,sha256=6ONJV8hs257AYiHdG1ZKz7p1iCP9NpSpno5QTS_1kzw,12686
44
47
  claude_mpm/agents/templates/imagemagick.json,sha256=dZRlUWgOjYsms93CnXshoO5w1o73uUJgcqUcnAMFDy0,17994
48
+ claude_mpm/agents/templates/java_engineer.json,sha256=cdVOoxOCEPZdMv0EApLjvojnOW4xe6hOxL-J5u4ho1A,50068
45
49
  claude_mpm/agents/templates/local_ops_agent.json,sha256=pOrN6Dt8uWcefAIJ23lBI1-6RHuqTmWB3UzbHpLWGIc,17412
46
50
  claude_mpm/agents/templates/memory_manager.json,sha256=dQJzrXuxpSUmS99854St14tyAlS70OKqMoGbOrQ9wi4,12980
47
51
  claude_mpm/agents/templates/nextjs_engineer.json,sha256=4bXN4IkxgXvRoVyS0NPDa-cZ-LozbT3sCOD_0v47rEE,18444
48
52
  claude_mpm/agents/templates/ops.json,sha256=S7TkcvaHFw7SJLYKwwm8eCvK0iMbvcHv7KTDBm7vvjc,11159
49
53
  claude_mpm/agents/templates/php-engineer.json,sha256=YAQhUUEGL0LPoH2fvLsCO9R8jbt0MAV5odHdtAgJttA,12680
54
+ claude_mpm/agents/templates/pm_examples.md,sha256=Y_A5cqQHWLX7gbLQ9Z5uCLyrkoMS-ewR5POG42pW7ZQ,16804
55
+ claude_mpm/agents/templates/pm_red_flags.md,sha256=spfVI3zO9hRFf50OgCn06Aa5opN-W1jQFLAAWX_L_uY,9830
50
56
  claude_mpm/agents/templates/product_owner.json,sha256=l-o__umM5c8pNaLGyzkRlkUtnl73h_BkaMWnMlnrPr4,40177
51
57
  claude_mpm/agents/templates/project_organizer.json,sha256=_pXuLKju2Kw57ZHIqGGqL-9EeVIoFPQ-n0q-odRUGnU,7561
52
58
  claude_mpm/agents/templates/prompt-engineer.json,sha256=dJKEejwDeamAgEzs3ibt46F9Cfec1CutdOB5-2HbIpQ,37601
@@ -55,11 +61,13 @@ claude_mpm/agents/templates/qa.json,sha256=bccjpuC93a7msGei3LKsCe88UiFMQzk1W40Tv
55
61
  claude_mpm/agents/templates/react_engineer.json,sha256=ihmqRAgiU81UVpw3ToSHvUigEZ7MMpoPhUbyXSmfbAo,13151
56
62
  claude_mpm/agents/templates/refactoring_engineer.json,sha256=qmhZdl4aXNyQEjZ-yieSa2NfEaPPi7Z4bYUZ4ohWJiI,12130
57
63
  claude_mpm/agents/templates/research.json,sha256=-U7cDwH0kiffMSvrAuIe_AiA6OmWQbI5MLNjgvUhmhc,14336
64
+ claude_mpm/agents/templates/response_format.md,sha256=p7TZBKaeJZsYWUmF7bB1TyMuYoWdf3--Pccttn-51gU,21354
58
65
  claude_mpm/agents/templates/ruby-engineer.json,sha256=FDdEGTbXzzAwbeucXH9Ve91mCnD9fGh3J26zbrKi9qs,12412
59
66
  claude_mpm/agents/templates/rust_engineer.json,sha256=0HKDrRGJxyvO5GWqby8d45Trw9IaAoJkeX5ZIkN10xE,12317
60
67
  claude_mpm/agents/templates/security.json,sha256=ekwiFj-TzVDTEj70QfV5Oix1x7zAeCdl-zZ8-QGJIXg,24556
61
68
  claude_mpm/agents/templates/ticketing.json,sha256=P2-rE8ABgRQ47zetLkPtqaADlntfrwqTu19TIWo8vLo,11903
62
69
  claude_mpm/agents/templates/typescript_engineer.json,sha256=9olj0WtpCGnf1Vgjob0BSX3LHSH7Pg-FFdktBVAZqGw,18542
70
+ claude_mpm/agents/templates/validation_templates.md,sha256=Y4_D7dphQaKigZWqKWvJ4jVu3N-eA5OOSr8f59Q0LUM,13148
63
71
  claude_mpm/agents/templates/vercel_ops_agent.json,sha256=AExlW33DGLzOxth3VJNy1q6oNa7YrZIKMwUuXTYH64g,27295
64
72
  claude_mpm/agents/templates/version_control.json,sha256=O0rIhUCtbtttJMvxdV3M78JZu5mCuFMJO0cBRXiJCHk,14758
65
73
  claude_mpm/agents/templates/web_qa.json,sha256=4ETk0jllw8CD0rTa-A2N98bwUBLMJNnpffgM9qGLM7A,28030
@@ -177,7 +185,7 @@ claude_mpm/core/instruction_reinforcement_hook.py,sha256=s9KGkdJO8E9ip3MB5PlXo52
177
185
  claude_mpm/core/interactive_session.py,sha256=dMFuuZKXsGsDkXLaIgQKxbiG5LRRIEUFEKFFyYnsFbc,21979
178
186
  claude_mpm/core/interfaces.py,sha256=RNqXxUioEpV4vOaEoUJ38OvKYPMlpSb3V5Sb97l0w3Q,25625
179
187
  claude_mpm/core/lazy.py,sha256=pyCfEqGHyLz18yXTu_uG52-II-9nCaBcpzwwQGBrQro,14808
180
- claude_mpm/core/log_manager.py,sha256=MN45RwQoxM9jBXgnqGFOtZainzUudmJgq4AdyIGkHyM,24515
188
+ claude_mpm/core/log_manager.py,sha256=yf82AKC-DYLtl7h0ka5IEoVC8aC0_II-zCjHOwD3RxQ,24661
181
189
  claude_mpm/core/logger.py,sha256=VTccnQbaCRu8RxhchdtAPc_-XActC9G1vyHwNijgYj0,20930
182
190
  claude_mpm/core/logging_config.py,sha256=tCxM3EpSmjZ7kT7hckQxQZlrxuWVm4g-qu9RHe8hDcw,14588
183
191
  claude_mpm/core/logging_utils.py,sha256=KKFkUW9rSxa28xk6L9EUK0DttBR1MWQk_AS-4fzWfTo,16007
@@ -798,9 +806,9 @@ claude_mpm/utils/subprocess_utils.py,sha256=D0izRT8anjiUb_JG72zlJR_JAw1cDkb7kalN
798
806
  claude_mpm/validation/__init__.py,sha256=YZhwE3mhit-lslvRLuwfX82xJ_k4haZeKmh4IWaVwtk,156
799
807
  claude_mpm/validation/agent_validator.py,sha256=GprtAvu80VyMXcKGsK_VhYiXWA6BjKHv7O6HKx0AB9w,20917
800
808
  claude_mpm/validation/frontmatter_validator.py,sha256=YpJlYNNYcV8u6hIOi3_jaRsDnzhbcQpjCBE6eyBKaFY,7076
801
- claude_mpm-4.11.2.dist-info/licenses/LICENSE,sha256=lpaivOlPuBZW1ds05uQLJJswy8Rp_HMNieJEbFlqvLk,1072
802
- claude_mpm-4.11.2.dist-info/METADATA,sha256=fxFp04Rwx9nyCdY9RKXWS0F_IhICPMPGFfk5g6rUyh0,17967
803
- claude_mpm-4.11.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
804
- claude_mpm-4.11.2.dist-info/entry_points.txt,sha256=Vlw3GNi-OtTpKSrez04iNrPmxNxYDpIWxmJCxiZ5Tx8,526
805
- claude_mpm-4.11.2.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
806
- claude_mpm-4.11.2.dist-info/RECORD,,
809
+ claude_mpm-4.12.4.dist-info/licenses/LICENSE,sha256=lpaivOlPuBZW1ds05uQLJJswy8Rp_HMNieJEbFlqvLk,1072
810
+ claude_mpm-4.12.4.dist-info/METADATA,sha256=ou28Q1Q0Yu2I053QOl9AJHPA4fOMWM08dvg1Swt1B_Y,17967
811
+ claude_mpm-4.12.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
812
+ claude_mpm-4.12.4.dist-info/entry_points.txt,sha256=Vlw3GNi-OtTpKSrez04iNrPmxNxYDpIWxmJCxiZ5Tx8,526
813
+ claude_mpm-4.12.4.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
814
+ claude_mpm-4.12.4.dist-info/RECORD,,