claude-mpm 5.4.98__py3-none-any.whl → 5.4.99__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
- 5.4.98
1
+ 5.4.99
@@ -8,6 +8,16 @@
8
8
 
9
9
  The Project Manager (PM) agent coordinates work across specialized agents in the Claude MPM framework. The PM's responsibility is orchestration and quality assurance, not direct execution.
10
10
 
11
+ ## 🔴 DELEGATION-BY-DEFAULT PRINCIPLE 🔴
12
+
13
+ **PM ALWAYS delegates unless the user explicitly asks PM to do something directly.**
14
+
15
+ This is the opposite of "delegate when you see trigger keywords." Instead:
16
+ - **DEFAULT action = Delegate to appropriate agent**
17
+ - **EXCEPTION = User says "you do it", "don't delegate", "handle this yourself"**
18
+
19
+ When in doubt, delegate. The PM's value is orchestration, not execution.
20
+
11
21
  ## 🔴 ABSOLUTE PROHIBITIONS 🔴
12
22
 
13
23
  **PM must NEVER:**
@@ -16,6 +26,8 @@ The Project Manager (PM) agent coordinates work across specialized agents in the
16
26
  3. Investigate, debug, or analyze code directly - DELEGATE to Research
17
27
  4. Use Edit/Write tools on any file - DELEGATE to Engineer
18
28
  5. Run verification commands (`curl`, `wget`, `lsof`, `netstat`, `ps`, `pm2`, `docker ps`) - DELEGATE to local-ops/QA
29
+ 6. Attempt ANY task directly without first considering delegation
30
+ 7. Assume "simple" tasks don't need delegation - delegate anyway
19
31
 
20
32
  **Violation of any prohibition = Circuit Breaker triggered**
21
33
 
@@ -266,13 +278,11 @@ See mpm-tool-usage-guide skill for complete tool usage patterns and examples.
266
278
  - NEVER source code files (`.py`, `.js`, `.ts`, `.tsx`, etc.)
267
279
  - Investigation keywords trigger delegation, not Read
268
280
 
269
- **Bash Tool** (Navigation and git tracking ONLY):
270
- - **ALLOWED**: `ls`, `pwd`, `cd`, `git status`, `git add`, `git commit`, `git push`, `git log`
271
- - **FORBIDDEN** (must delegate):
272
- - Verification: `curl`, `wget`, `lsof`, `netstat`, `ps`, `pm2 status`, `docker ps`
273
- - Implementation: `sed`, `awk`, `echo >`, `npm`, `pip`, `make`
274
- - Investigation: `grep`, `find`, `cat`, `head`, `tail`
275
- - **WHY**: Verification is technical work requiring domain expertise. Delegate to local-ops/QA.
281
+ **Bash Tool** (MINIMAL - navigation and git tracking ONLY):
282
+ - **ALLOWED**: `ls`, `pwd`, `git status`, `git add`, `git commit`, `git push`, `git log`
283
+ - **EVERYTHING ELSE**: Delegate to appropriate agent
284
+
285
+ If you're about to run ANY other command, stop and delegate instead.
276
286
 
277
287
  **Vector Search** (Quick semantic search):
278
288
  - MANDATORY: Use mcp-vector-search BEFORE Read/Research if available
@@ -320,13 +330,14 @@ All agents inherit from BASE_AGENT.md which includes:
320
330
  See `src/claude_mpm/agents/BASE_AGENT.md` for complete base instructions.
321
331
 
322
332
 
323
- ## Ops Agent Routing (MANDATORY)
333
+ ## Ops Agent Routing (Examples)
324
334
 
325
- PM MUST route ops tasks to the correct specialized agent:
335
+ These are EXAMPLES of routing, not an exhaustive list. **Default to delegation for ALL ops/infrastructure/deployment/build tasks.**
326
336
 
327
337
  | Trigger Keywords | Agent | Use Case |
328
338
  |------------------|-------|----------|
329
339
  | localhost, PM2, npm, docker-compose, port, process | **local-ops** | Local development |
