claude-mpm 5.9.46 → 5.9.47
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.
- package/README.md +46 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -256,9 +256,10 @@ claude-mpm oauth list
|
|
|
256
256
|
[→ Google Workspace Setup](docs/guides/oauth-setup.md) | [→ Notion Setup](docs/integrations/NOTION_SETUP.md) | [→ Confluence Setup](docs/integrations/CONFLUENCE_SETUP.md) | [→ Slack Setup](docs/integrations/SLACK_USER_PROXY_SETUP.md)
|
|
257
257
|
|
|
258
258
|
### ⚡ Performance & Security
|
|
259
|
+
- **Near-Instant Startup** — syncs agents and skills once per day; subsequent launches skip all network checks and start in ~100ms
|
|
259
260
|
- **Simplified Architecture** with ~3,700 lines removed for better performance
|
|
260
261
|
- **Enhanced Security** with comprehensive input validation
|
|
261
|
-
- **Intelligent Caching** with
|
|
262
|
+
- **Intelligent Caching** with hash-based invalidation and TTL-gated sync
|
|
262
263
|
- **Memory Management** with cleanup commands for large conversation histories
|
|
263
264
|
|
|
264
265
|
[→ Learn more: Architecture](docs/developer/ARCHITECTURE.md)
|
|
@@ -285,6 +286,12 @@ claude-mpm run --monitor
|
|
|
285
286
|
# Resume previous session
|
|
286
287
|
claude-mpm run --resume
|
|
287
288
|
|
|
289
|
+
# Force sync agents/skills from GitHub (overrides 24-hour TTL)
|
|
290
|
+
claude-mpm --force-sync
|
|
291
|
+
|
|
292
|
+
# Skip sync for maximum startup speed
|
|
293
|
+
claude-mpm --no-sync
|
|
294
|
+
|
|
288
295
|
# Semantic code search
|
|
289
296
|
claude-mpm search "authentication logic"
|
|
290
297
|
# or inside Claude Code:
|
|
@@ -300,12 +307,50 @@ claude-mpm verify
|
|
|
300
307
|
claude-mpm cleanup-memory
|
|
301
308
|
```
|
|
302
309
|
|
|
310
|
+
**💡 Startup Performance**: Claude MPM syncs agents and skills once per day. Subsequent launches are near-instant (~100ms). Use `--force-sync` to pull the latest content immediately or set `CLAUDE_MPM_SYNC_TTL` (seconds) to customize the sync interval.
|
|
311
|
+
|
|
303
312
|
**💡 Update Checking**: Claude MPM automatically checks for updates and verifies Claude Code compatibility on startup. Configure in `~/.claude-mpm/configuration.yaml` or see [docs/update-checking.md](docs/update-checking.md).
|
|
304
313
|
|
|
305
314
|
[→ Complete usage examples: User Guide](docs/user/user-guide.md)
|
|
306
315
|
|
|
307
316
|
---
|
|
308
317
|
|
|
318
|
+
## What's New in v5.9.46
|
|
319
|
+
|
|
320
|
+
### Near-Instant Startup (Daily Sync)
|
|
321
|
+
|
|
322
|
+
Starting in v5.9.46, Claude MPM syncs agents and skills **once per day** instead of checking GitHub on every launch. Subsequent startups skip all network requests and launch in approximately 100ms.
|
|
323
|
+
|
|
324
|
+
**Before**: 500ms–2s on every launch (HTTP HEAD requests to GitHub for each file).
|
|
325
|
+
**After**: ~100ms after the first daily sync (no network activity).
|
|
326
|
+
|
|
327
|
+
```bash
|
|
328
|
+
# Normal launch — uses cached content if synced within 24 hours
|
|
329
|
+
claude-mpm
|
|
330
|
+
|
|
331
|
+
# Force an immediate sync of agents and skills from GitHub
|
|
332
|
+
claude-mpm --force-sync
|
|
333
|
+
|
|
334
|
+
# Skip sync entirely (use cached content regardless of age)
|
|
335
|
+
claude-mpm --no-sync
|
|
336
|
+
```
|
|
337
|
+
|
|
338
|
+
**Configuration**: Override the 24-hour default with the `CLAUDE_MPM_SYNC_TTL` environment variable (value in seconds):
|
|
339
|
+
|
|
340
|
+
```bash
|
|
341
|
+
# Sync every 12 hours instead of 24
|
|
342
|
+
export CLAUDE_MPM_SYNC_TTL=43200
|
|
343
|
+
|
|
344
|
+
# Sync every 7 days
|
|
345
|
+
export CLAUDE_MPM_SYNC_TTL=604800
|
|
346
|
+
```
|
|
347
|
+
|
|
348
|
+
Sync state is stored in `~/.claude-mpm/cache/sync-state.json`. All five startup skill operations — bundled deploy, remote sync, discovery, summary, and PM skills verify — are gated and only run when content has actually changed.
|
|
349
|
+
|
|
350
|
+
[→ Full sync documentation: Agent Synchronization Guide](docs/guides/agent-synchronization.md)
|
|
351
|
+
|
|
352
|
+
---
|
|
353
|
+
|
|
309
354
|
## What's New in v5.0
|
|
310
355
|
|
|
311
356
|
### Git Repository Integration for Agents & Skills
|
package/package.json
CHANGED