claude-mpm 4.3.4__py3-none-any.whl → 4.3.6__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 CHANGED
@@ -1 +1 @@
1
- 4.3.4
1
+ 4.3.6
@@ -26,6 +26,7 @@
26
26
  | deploy, infrastructure | Ops | - |
27
27
  | GCP, Cloud Run | gcp-ops-agent | Ops |
28
28
  | Vercel, edge | vercel-ops-agent | Ops |
29
+ | Railway deploy | railway-ops-agent | Ops |
29
30
  | security, auth | Security | - |
30
31
  | document, docs | Documentation | - |
31
32
  | git, commit | version-control | - |
@@ -45,10 +46,11 @@ START → Research → Code Analyzer → Implementation → Site Deployment →
45
46
  1. **Research**: Requirements analysis, success criteria, risks
46
47
  2. **Code Analyzer**: Solution review (APPROVED/NEEDS_IMPROVEMENT/BLOCKED)
47
48
  3. **Implementation**: Selected agent builds complete solution
48
- 4. **Site Deployment** (for web projects):
49
- - **MANDATORY**: Deploy stable instance using PM2 when working on sites
50
- - Delegate to Ops agent: "Deploy site with PM2 for testing"
51
- - Ensure site is accessible before proceeding to QA
49
+ 4. **Deployment & Verification** (MANDATORY for all deployments):
50
+ - **Step 1**: Deploy using appropriate ops agent
51
+ - **Step 2**: MUST verify deployment with same ops agent
52
+ - **Step 3**: Ops agent MUST check logs, use fetch/Playwright for validation
53
+ - **FAILURE TO VERIFY = DEPLOYMENT INCOMPLETE**
52
54
  5. **QA**: Real-world testing with evidence (MANDATORY)
53
55
  - **Web UI Work**: MUST use Playwright for browser testing
54
56
  - **API Work**: Use web-qa for fetch testing
@@ -60,6 +62,38 @@ START → Research → Code Analyzer → Implementation → Site Deployment →
60
62
  - Attempt 2: Escalate to Research
61
63
  - Attempt 3: Block, require user input
62
64
 
65
+ ## Deployment Verification Matrix
66
+
67
+ **MANDATORY**: Every deployment MUST be verified by the appropriate ops agent
68
+
69
+ | Deployment Type | Ops Agent | Required Verifications |
70
+ |----------------|-----------|------------------------|
71
+ | Local Dev (PM2, Docker) | Ops | Read logs, check process status, fetch endpoint, Playwright if UI |
72
+ | Vercel | vercel-ops-agent | Read build logs, fetch deployment URL, check function logs, Playwright for pages |
73
+ | Railway | railway-ops-agent | Read deployment logs, check health endpoint, verify database connections |
74
+ | GCP/Cloud Run | gcp-ops-agent | Check Cloud Run logs, verify service status, test endpoints |
75
+ | AWS | aws-ops-agent | CloudWatch logs, Lambda status, API Gateway tests |
76
+ | Heroku | Ops (generic) | Read app logs, check dyno status, test endpoints |
77
+ | Netlify | Ops (generic) | Build logs, function logs, deployment URL tests |
78
+
79
+ **Verification Requirements**:
80
+ 1. **Logs**: Agent MUST read deployment/server logs for errors
81
+ 2. **Fetch Tests**: Agent MUST use fetch to verify API endpoints return expected status
82
+ 3. **UI Tests**: For web apps, agent MUST use Playwright to verify page loads
83
+ 4. **Health Checks**: Agent MUST verify health/status endpoints if available
84
+ 5. **Database**: If applicable, agent MUST verify database connectivity
85
+
86
+ **Verification Template for Ops Agents**:
87
+ ```
88
+ Task: Verify [platform] deployment
89
+ Requirements:
90
+ 1. Read deployment/build logs - identify any errors or warnings
91
+ 2. Test primary endpoint with fetch - verify HTTP 200/expected response
92
+ 3. If UI: Use Playwright to verify homepage loads and key elements present
93
+ 4. Check server/function logs for runtime errors
94
+ 5. Report: "Deployment VERIFIED" or "Deployment FAILED: [specific issues]"
95
+ ```
96
+
63
97
  ## QA Requirements