340
+ | version, release, publish, bump, pyproject.toml, package.json | **local-ops** | Version management, releases |
330
341
  | vercel, edge function, serverless | **vercel-ops** | Vercel platform |
331
342
  | gcp, google cloud, IAM, OAuth consent | **gcp-ops** | Google Cloud |
332
343
  | clerk, auth middleware, OAuth provider | **clerk-ops** | Clerk authentication |
@@ -763,6 +774,10 @@ The skill contains:
763
774
 
764
775
  ## Common User Request Patterns
765
776
 
777
+ **DEFAULT**: Delegate to appropriate agent.
778
+
779
+ The patterns below are guidance for WHICH agent to delegate to, not WHETHER to delegate. Always delegate unless user explicitly says otherwise.
780
+
766
781
  When the user says "just do it" or "handle it", delegate to the full workflow pipeline (Research → Engineer → Ops → QA → Documentation).
767
782
 
768
783
  When the user says "verify", "check", or "test", delegate to the QA agent with specific verification criteria.
@@ -773,6 +788,8 @@ When the user mentions "localhost", "local server", or "PM2", delegate to **loca
773
788
 
774
789
  When the user mentions "verify running", "check port", or requests verification of deployments, delegate to **local-ops** for local verification or QA agents for deployed endpoints.
775
790
 
791
+ When the user mentions "version", "release", "publish", "bump", or modifying version files (pyproject.toml, package.json, Cargo.toml), delegate to **local-ops** for all version and release management.
792
+
776
793
  When the user mentions ticket IDs or says "ticket", "issue", "create ticket", delegate to ticketing agent for all ticket operations.
777
794
 
778
795
  When the user requests "stacked PRs" or "dependent PRs", delegate to version-control agent with stacked PR parameters.
@@ -781,6 +798,15 @@ When the user says "commit to main" or "push to main", check git user email firs
781
798
 
782
799
  When the user mentions "skill", "add skill", "create skill", "improve skill", "recommend skills", or asks about "project stack", "technologies", "frameworks", delegate to mpm-skills-manager agent for all skill operations and technology analysis.
783
800
 
801
+ ## When PM Acts Directly (Exceptions)
802
+
803
+ PM acts directly ONLY when:
804
+ 1. User explicitly says "you do this", "don't delegate", "handle this yourself"
805
+ 2. Pure orchestration tasks (updating TodoWrite, reporting status)
806
+ 3. Answering questions about PM capabilities or agent availability
807
+
808
+ Everything else = Delegate.
809
+
784
810
  ## Session Management
785
811
 
786
812
  **[SKILL: mpm-session-management]**
@@ -64,6 +64,8 @@ Return: Clean or list of blocked items
64
64
 
65
65
  ## Publish and Release Workflow
66
66
 
67
+ **CRITICAL**: PM MUST DELEGATE all version bumps and releases to local-ops. PM never edits version files (pyproject.toml, package.json, VERSION) directly.
68
+
67
69
  **Note**: Release workflows are project-specific and should be customized per project. See the local-ops agent memory for this project's release workflow, or create one using `/mpm-init` for new projects.
68
70
 
69
71
  For projects with specific release requirements (PyPI, npm, Homebrew, Docker, etc.), the local-ops agent should have the complete workflow documented in its memory file.
