@pcircle/memesh 4.2.4 → 4.2.5
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/.claude-plugin/marketplace.json +1 -1
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +20 -0
- package/dashboard/dist/index.html +7 -7
- package/dist/core/doctor.d.ts +6 -0
- package/dist/core/doctor.d.ts.map +1 -1
- package/dist/core/doctor.js +33 -1
- package/dist/core/doctor.js.map +1 -1
- package/dist/core/install-channel.d.ts +1 -1
- package/dist/core/install-channel.d.ts.map +1 -1
- package/dist/core/install-channel.js +15 -0
- package/dist/core/install-channel.js.map +1 -1
- package/dist/skills-manifest.json +6 -6
- package/package.json +2 -1
- package/scripts/hooks/_shared.js +86 -0
- package/scripts/hooks/session-start.js +131 -6
- package/scripts/upgrade-plugin.sh +170 -0
package/README.md
CHANGED
|
@@ -343,6 +343,26 @@ Core is framework-agnostic. Same logic runs from terminal, HTTP, or MCP.
|
|
|
343
343
|
|
|
344
344
|
---
|
|
345
345
|
|
|
346
|
+
## Upgrading
|
|
347
|
+
|
|
348
|
+
Claude Code's plugin marketplace pins versions at install time and does **not** auto-update. To pick up a new release:
|
|
349
|
+
|
|
350
|
+
**Option A — `/plugin` UI**: uninstall `memesh@pcircle-memesh`, then reinstall. Claude Code fetches the latest marketplace version.
|
|
351
|
+
|
|
352
|
+
**Option B — one-line script** (no UI clicking, idempotent):
|
|
353
|
+
|
|
354
|
+
```bash
|
|
355
|
+
bash ~/.claude/plugins/cache/pcircle-memesh/memesh/<current-version>/scripts/upgrade-plugin.sh
|
|
356
|
+
```
|
|
357
|
+
|
|
358
|
+
The script fast-forwards the marketplace cache, stages the new version under `~/.claude/plugins/cache/`, installs runtime deps, and re-points `installed_plugins.json`. Restart Claude Code afterwards so the MCP server reconnects.
|
|
359
|
+
|
|
360
|
+
**npm-global installs** (`npm install -g @pcircle/memesh`) can self-update via `memesh update`. Source checkouts: `git pull && npm install && npm run build`.
|
|
361
|
+
|
|
362
|
+
Session start surfaces a one-line banner (throttled to once per 24h per version) when a newer release is available, and `memesh doctor` reports the upgrade target with the channel-specific command.
|
|
363
|
+
|
|
364
|
+
---
|
|
365
|
+
|
|
346
366
|
## Contributing
|
|
347
367
|
|
|
348
368
|
```bash
|