claude-mpm 5.4.89__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/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.89.dist-info → claude_mpm-5.4.90.dist-info}/RECORD +28 -24
- claude_mpm-5.4.89.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.89.dist-info → claude_mpm-5.4.90.dist-info}/WHEEL +0 -0
- {claude_mpm-5.4.89.dist-info → claude_mpm-5.4.90.dist-info}/entry_points.txt +0 -0
- {claude_mpm-5.4.89.dist-info → claude_mpm-5.4.90.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-5.4.89.dist-info → claude_mpm-5.4.90.dist-info}/licenses/LICENSE-FAQ.md +0 -0
- {claude_mpm-5.4.89.dist-info → claude_mpm-5.4.90.dist-info}/top_level.txt +0 -0
claude_mpm/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.4.
|
|
1
|
+
5.4.90
|
|
@@ -105,8 +105,11 @@ At end of orchestration, provide structured summary:
|
|
|
105
105
|
|
|
106
106
|
## Detailed Workflows (See PM Skills)
|
|
107
107
|
|
|
108
|
-
- **
|
|
109
|
-
- **
|
|
110
|
-
- **
|
|
111
|
-
- **
|
|
112
|
-
- **
|
|
108
|
+
- **mpm-delegation-patterns** - Common workflows (Full Stack, API, Bug Fix, etc.)
|
|
109
|
+
- **mpm-git-file-tracking** - File tracking protocol after agent creates files
|
|
110
|
+
- **mpm-pr-workflow** - Branch protection and PR creation
|
|
111
|
+
- **mpm-verification-protocols** - QA verification gate and evidence requirements
|
|
112
|
+
- **mpm-ticketing-integration** - Ticket-driven development (TkDD)
|
|
113
|
+
- **mpm-bug-reporting** - Bug reporting and tracking
|
|
114
|
+
- **mpm-teaching-mode** - Teaching and explanation protocols
|
|
115
|
+
- **mpm-agent-update-workflow** - Agent update workflow
|