claude-mpm 5.4.65__py3-none-any.whl → 5.4.66__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/cli/startup.py +9 -9
- claude_mpm/core/output_style_manager.py +5 -5
- {claude_mpm-5.4.65.dist-info → claude_mpm-5.4.66.dist-info}/METADATA +1 -1
- {claude_mpm-5.4.65.dist-info → claude_mpm-5.4.66.dist-info}/RECORD +10 -10
- {claude_mpm-5.4.65.dist-info → claude_mpm-5.4.66.dist-info}/WHEEL +0 -0
- {claude_mpm-5.4.65.dist-info → claude_mpm-5.4.66.dist-info}/entry_points.txt +0 -0
- {claude_mpm-5.4.65.dist-info → claude_mpm-5.4.66.dist-info}/licenses/LICENSE +0 -0
- {claude_mpm-5.4.65.dist-info → claude_mpm-5.4.66.dist-info}/licenses/LICENSE-FAQ.md +0 -0
- {claude_mpm-5.4.65.dist-info → claude_mpm-5.4.66.dist-info}/top_level.txt +0 -0
claude_mpm/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
5.4.
|
|
1
|
+
5.4.66
|
claude_mpm/cli/startup.py
CHANGED
|
@@ -308,13 +308,13 @@ def deploy_output_style_on_startup():
|
|
|
308
308
|
communication without emojis and exclamation points. Styles are project-specific
|
|
309
309
|
to allow different projects to have different communication styles.
|
|
310
310
|
|
|
311
|
-
DESIGN DECISION: This is non-blocking and idempotent. Deploys to
|
|
312
|
-
directory (
|
|
313
|
-
|
|
311
|
+
DESIGN DECISION: This is non-blocking and idempotent. Deploys to user-level
|
|
312
|
+
directory (~/.claude/output-styles/) which is the official Claude Code location
|
|
313
|
+
for custom output styles.
|
|
314
314
|
|
|
315
315
|
Deploys two styles:
|
|
316
|
-
- claude-mpm
|
|
317
|
-
- claude-mpm-
|
|
316
|
+
- claude-mpm.md (professional mode)
|
|
317
|
+
- claude-mpm-teacher.md (teaching mode)
|
|
318
318
|
"""
|
|
319
319
|
try:
|
|
320
320
|
import shutil
|
|
@@ -326,11 +326,11 @@ def deploy_output_style_on_startup():
|
|
|
326
326
|
teacher_source = package_dir / "CLAUDE_MPM_TEACHER_OUTPUT_STYLE.md"
|
|
327
327
|
|
|
328
328
|
# Target directory (USER-LEVEL for global availability)
|
|
329
|
-
# Claude Code reads output styles from ~/.claude/
|
|
329
|
+
# Claude Code reads output styles from ~/.claude/output-styles/
|
|
330
330
|
user_home = Path.home()
|
|
331
|
-
output_styles_dir = user_home / ".claude" / "
|
|
332
|
-
professional_target = output_styles_dir / "claude-mpm
|
|
333
|
-
teacher_target = output_styles_dir / "claude-mpm-
|
|
331
|
+
output_styles_dir = user_home / ".claude" / "output-styles"
|
|
332
|
+
professional_target = output_styles_dir / "claude-mpm.md"
|
|
333
|
+
teacher_target = output_styles_dir / "claude-mpm-teacher.md"
|
|
334
334
|
|
|
335
335
|
# Create directory if it doesn't exist
|
|
336
336
|
output_styles_dir.mkdir(parents=True, exist_ok=True)
|
|
@@ -43,7 +43,7 @@ class OutputStyleManager:
|
|
|
43
43
|
|
|
44
44
|
Supports two output styles:
|
|
45
45
|
- professional: Default Claude MPM style (claude-mpm.md)
|
|
46
|
-
- teaching: Adaptive teaching mode (claude-mpm-
|
|
46
|
+
- teaching: Adaptive teaching mode (claude-mpm-teacher.md)
|
|
47
47
|
"""
|
|
48
48
|
|
|
49
49
|
def __init__(self) -> None:
|
|
@@ -51,8 +51,8 @@ class OutputStyleManager:
|
|
|
51
51
|
self.logger = get_logger("output_style_manager") # type: ignore[misc]
|
|
52
52
|
self.claude_version = self._detect_claude_version()
|
|
53
53
|
|
|
54
|
-
# Deploy to ~/.claude/styles/ directory (
|
|
55
|
-
self.output_style_dir = Path.home() / ".claude" / "styles"
|
|
54
|
+
# Deploy to ~/.claude/output-styles/ directory (official Claude Code location)
|
|
55
|
+
self.output_style_dir = Path.home() / ".claude" / "output-styles"
|
|
56
56
|
self.settings_file = Path.home() / ".claude" / "settings.json"
|
|
57
57
|
|
|
58
58
|
# Style definitions
|
|
@@ -68,8 +68,8 @@ class OutputStyleManager:
|
|
|
68
68
|
source=Path(__file__).parent.parent
|
|
69
69
|
/ "agents"
|
|
70
70
|
/ "CLAUDE_MPM_TEACHER_OUTPUT_STYLE.md",
|
|
71
|
-
target=self.output_style_dir / "claude-mpm-
|
|
72
|
-
name="claude-mpm-
|
|
71
|
+
target=self.output_style_dir / "claude-mpm-teacher.md",
|
|
72
|
+
name="claude-mpm-teacher",
|
|
73
73
|
),
|
|
74
74
|
}
|
|
75
75
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
claude_mpm/BUILD_NUMBER,sha256=9JfxhnDtr-8l3kCP2U5TVXSErptHoga8m7XA8zqgGOc,4
|
|
2
|
-
claude_mpm/VERSION,sha256
|
|
2
|
+
claude_mpm/VERSION,sha256=J7Hdyqn91488TmVGaemXFmpiIwMPOadBDHN_lEmIF6A,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=CU7v8LZT-cFCNNLZU4dpaMD-4c3ib16v8fVE620wUjk,6761
|
|
@@ -41,7 +41,7 @@ claude_mpm/cli/chrome_devtools_installer.py,sha256=efA_ZX1iR3oaJi3222079BQw6DEG8
|
|
|
41
41
|
claude_mpm/cli/executor.py,sha256=cetKiY2YS4XETUBXmfySdHYloI_M_lBJUFViRQ9TcS4,10544
|
|
42
42
|
claude_mpm/cli/helpers.py,sha256=CypEhw0tbNH6_GzVTaQdi4w7ThCWO43Ep92YbJzPR4I,3638
|
|
43
43
|
claude_mpm/cli/parser.py,sha256=Vqx9n-6Xo1uNhXR4rThmgWpZXTr0nOtkgDf3oMS9b0g,5855
|
|
44
|
-
claude_mpm/cli/startup.py,sha256=
|
|
44
|
+
claude_mpm/cli/startup.py,sha256=YfPvhMiU_vbZUw7tpOEXpSpUqFO6DIoXsn6dsMBYmPQ,73964
|
|
45
45
|
claude_mpm/cli/startup_display.py,sha256=R_QIamjfdaY5o_VxpIeymyYj1Qde2B9hPXy1P-KmUKI,14972
|
|
46
46
|
claude_mpm/cli/startup_logging.py,sha256=RTuyd6CbhiFQz7Z07LDDhK_ZAnZfuJ9B0NghVSntHFI,29390
|
|
47
47
|
claude_mpm/cli/utils.py,sha256=FSMPftBZM8MeUyTtiB63Lz7oFOgkzwTetQs58RbRb_Q,8785
|
|
@@ -203,7 +203,7 @@ claude_mpm/core/mixins.py,sha256=vmZ7Nu2ZOnKjbhN07Ixk4noIej9nsJiknrp-Sclfu0A,534
|
|
|
203
203
|
claude_mpm/core/oneshot_session.py,sha256=nA86Zk7W3Rh_yIhPuegFL7Xgc9S63vQ_MqfLk52doV0,21994
|
|
204
204
|
claude_mpm/core/optimized_agent_loader.py,sha256=yevEwTZWzVeZYEJhV3czD45OU7ukJIaJos4MGnFP7YQ,15857
|
|
205
205
|
claude_mpm/core/optimized_startup.py,sha256=U5I4f7PNYXCBOLbCkbWT2V2sv01T8iWP2Bw-f928Q9M,17927
|
|
206
|
-
claude_mpm/core/output_style_manager.py,sha256=
|
|
206
|
+
claude_mpm/core/output_style_manager.py,sha256=5jKurbBlQQXSlXhugGC3pNGg09gZhOXnATb4dQ_I_Jk,17056
|
|
207
207
|
claude_mpm/core/pm_hook_interceptor.py,sha256=92C8TrpK-XVQD8BiXbqs8lSCX72PU0KZG5oAjhf8GOQ,11197
|
|
208
208
|
claude_mpm/core/service_registry.py,sha256=QpmAMWCov8XXaxQwE7WiNbgv6u_CRjpKPB64kLYvZKk,11722
|
|
209
209
|
claude_mpm/core/session_manager.py,sha256=iEDZWKBYHSu001nFX8vFvH33RvQOW0eIgomWhFM53sw,12078
|
|
@@ -987,10 +987,10 @@ claude_mpm/utils/subprocess_utils.py,sha256=D0izRT8anjiUb_JG72zlJR_JAw1cDkb7kalN
|
|
|
987
987
|
claude_mpm/validation/__init__.py,sha256=YZhwE3mhit-lslvRLuwfX82xJ_k4haZeKmh4IWaVwtk,156
|
|
988
988
|
claude_mpm/validation/agent_validator.py,sha256=GprtAvu80VyMXcKGsK_VhYiXWA6BjKHv7O6HKx0AB9w,20917
|
|
989
989
|
claude_mpm/validation/frontmatter_validator.py,sha256=YpJlYNNYcV8u6hIOi3_jaRsDnzhbcQpjCBE6eyBKaFY,7076
|
|
990
|
-
claude_mpm-5.4.
|
|
991
|
-
claude_mpm-5.4.
|
|
992
|
-
claude_mpm-5.4.
|
|
993
|
-
claude_mpm-5.4.
|
|
994
|
-
claude_mpm-5.4.
|
|
995
|
-
claude_mpm-5.4.
|
|
996
|
-
claude_mpm-5.4.
|
|
990
|
+
claude_mpm-5.4.66.dist-info/licenses/LICENSE,sha256=ca3y_Rk4aPrbF6f62z8Ht5MJM9OAvbGlHvEDcj9vUQ4,3867
|
|
991
|
+
claude_mpm-5.4.66.dist-info/licenses/LICENSE-FAQ.md,sha256=TxfEkXVCK98RzDOer09puc7JVCP_q_bN4dHtZKHCMcM,5104
|
|
992
|
+
claude_mpm-5.4.66.dist-info/METADATA,sha256=xRmb_aVHGDgKD54T0L2n5LxKKFyUT1YYOkmvsc9rcJY,37997
|
|
993
|
+
claude_mpm-5.4.66.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
994
|
+
claude_mpm-5.4.66.dist-info/entry_points.txt,sha256=n-Uk4vwHPpuvu-g_I7-GHORzTnN_m6iyOsoLveKKD0E,228
|
|
995
|
+
claude_mpm-5.4.66.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
|
|
996
|
+
claude_mpm-5.4.66.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|