64
98
 
65
99
  **Rule**: No QA = Work incomplete
@@ -74,9 +108,12 @@ START → Research → Code Analyzer → Implementation → Site Deployment →
74
108
  |------|-------------|----------|----------------|
75
109
  | API | HTTP calls | curl/fetch output | web-qa (MANDATORY) |
76
110
  | Web UI | Browser automation | Playwright results | web-qa with Playwright |
77
- | Site Deploy | PM2 status | Process running | Ops web-qa verify |
111
+ | Local Deploy | PM2/Docker status + fetch/Playwright | Logs + endpoint tests | Ops (MUST verify) |
112
+ | Vercel Deploy | Build success + fetch/Playwright | Deployment URL active | vercel-ops-agent (MUST verify) |
113
+ | Railway Deploy | Service healthy + fetch tests | Logs + endpoint response | railway-ops-agent (MUST verify) |
114
+ | GCP Deploy | Cloud Run active + endpoint tests | Service logs + HTTP 200 | gcp-ops-agent (MUST verify) |
78
115
  | Database | Query execution | SELECT results | QA |
79
- | Deploy | Live URL | HTTP 200 | web-qa |
116
+ | Any Deploy | Live URL + server logs + fetch | Full verification suite | Appropriate ops agent |
80
117
 
81
118
  **Reject if**: "should work", "looks correct", "theoretically"
82
119
  **Accept if**: "tested with output:", "verification shows:", "actual results:"
@@ -123,8 +160,13 @@ Override? → YES → PM executes
123
160
  ↓ NO
124
161
  Research → Code Analyzer → Implementation →
125
162
 
126
- Is Site? → YES → PM2 Deploy (Ops)
127
- NO
163
+ Needs Deploy? → YES → Deploy (Appropriate Ops Agent)
164
+
165
+ NO VERIFY (Same Ops Agent):
166
+ ↓ - Read logs
167
+ ↓ - Fetch tests
168
+ ↓ - Playwright if UI
169
+ ↓ ↓
128
170
  QA Verification (MANDATORY):
129
171
  - web-qa for ALL projects (fetch tests)
130
172
  - Playwright for Web UI
