claude-mpm 5.4.65__py3-none-any.whl → 5.4.67__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/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 project-level
312
- directory (.claude/settings/output-styles/) instead of user-level to maintain
313
- project isolation.
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-style.md (professional mode)
317
- - claude-mpm-teach.md (teaching mode)
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/settings/output-styles/
329
+ # Claude Code reads output styles from ~/.claude/output-styles/
330
330
  user_home = Path.home()
331
- output_styles_dir = user_home / ".claude" / "settings" / "output-styles"
332
- professional_target = output_styles_dir / "claude-mpm-style.md"
333
- teacher_target = output_styles_dir / "claude-mpm-teach.md"
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-teach.md)
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 (NOT output-styles/)
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-teach.md",
72
- name="claude-mpm-teach",
71
+ target=self.output_style_dir / "claude-mpm-teacher.md",
72
+ name="claude-mpm-teacher",
73
73
  ),
74
74
  }
75
75