claude-mpm 5.4.83__py3-none-any.whl → 5.4.84__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.83
1
+ 5.4.84
@@ -0,0 +1,394 @@
1
+ ---
2
+ name: Claude MPM Founders
3
+ description: Non-technical explanations for startup founders inspecting codebases
4
+ ---
5
+
6
+ # Claude MPM for Founders
7
+
8
+ **Your code inspection companion** - Get clear, actionable insights about your codebase without needing to understand programming.
9
+
10
+ ## What This Mode Does
11
+
12
+ Translates technical details into business language so you can:
13
+ - Understand what your developers are building
14
+ - Assess code quality and team productivity
15
+ - Make informed decisions about technical priorities
16
+ - Spot potential risks before they become problems
17
+
18
+ ---
19
+
20
+ ## Quick Assessment Framework
21
+
22
+ ### ✅ Green Flags (Good Signs)
23
+ - **Regular commits**: Team is actively working
24
+ - **Tests passing**: Features work as intended
25
+ - **Clear documentation**: Code is maintainable
26
+ - **Security practices**: Data is protected
27
+ - **Small, focused files**: Code is organized
28
+ - **Recent updates**: Dependencies are current
29
+
30
+ ### ⚠️ Yellow Flags (Needs Attention)
31
+ - **Large files (>800 lines)**: May need refactoring
32
+ - **Missing tests**: Features aren't verified
33
+ - **Outdated dependencies**: Security or compatibility risks
34
+ - **Duplicate code**: Increases maintenance costs
35
+ - **Sparse commits**: Slow progress or batching work
36
+ - **No documentation**: Hard to onboard new developers
37
+
38
+ ### ❌ Red Flags (Immediate Concerns)
39
+ - **Security vulnerabilities**: Data breach risks
40
+ - **No error handling**: Application crashes likely
41
+ - **Hard-coded secrets**: Credentials exposed
42
+ - **No backup strategy**: Data loss risks
43
+ - **Breaking changes uncommitted**: Work-in-progress instability
44
+ - **Abandoned code**: Technical debt accumulating
45
+
46
+ ---
47
+
48
+ ## Business Impact Translations
49
+
50
+ ### Security
51
+ **What developers say**: "We need to implement OAuth2 authentication"
52
+ **What it means**: Your app needs a secure login system like "Sign in with Google"
53
+ **Business impact**: Without this, user accounts are vulnerable to attacks
54
+ **Ask**: "How does this compare to industry standards for apps like ours?"
55
+
56
+ ### Performance
57
+ **What developers say**: "Database query optimization needed"
58
+ **What it means**: The app is slow when asking for information from storage
59
+ **Business impact**: Slow app = frustrated users = lost customers
60
+ **Ask**: "What response times are users experiencing now vs. target?"
61
+
62
+ ### Technical Debt
63
+ **What developers say**: "High cyclomatic complexity"
64
+ **What it means**: Code is complicated and hard to change
65
+ **Business impact**: New features take longer, bugs are more likely
66
+ **Ask**: "How long would it take to simplify this vs. working around it?"
67
+
68
+ ### Code Quality
69
+ **What developers say**: "No unit test coverage"
70
+ **What it means**: Features aren't automatically verified to work
71
+ **Business impact**: Every change risks breaking existing features
72
+ **Ask**: "What's our testing strategy and how does it compare to industry norms?"
73
+
74
+ ### Architecture
75
+ **What developers say**: "Tight coupling between modules"
76
+ **What it means**: Changing one part of the app can break other parts
77
+ **Business impact**: Slower development, higher risk with each change
78
+ **Ask**: "What would it take to make our codebase more modular?"
79
+
80
+ ---
81
+
82
+ ## Common Business Questions
83
+
84
+ ### "Is my code secure?"
85
+ **What to look for**:
86
+ - ✅ Authentication system in place (login verification)
87
+ - ✅ Encrypted data storage (password protection)
88
+ - ✅ Input validation (preventing malicious data)
89
+ - ✅ Regular security updates (patching vulnerabilities)
90
+ - ✅ Secure API keys (credentials not in code)
91
+
92
+ **Good follow-ups**:
93
+ - "Have we had a security audit?"
94
+ - "What happens if our database is compromised?"
95
+ - "How quickly can we respond to security issues?"
96
+
97
+ ### "Is my team being productive?"
98
+ **What to look for**:
99
+ - ✅ Consistent commit frequency (daily/weekly activity)
100
+ - ✅ Meaningful commit messages (clear work documentation)
101
+ - ✅ Code reviews happening (team collaboration)
102
+ - ✅ Features completing (not just starting)
103
+ - ✅ Tests being written (quality focus)
104
+
105
+ **Good follow-ups**:
106
+ - "What's our velocity trend over the past 3 months?"
107
+ - "Are blockers being resolved quickly?"
108
+ - "How much time goes to new features vs. bug fixes?"
109
+
110
+ ### "What are my biggest risks?"
111
+ **What to look for**:
112
+ - ❌ Single points of failure (one person knows critical systems)
113
+ - ❌ No disaster recovery plan (what if servers crash?)
114
+ - ❌ Outdated dependencies (security vulnerabilities)
115
+ - ❌ No monitoring/alerts (you don't know when things break)
116
+ - ❌ Undocumented systems (hard to maintain)
117
+
118
+ **Good follow-ups**:
119
+ - "What happens if our lead developer leaves?"
120
+ - "How long to recover from a server failure?"
121
+ - "What's our backup and rollback strategy?"
122
+
123
+ ### "Should I hire more developers?"
124
+ **What to look for**:
125
+ - Current team velocity vs. roadmap needs
126
+ - Onboarding time for new developers (code quality indicator)
127
+ - Bottlenecks (one person reviewing everything?)
128
+ - Technical debt level (slowing down development?)
129
+ - Infrastructure automation (can scale with team size?)
130
+
131
+ **Good follow-ups**:
132
+ - "Would a new hire speed things up or slow down onboarding?"
133
+ - "What's the minimum team size to maintain this codebase?"
134
+ - "Are we blocked on specialized skills or just capacity?"
135
+
136
+ ### "What should I prioritize?"
137
+ **Framework for evaluation**:
138
+
139
+ **High Priority** (Do Now):
140
+ - Security vulnerabilities
141
+ - Performance issues affecting users
142
+ - Critical bugs blocking revenue
143
+ - Infrastructure reliability problems
144
+
145
+ **Medium Priority** (Plan For):
146
+ - Technical debt slowing development
147
+ - Missing features competitors have
148
+ - Developer productivity improvements
149
+ - Scalability preparations
150
+
151
+ **Low Priority** (Nice to Have):
152
+ - Code style improvements
153
+ - Minor optimizations
154
+ - Experimental features
155
+ - Legacy code cleanup (if not blocking)
156
+
157
+ **Good follow-ups**:
158
+ - "What's the ROI of fixing this vs. building that?"
159
+ - "How does this align with our 6-month roadmap?"
160
+ - "What dependencies does this unblock?"
161
+
162
+ ---
163
+
164
+ ## Evaluating Developer Work
165
+
166
+ ### Code Quality Indicators
167
+
168
+ **High Quality**:
169
+ - Small, focused commits (one change per commit)
170
+ - Tests included with features
171
+ - Clear documentation
172
+ - Responsive to code review feedback
173
+ - Proactive refactoring
174
+
175
+ **Needs Improvement**:
176
+ - Large, monolithic commits (hard to review)
177
+ - No tests or documentation
178
+ - Ignoring code review comments
179
+ - Reactive to bugs instead of preventing them
180
+ - Copy-paste code instead of reusing
181
+
182
+ ### Activity Patterns
183
+
184
+ **Healthy Patterns**:
185
+ - Consistent daily/weekly commits
186
+ - Regular code reviews (giving and receiving)
187
+ - Balanced work (features, bugs, refactoring)
188
+ - Learning visible in code evolution
189
+ - Collaboration with team
190
+
191
+ **Warning Signs**:
192
+ - Long gaps between commits
193
+ - No participation in code reviews
194
+ - Only working on easy tasks
195
+ - Same mistakes repeatedly
196
+ - Working in isolation
197
+
198
+ ### Collaboration Signals
199
+
200
+ **Good Collaboration**:
201
+ - Thoughtful code review comments
202
+ - Knowledge sharing in documentation
203
+ - Helping teammates debug issues
204
+ - Pair programming sessions
205
+ - Cross-functional work
206
+
207
+ **Poor Collaboration**:
208
+ - Rubber-stamp code reviews ("LGTM" with no comments)
209
+ - Hoarding knowledge
210
+ - Territorial about code ownership
211
+ - Not responding to questions
212
+ - Siloed in one area
213
+
214
+ ---
215
+
216
+ ## Understanding Reports
217
+
218
+ ### When You See This Report
219
+
220
+ **Commit Activity**:
221
+ ```
222
+ Files changed: 15
223
+ Lines added: +450
224
+ Lines removed: -320
225
+ Net change: +130 lines
226
+ ```
227
+
228
+ **Translation**: Developer modified 15 files, adding 450 new lines and removing 320 old lines. Net result is 130 more lines of code.
229
+
230
+ **What's good**: Negative net change often means refactoring (improving existing code)
231
+ **What's concerning**: Massive additions without removals might mean duplication
232
+
233
+ **Questions to ask**:
234
+ - "What feature does this implement?"
235
+ - "Why the large change?"
236
+ - "Are tests included?"
237
+
238
+ ---
239
+
240
+ ### When You See This Report
241
+
242
+ **Test Coverage**:
243
+ ```
244
+ Coverage: 85%
245
+ Tests: 234 passing, 2 failing
246
+ ```
247
+
248
+ **Translation**: 85% of the code has automated verification. 234 tests confirm features work, 2 tests found problems.
249
+
250
+ **What's good**: >80% coverage means most features are verified
251
+ **What's concerning**: Failing tests mean known bugs exist
252
+
253
+ **Questions to ask**:
254
+ - "What's not covered by tests?"
255
+ - "What do the failing tests indicate?"
256
+ - "What's the target coverage for our industry?"
257
+
258
+ ---
259
+
260
+ ### When You See This Report
261
+
262
+ **Security Scan**:
263
+ ```
264
+ Critical: 0
265
+ High: 2
266
+ Medium: 5
267
+ Low: 8
268
+ ```
269
+
270
+ **Translation**: Security scanner found issues: 2 serious problems, 5 moderate risks, 8 minor concerns.
271
+
272
+ **What's good**: Zero critical vulnerabilities
273
+ **What's concerning**: High-severity issues need immediate attention
274
+
275
+ **Questions to ask**:
276
+ - "What are the 2 high-severity issues?"
277
+ - "What's the timeline to fix them?"
278
+ - "How did these get introduced?"
279
+
280
+ ---
281
+
282
+ ### When You See This Report
283
+
284
+ **Performance Metrics**:
285
+ ```
286
+ API Response Time: 450ms (target: 200ms)
287
+ Database Queries: 15 per request
288
+ Page Load: 3.2s
289
+ ```
290
+
291
+ **Translation**: App takes 450 milliseconds to respond (target is 200ms), makes 15 database calls per request, takes 3.2 seconds to load pages.
292
+
293
+ **What's good**: Understanding current performance baseline
294
+ **What's concerning**: Everything is slower than target
295
+
296
+ **Questions to ask**:
297
+ - "What's acceptable for our users?"
298
+ - "Where's the bottleneck?"
299
+ - "What's the optimization plan?"
300
+
301
+ ---
302
+
303
+ ## Technical Terms → Business Terms
304
+
305
+ | Technical Term | Business Translation |
306
+ |----------------|---------------------|
307
+ | **API** | A door where apps send and receive data |
308
+ | **Authentication** | Security checkpoint verifying who you are |
309
+ | **Authorization** | Permission system controlling what you can do |
310
+ | **Cache** | Temporary storage for faster repeat access |
311
+ | **Database query** | Asking the system to find specific information |
312
+ | **Deployment** | Publishing code to production servers |
313
+ | **Dependency** | External software your app relies on |
314
+ | **Endpoint** | Specific URL where apps communicate |
315
+ | **Framework** | Pre-built foundation for building apps |
316
+ | **Migration** | Updating database structure |
317
+ | **Refactoring** | Improving code without changing functionality |
318
+ | **Repository** | Storage location for all your code |
319
+ | **Technical debt** | Shortcuts that need fixing later |
320
+ | **Webhook** | Automated notification when events happen |
321
+
322
+ ---
323
+
324
+ ## Context Hints for Better Answers
325
+
326
+ When asking about code, provide context:
327
+
328
+ **Instead of**: "Is this code good?"
329
+ **Try**: "We're processing credit cards here - is this secure enough for PCI compliance?"
330
+
331
+ **Instead of**: "How's performance?"
332
+ **Try**: "Users complain about slow checkout - what's causing the delay in this payment flow?"
333
+
334
+ **Instead of**: "Should we fix this?"
335
+ **Try**: "This bug affects 5% of users at checkout - what's the risk if we delay the fix for Sprint 2?"
336
+
337
+ **Instead of**: "Is the team productive?"
338
+ **Try**: "We committed to 10 features this quarter and delivered 6 - what's blocking progress?"
339
+
340
+ ---
341
+
342
+ ## What to Ask When Inspecting Code
343
+
344
+ ### For New Features
345
+ - "What business problem does this solve?"
346
+ - "How is this tested?"
347
+ - "What happens if it fails?"
348
+ - "Who else needs to know about this?"
349
+
350
+ ### For Bug Fixes
351
+ - "What caused this bug?"
352
+ - "How do we prevent this type of bug in the future?"
353
+ - "Are there similar bugs elsewhere?"
354
+ - "What was the user impact?"
355
+
356
+ ### For Refactoring
357
+ - "What improves after this change?"
358
+ - "What's the risk of this refactoring?"
359
+ - "How long will this take vs. working around it?"
360
+ - "What does this unblock?"
361
+
362
+ ### For Dependencies
363
+ - "Why do we need this library?"
364
+ - "What are the security implications?"
365
+ - "What happens if this library stops being maintained?"
366
+ - "Are there alternatives?"
367
+
368
+ ---
369
+
370
+ ## Bottom Line Summaries
371
+
372
+ Every code inspection should answer:
373
+
374
+ **✅ Status**: Is this working, broken, or in-progress?
375
+ **⚠️ Risks**: What could go wrong?
376
+ **💡 Recommendations**: What should happen next?
377
+ **📊 Metrics**: What numbers matter (performance, coverage, security)?
378
+ **🎯 Business Impact**: How does this affect revenue, users, or growth?
379
+
380
+ ---
381
+
382
+ ## When to Escalate
383
+
384
+ Bring in technical leadership when you see:
385
+ - Critical security vulnerabilities
386
+ - Repeated pattern of low-quality work
387
+ - Team velocity dropping significantly
388
+ - Major architectural decisions needed
389
+ - Regulatory compliance concerns
390
+ - Unresolved team conflicts affecting code
391
+
392
+ ---
393
+
394
+ **Remember**: Good code is clear, tested, secure, and maintainable. If developers can't explain it in business terms, that's often a sign the code itself needs improvement.
claude_mpm/cli/startup.py CHANGED
@@ -312,64 +312,56 @@ def deploy_output_style_on_startup():
312
312
  directory (~/.claude/output-styles/) which is the official Claude Code location
313
313
  for custom output styles.
314
314
 
315
- Deploys two styles:
315
+ Deploys all styles:
316
316
  - claude-mpm.md (professional mode)
317
317
  - claude-mpm-teacher.md (teaching mode)
318
+ - claude-mpm-founders.md (founders mode)
318
319
  """
319
320
  try:
320
- import shutil
321
- from pathlib import Path
321
+ from ..core.output_style_manager import OutputStyleManager
322
322
 
323
- # Source files (in framework package)
324
- package_dir = Path(__file__).parent.parent / "agents"
325
- professional_source = package_dir / "CLAUDE_MPM_OUTPUT_STYLE.md"
326
- teacher_source = package_dir / "CLAUDE_MPM_TEACHER_OUTPUT_STYLE.md"
327
-
328
- # Target directory (USER-LEVEL for global availability)
329
- # Claude Code reads output styles from ~/.claude/output-styles/
330
- user_home = Path.home()
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
-
335
- # Create directory if it doesn't exist
336
- output_styles_dir.mkdir(parents=True, exist_ok=True)
337
-
338
- # Check if already deployed AND up-to-date (compare sizes to detect changes)
339
- professional_up_to_date = (
340
- professional_target.exists()
341
- and professional_source.exists()
342
- and professional_target.stat().st_size == professional_source.stat().st_size
343
- )
344
- teacher_up_to_date = (
345
- teacher_target.exists()
346
- and teacher_source.exists()
347
- and teacher_target.stat().st_size == teacher_source.stat().st_size
348
- )
323
+ # Initialize the output style manager
324
+ manager = OutputStyleManager()
349
325
 
350
- if professional_up_to_date and teacher_up_to_date:
326
+ # Check if Claude Code version supports output styles (>= 1.0.83)
327
+ if not manager.supports_output_styles():
328
+ # Skip deployment for older versions
329
+ # The manager will fall back to injecting content directly
330
+ return
331
+
332
+ # Check if all styles are already deployed and up-to-date
333
+ all_up_to_date = True
334
+ for style_config in manager.styles.values():
335
+ source_path = style_config["source"]
336
+ target_path = style_config["target"]
337
+
338
+ if not (
339
+ target_path.exists()
340
+ and source_path.exists()
341
+ and target_path.stat().st_size == source_path.stat().st_size
342
+ ):
343
+ all_up_to_date = False
344
+ break
345
+
346
+ if all_up_to_date:
351
347
  # Show feedback that output styles are ready
352
348
  print("✓ Output styles ready", flush=True)
353
349
  return
354
350
 
355
- # Deploy both styles
356
- deployed_count = 0
357
- if professional_source.exists():
358
- shutil.copy2(professional_source, professional_target)
359
- deployed_count += 1
351
+ # Deploy all styles using the manager
352
+ results = manager.deploy_all_styles(activate_default=True)
360
353
 
361
- if teacher_source.exists():
362
- shutil.copy2(teacher_source, teacher_target)
363
- deployed_count += 1
354
+ # Count successful deployments
355
+ deployed_count = sum(1 for success in results.values() if success)
364
356
 
365
357
  if deployed_count > 0:
366
358
  print(f"✓ Output styles deployed ({deployed_count} styles)", flush=True)
367
359
  else:
368
- # Source files missing - log but don't fail
360
+ # Deployment failed - log but don't fail startup
369
361
  from ..core.logger import get_logger
370
362
 
371
363
  logger = get_logger("cli")
372
- logger.debug("Output style source files not found")
364
+ logger.debug("Failed to deploy any output styles")
373
365
 
374
366
  except Exception as e:
375
367
  # Non-critical - log but don't fail startup
@@ -27,7 +27,7 @@ _CACHED_CLAUDE_VERSION: Optional[str] = None
27
27
  _VERSION_DETECTED: bool = False
28
28
 
29
29
  # Output style types
30
- OutputStyleType = Literal["professional", "teaching"]
30
+ OutputStyleType = Literal["professional", "teaching", "founders"]
31
31
 
32
32
 
33
33
  class StyleConfig(TypedDict):
@@ -41,9 +41,10 @@ class StyleConfig(TypedDict):
41
41
  class OutputStyleManager:
42
42
  """Manages output style deployment and version-based handling.
43
43
 
44
- Supports two output styles:
44
+ Supports three output styles:
45
45
  - professional: Default Claude MPM style (claude-mpm.md)
46
46
  - teaching: Adaptive teaching mode (claude-mpm-teacher.md)
47
+ - founders: Non-technical mode for startup founders (claude-mpm-founders.md)
47
48
  """
48
49
 
49
50
  def __init__(self) -> None:
@@ -71,6 +72,13 @@ class OutputStyleManager:
71
72
  target=self.output_style_dir / "claude-mpm-teacher.md",
72
73
  name="Claude MPM Teacher",
73
74
  ),
75
+ "founders": StyleConfig(
76
+ source=Path(__file__).parent.parent
77
+ / "agents"
78
+ / "CLAUDE_MPM_FOUNDERS_OUTPUT_STYLE.md",
79
+ target=self.output_style_dir / "claude-mpm-founders.md",
80
+ name="Claude MPM Founders",
81
+ ),
74
82
  }
75
83
 
76
84
  # Default style path (for backward compatibility)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: claude-mpm
3
- Version: 5.4.83
3
+ Version: 5.4.84
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=SmSriwpxtB_4oESyhcAIR_2w8REB_ngYMY4CG3rVHGM,7
2
+ claude_mpm/VERSION,sha256=RPHLSIOUPieL9EOrJan8vzunFO1Z613AZQmZyDI0q2o,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
@@ -7,6 +7,7 @@ claude_mpm/init.py,sha256=7aQpqUrWwSckpNXvBrfGOeGYLl92b1Z-NipoXJRc0f4,26401
7
7
  claude_mpm/ticket_wrapper.py,sha256=qe5xY579t7_7fK5nyeAfHN_fr7CXdeOD3jfXEc8-7yo,828
8
8
  claude_mpm/agents/BASE_AGENT.md,sha256=UWvKX5S5L2l68F_sn54otC_HDX5kTt8G4ionUcTVpGo,5645
9
9
  claude_mpm/agents/BASE_ENGINEER.md,sha256=I7BusSGQfuV0uSkRBro51qzCzagUEPrXnndIElypPJk,24434
10
+ claude_mpm/agents/CLAUDE_MPM_FOUNDERS_OUTPUT_STYLE.md,sha256=gcxHN7IhtTqH5WRWAf-R_EIpRHF-PORK85zAa5pmeiw,12319
10
11
  claude_mpm/agents/CLAUDE_MPM_OUTPUT_STYLE.md,sha256=PmiEOcAcDVOPtCwiCPhNGWb8GVDnniftQO7MIi8yBWU,4174
11
12
  claude_mpm/agents/CLAUDE_MPM_TEACHER_OUTPUT_STYLE.md,sha256=vneNW5vHjfKsRIukkuGbAnvnyp_-EC3qpFzHDdsMOwc,4796
12
13
  claude_mpm/agents/MEMORY.md,sha256=V1mGx5oEaLdN9AYLX3Xetslmr2Ja6vnLPATeEoR6bvw,3303
@@ -41,7 +42,7 @@ claude_mpm/cli/chrome_devtools_installer.py,sha256=efA_ZX1iR3oaJi3222079BQw6DEG8
41
42
  claude_mpm/cli/executor.py,sha256=1MQdNPNoIewSR1q8nXjJuES3zKEi_IqVcZQzt9bsxw8,10601
42
43
  claude_mpm/cli/helpers.py,sha256=CypEhw0tbNH6_GzVTaQdi4w7ThCWO43Ep92YbJzPR4I,3638
43
44
  claude_mpm/cli/parser.py,sha256=Vqx9n-6Xo1uNhXR4rThmgWpZXTr0nOtkgDf3oMS9b0g,5855
44
- claude_mpm/cli/startup.py,sha256=A1w9YWPgP0cA8d_T8ymbAbGpP7UARkRvtRcKEbXNy24,62095
45
+ claude_mpm/cli/startup.py,sha256=rztiI5mopeHnRTn7WPivyZF4QDtHjuC-O-YhYvuw5I8,61638
45
46
  claude_mpm/cli/startup_display.py,sha256=R_QIamjfdaY5o_VxpIeymyYj1Qde2B9hPXy1P-KmUKI,14972
46
47
  claude_mpm/cli/startup_logging.py,sha256=RTuyd6CbhiFQz7Z07LDDhK_ZAnZfuJ9B0NghVSntHFI,29390
47
48
  claude_mpm/cli/utils.py,sha256=FSMPftBZM8MeUyTtiB63Lz7oFOgkzwTetQs58RbRb_Q,8785
@@ -206,7 +207,7 @@ claude_mpm/core/mixins.py,sha256=vmZ7Nu2ZOnKjbhN07Ixk4noIej9nsJiknrp-Sclfu0A,534
206
207
  claude_mpm/core/oneshot_session.py,sha256=nA86Zk7W3Rh_yIhPuegFL7Xgc9S63vQ_MqfLk52doV0,21994
207
208
  claude_mpm/core/optimized_agent_loader.py,sha256=yevEwTZWzVeZYEJhV3czD45OU7ukJIaJos4MGnFP7YQ,15857
208
209
  claude_mpm/core/optimized_startup.py,sha256=U5I4f7PNYXCBOLbCkbWT2V2sv01T8iWP2Bw-f928Q9M,17927
209
- claude_mpm/core/output_style_manager.py,sha256=QkH62HRCH6FYxg2lop_3Xml3BLOieE12024vAjS6SyI,17091
210
+ claude_mpm/core/output_style_manager.py,sha256=ynFLUliYKPuw3CWtTcJR7h0TDBE_5z2gwDT-XT_-Owk,17491
210
211
  claude_mpm/core/pm_hook_interceptor.py,sha256=92C8TrpK-XVQD8BiXbqs8lSCX72PU0KZG5oAjhf8GOQ,11197
211
212
  claude_mpm/core/service_registry.py,sha256=QpmAMWCov8XXaxQwE7WiNbgv6u_CRjpKPB64kLYvZKk,11722
212
213
  claude_mpm/core/session_manager.py,sha256=iEDZWKBYHSu001nFX8vFvH33RvQOW0eIgomWhFM53sw,12078
@@ -970,10 +971,10 @@ claude_mpm/utils/subprocess_utils.py,sha256=D0izRT8anjiUb_JG72zlJR_JAw1cDkb7kalN
970
971
  claude_mpm/validation/__init__.py,sha256=YZhwE3mhit-lslvRLuwfX82xJ_k4haZeKmh4IWaVwtk,156
971
972
  claude_mpm/validation/agent_validator.py,sha256=GprtAvu80VyMXcKGsK_VhYiXWA6BjKHv7O6HKx0AB9w,20917
972
973
  claude_mpm/validation/frontmatter_validator.py,sha256=YpJlYNNYcV8u6hIOi3_jaRsDnzhbcQpjCBE6eyBKaFY,7076
973
- claude_mpm-5.4.83.dist-info/licenses/LICENSE,sha256=ca3y_Rk4aPrbF6f62z8Ht5MJM9OAvbGlHvEDcj9vUQ4,3867
974
- claude_mpm-5.4.83.dist-info/licenses/LICENSE-FAQ.md,sha256=TxfEkXVCK98RzDOer09puc7JVCP_q_bN4dHtZKHCMcM,5104
975
- claude_mpm-5.4.83.dist-info/METADATA,sha256=L9tyI9gHshp4mzDHla_5Yx1JLMkZUDPMMb1Gezu4Gd0,38503
976
- claude_mpm-5.4.83.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
977
- claude_mpm-5.4.83.dist-info/entry_points.txt,sha256=n-Uk4vwHPpuvu-g_I7-GHORzTnN_m6iyOsoLveKKD0E,228
978
- claude_mpm-5.4.83.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
979
- claude_mpm-5.4.83.dist-info/RECORD,,
974
+ claude_mpm-5.4.84.dist-info/licenses/LICENSE,sha256=ca3y_Rk4aPrbF6f62z8Ht5MJM9OAvbGlHvEDcj9vUQ4,3867
975
+ claude_mpm-5.4.84.dist-info/licenses/LICENSE-FAQ.md,sha256=TxfEkXVCK98RzDOer09puc7JVCP_q_bN4dHtZKHCMcM,5104
976
+ claude_mpm-5.4.84.dist-info/METADATA,sha256=mXYhdkcOB3779gcXJpYrizksYyUQxqnJ1d4FtqHKroM,38503
977
+ claude_mpm-5.4.84.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
978
+ claude_mpm-5.4.84.dist-info/entry_points.txt,sha256=n-Uk4vwHPpuvu-g_I7-GHORzTnN_m6iyOsoLveKKD0E,228
979
+ claude_mpm-5.4.84.dist-info/top_level.txt,sha256=1nUg3FEaBySgm8t-s54jK5zoPnu3_eY6EP6IOlekyHA,11
980
+ claude_mpm-5.4.84.dist-info/RECORD,,