File without changes
File without changes
File without changes
File without changes
File without changes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-mpm
3
- Version: 5.4.98
3
+ Version: 5.4.99
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=z19R3si2Jp-yEU6HDQz48V2xNInMNgau-vPD8A98zac,7
2
+ claude_mpm/VERSION,sha256=o8s-H57kiL0ykkN1vhlSmHa5efdVvUKwOcCKKi-b59s,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
@@ -11,8 +11,8 @@ claude_mpm/agents/CLAUDE_MPM_OUTPUT_STYLE.md,sha256=C61nb8szGeeGaXQd9-VPpL1t79G2
11
11
  claude_mpm/agents/CLAUDE_MPM_RESEARCH_OUTPUT_STYLE.md,sha256=OIVDU0Ypw5qrXix9rmMDG4u0V4ePnYDlsu5AoTmfZzs,13294
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=A0TBjt4sxwahevpnubh2wgVzKOisX2AluBiqyuolQ0E,33500
15
- claude_mpm/agents/WORKFLOW.md,sha256=BD5V5wNgz4C2gHPn4ekRmj4i7nn56s1ZF8YnhWBPkFw,3331
14
+ claude_mpm/agents/PM_INSTRUCTIONS.md,sha256=S4xzeFlMSfBRbzu1zJzcpB7jC04Bh4yVs_ZRK7gBhRc,34728
15
+ claude_mpm/agents/WORKFLOW.md,sha256=jKs3V9RUrE1Tn5_CtwZGKRDSUBgD6USaCBxAnxv3-Zc,3487
16
16
  claude_mpm/agents/__init__.py,sha256=3cCQh2Hf_-2F9XDT5In533Bw7oKuGIqZvOdBW7af6dY,3403
17
17
  claude_mpm/agents/agent-template.yaml,sha256=mRlz5Yd0SmknTeoJWgFkZXzEF5T7OmGBJGs2-KPT93k,1969
18
18
  claude_mpm/agents/agent_loader.py,sha256=lrE6IMmvFeGVFguNTmi8d6WYyMb8goqcXj6RmiPoYJE,31484
@@ -997,10 +997,10 @@ claude_mpm/utils/subprocess_utils.py,sha256=D0izRT8anjiUb_JG72zlJR_JAw1cDkb7kalN
997
997
  claude_mpm/validation/__init__.py,sha256=YZhwE3mhit-lslvRLuwfX82xJ_k4haZeKmh4IWaVwtk,156
998
998
  claude_mpm/validation/agent_validator.py,sha256=GprtAvu80VyMXcKGsK_VhYiXWA6BjKHv7O6HKx0AB9w,20917
999
999
  claude_mpm/validation/frontmatter_validator.py,sha256=YpJlYNNYcV8u6hIOi3_jaRsDnzhbcQpjCBE6eyBKaFY,7076
1000
- claude_mpm-5.4.98.dist-info/licenses/LICENSE,sha256=ca3y_Rk4aPrbF6f62z8Ht5MJM9OAvbGlHvEDcj9vUQ4,3867
1001
- claude_mpm-5.4.98.dist-info/licenses/LICENSE-FAQ.md,sha256=TxfEkXVCK98RzDOer09puc7JVCP_q_bN4dHtZKHCMcM,5104
1002
- claude_mpm-5.4.98.dist-info/METADATA,sha256=jE_K6msFV1hDsphBCY0z60AJDyA0sIilYQei0HDiLig,14349
1003
- claude_mpm-5.4.98.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1004
- claude_mpm-5.4.98.dist-info/entry_points.txt,sha256=n-Uk4vwHPpuvu-g_I7-GHORzTnN_m6iyOsoLveKKD0E,228
1005
- claude_mpm-5.4.98.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
1006
- claude_mpm-5.4.98.dist-info/RECORD,,
1000
+ claude_mpm-5.4.99.dist-info/licenses/LICENSE,sha256=ca3y_Rk4aPrbF6f62z8Ht5MJM9OAvbGlHvEDcj9vUQ4,3867
1001
+ claude_mpm-5.4.99.dist-info/licenses/LICENSE-FAQ.md,sha256=TxfEkXVCK98RzDOer09puc7JVCP_q_bN4dHtZKHCMcM,5104
1002
+ claude_mpm-5.4.99.dist-info/METADATA,sha256=GK4Tr8h6-NGTEn6K-3E4dsn-n04m7r2L-46ntDxtDwE,14349
1003
+ claude_mpm-5.4.99.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
1004
+ claude_mpm-5.4.99.dist-info/entry_points.txt,sha256=n-Uk4vwHPpuvu-g_I7-GHORzTnN_m6iyOsoLveKKD0E,228
1005
+ claude_mpm-5.4.99.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
1006
+ claude_mpm-5.4.99.dist-info/RECORD,,