@@ -133,12 +175,13 @@ Documentation → Report
133
175
  ```
134
176
 
135
177
  ### Common Patterns
136
- - Full Stack: Research → Analyzer → react-engineer + Engineer → Ops (PM2) → api-qa + web-qa (Playwright) → Docs
137
- - API: Research → Analyzer → Engineer → web-qa (fetch tests) → Docs
138
- - Web UI: Research → Analyzer → web-ui/react-engineer → Ops (PM2) → web-qa (Playwright) → Docs
139
- - Site Project: Research → Analyzer → Engineer → Ops (PM2 deploy) → web-qa (verify deployment) → Docs
140
- - Deploy: Research → Ops (PM2 for sites) → web-qa (verify accessible) → Docs
141
- - Bug Fix: Research → Analyzer → Engineer → web-qa (regression test) → version-control
178
+ - Full Stack: Research → Analyzer → react-engineer + Engineer → Ops (deploy) → Ops (VERIFY) → api-qa + web-qa → Docs
179
+ - API: Research → Analyzer → Engineer → Deploy (if needed) → Ops (VERIFY) → web-qa (fetch tests) → Docs
180
+ - Web UI: Research → Analyzer → web-ui/react-engineer → Ops (deploy) → Ops (VERIFY with Playwright) → web-qa → Docs
181
+ - Vercel Site: Research → Analyzer → Engineer → vercel-ops (deploy) → vercel-ops (VERIFY) → web-qa → Docs
182
+ - Railway App: Research → Analyzer Engineer → railway-ops (deploy) → railway-ops (VERIFY) → api-qa → Docs
183
+ - Local Dev: Research → Analyzer → Engineer → Ops (PM2/Docker) → Ops (VERIFY logs+fetch) → QA → Docs
184
+ - Bug Fix: Research → Analyzer → Engineer → Deploy → Ops (VERIFY) → web-qa (regression) → version-control
142
185
 
143
186
  ### Success Criteria
144
187
  ✅ Measurable: "API returns 200", "Tests pass 80%+"
@@ -199,9 +199,12 @@ class MultiSourceAgentDeploymentService:
199
199
  f"Project agent '{agent_name}' v{other_agent['version']} "
200
200
  f"overridden by higher system version v{highest_version_agent['version']}"
201
201
  )
202
- elif other_agent["source"] == "user" and highest_version_agent[
202
+ elif other_agent[
203
203
  "source"
204
- ] in ["system", "project"]:
204
+ ] == "user" and highest_version_agent["source"] in [
205
+ "system",
206
+ "project",
207
+ ]:
205
208
  self.logger.warning(
206
209
  f"User agent '{agent_name}' v{other_agent['version']} "
207
210
  f"overridden by higher {highest_version_agent['source']} version v{highest_version_agent['version']}"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-mpm
3
- Version: 4.3.4
3
+ Version: 4.3.6
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=toytnNjkIKPgQaGwDqQdC1rpNTAdSEc6Vja50d7Ovug,4
2
- claude_mpm/VERSION,sha256=o_KX93dYgQAeUlvYMW1sYfnWMQ1_4M4ZGDDpbNctSho,6
2
+ claude_mpm/VERSION,sha256=oKf8LmEL2ljWmqB_HQ624StYNfAD_9xr3PUlN9ch6rk,6
3
3
  claude_mpm/__init__.py,sha256=lyTZAYGH4DTaFGLRNWJKk5Q5oTjzN5I6AXmfVX-Jff0,1512
4
4
  claude_mpm/__main__.py,sha256=Ro5UBWBoQaSAIoSqWAr7zkbLyvi4sSy28WShqAhKJG0,723
5
5
  claude_mpm/constants.py,sha256=xnjYxUUVufwp4fIMpAwKiMC5MP14-c2HSAz5R9O3G-U,5927
@@ -15,7 +15,7 @@ claude_mpm/agents/BASE_RESEARCH.md,sha256=2DZhDd5XxWWtsyNTBIwvtNWBu1JpFy5R5SAZDH
15
15
  claude_mpm/agents/INSTRUCTIONS_OLD_DEPRECATED.md,sha256=zQZhrhVq9NLCtSjVX-aC0xcgueemSuPhKyv0SjEOyIQ,25852
16
16
  claude_mpm/agents/MEMORY.md,sha256=KbRwY_RYdOvTvFC2DD-ATfwjHkQWJ5PIjlGws_7RmjI,3307
17
17
  claude_mpm/agents/OUTPUT_STYLE.md,sha256=IYbo4jmICihrfnChbdrRpwVk4VobCcNyYqZqd53VXMk,533
18
- claude_mpm/agents/PM_INSTRUCTIONS.md,sha256=H4ghtT8D8JdevQx_vvklRm-MBLAz7oXSbO2emiEuxnI,4836
18
+ claude_mpm/agents/PM_INSTRUCTIONS.md,sha256=uUD8ypYygQ3jJARZKQRApwvhNNjorjv0LXtAW-TP5HE,7563
19
19
  claude_mpm/agents/WORKFLOW.md,sha256=Dvy4Io3vr1V0WRINTPRuzSOIciwOl-d7fwO2PtXtvGs,2638
20
20
  claude_mpm/agents/__init__.py,sha256=jRFxvV_DIZ-NdENa-703Xu3YpwvlQj6yv-mQ6FgmldM,3220
21
21
  claude_mpm/agents/agent-template.yaml,sha256=mRlz5Yd0SmknTeoJWgFkZXzEF5T7OmGBJGs2-KPT93k,1969
@@ -436,7 +436,7 @@ claude_mpm/services/agents/deployment/interface_adapter.py,sha256=mOsQ5IJHLEezq8
436
436
  claude_mpm/services/agents/deployment/lifecycle_health_checker.py,sha256=2dphAvYRABNlsvi3XfVwS8kvv-YURNEwPBVtCc1g3Zc,3164
437
437
  claude_mpm/services/agents/deployment/lifecycle_performance_tracker.py,sha256=lK_yg0uRL55opUoecOJBL83Tjj6Pu_z4-4EYWPeN6tM,4336
438
438
  claude_mpm/services/agents/deployment/local_template_deployment.py,sha256=VgvmfT8dYaH1KUDMO04EsAQ-XBf_X8u1JlQ_ZGtjDWk,12966
439
- claude_mpm/services/agents/deployment/multi_source_deployment_service.py,sha256=RMmeKmn917NKtyvGRWNfrduQPama5nhqqIqAxJ1c9Ls,43237
439
+ claude_mpm/services/agents/deployment/multi_source_deployment_service.py,sha256=0qyWrYaL7CFi5M8yqVhLgMKnIM8nIctKVjfpnAi4f9A,43332
440
440
  claude_mpm/services/agents/deployment/refactored_agent_deployment_service.py,sha256=5-StpaZYqVvm-WrmLMsoIp85WFYL2p0VLWQOfZEn8jU,11707
441
441
  claude_mpm/services/agents/deployment/single_agent_deployer.py,sha256=6QtHP-y4T_-UXYXYvdQgdIooOfjnC5NArlbkUo4EPl0,11492
442
442
  claude_mpm/services/agents/deployment/system_instructions_deployer.py,sha256=SCBBXleIn322X_w-swOHjO22J3HCxSHGkd3V-rSbbOs,4060
@@ -714,9 +714,9 @@ claude_mpm/utils/subprocess_utils.py,sha256=zgiwLqh_17WxHpySvUPH65pb4bzIeUGOAYUJ
714
714
  claude_mpm/validation/__init__.py,sha256=YZhwE3mhit-lslvRLuwfX82xJ_k4haZeKmh4IWaVwtk,156
715
715
  claude_mpm/validation/agent_validator.py,sha256=3Lo6LK-Mw9IdnL_bd3zl_R6FkgSVDYKUUM7EeVVD3jc,20865
716
716
  claude_mpm/validation/frontmatter_validator.py,sha256=u8g4Eyd_9O6ugj7Un47oSGh3kqv4wMkuks2i_CtWRvM,7028
717
- claude_mpm-4.3.4.dist-info/licenses/LICENSE,sha256=lpaivOlPuBZW1ds05uQLJJswy8Rp_HMNieJEbFlqvLk,1072
718
- claude_mpm-4.3.4.dist-info/METADATA,sha256=abw8FbY3jwaD4Sk3pC8Lr5vj-Rv-_T-yzL3W_3TYZIw,14882
719
- claude_mpm-4.3.4.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
720
- claude_mpm-4.3.4.dist-info/entry_points.txt,sha256=FDPZgz8JOvD-6iuXY2l9Zbo9zYVRuE4uz4Qr0vLeGOk,471
721
- claude_mpm-4.3.4.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
722
- claude_mpm-4.3.4.dist-info/RECORD,,
717
+ claude_mpm-4.3.6.dist-info/licenses/LICENSE,sha256=lpaivOlPuBZW1ds05uQLJJswy8Rp_HMNieJEbFlqvLk,1072
718
+ claude_mpm-4.3.6.dist-info/METADATA,sha256=G7SCcqBeLewGx3ai5QlKaWqh_j8ZAsOQ_pj369PBDbI,14882
719
+ claude_mpm-4.3.6.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
720
+ claude_mpm-4.3.6.dist-info/entry_points.txt,sha256=FDPZgz8JOvD-6iuXY2l9Zbo9zYVRuE4uz4Qr0vLeGOk,471
721
+ claude_mpm-4.3.6.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
722
+ claude_mpm-4.3.6.dist-info/RECORD,,