claude-mem 12.7.4 → 13.0.0
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/.codex-plugin/plugin.json +2 -2
- package/LICENSE +202 -630
- package/README.md +10 -13
- package/dist/npx-cli/index.js +219 -208
- package/openclaw/openclaw.plugin.json +4 -3
- package/openclaw/package.json +1 -0
- package/package.json +12 -4
- package/plugin/.claude-plugin/plugin.json +2 -2
- package/plugin/.codex-plugin/plugin.json +2 -2
- package/plugin/package.json +1 -1
- package/plugin/scripts/context-generator.cjs +42 -42
- package/plugin/scripts/mcp-server.cjs +26 -26
- package/plugin/scripts/server-beta-service.cjs +9655 -0
- package/plugin/scripts/worker-service.cjs +10061 -445
- package/plugin/skills/version-bump/SKILL.md +3 -3
- package/plugin/ui/viewer-bundle.js +2 -2
- package/dist/binaries/worker-service-v10.3.1-win-x64.exe +0 -0
- package/dist/index.d.ts +0 -7
- package/dist/index.js +0 -8
- package/dist/sdk/index.d.ts +0 -109
- package/dist/sdk/index.js +0 -183
|
@@ -28,7 +28,7 @@ description: Automated semantic versioning and release workflow for Claude Code
|
|
|
28
28
|
|
|
29
29
|
1. **Update**: Increment the version string in every path above. Do NOT touch `CHANGELOG.md` — it's regenerated.
|
|
30
30
|
2. **Verify**: `git grep -n "\"version\": \"<NEW>\""` — confirm all seven files match. `git grep -n "\"version\": \"<OLD>\""` — should return zero hits.
|
|
31
|
-
3. **Build**: `npm run build` to regenerate artifacts.
|
|
31
|
+
3. **Build and sync**: `npm run build-and-sync` to regenerate artifacts, sync the local marketplace copy, restart the worker, and clear the queue. Do not use plain `npm run build` for release validation because it can leave the local marketplace/worker out of sync.
|
|
32
32
|
4. **Commit**: `git add -A && git commit -m "chore: bump version to X.Y.Z"`.
|
|
33
33
|
5. **Tag**: `git tag -a vX.Y.Z -m "Version X.Y.Z"`.
|
|
34
34
|
6. **Push**: `git push origin main && git push origin vX.Y.Z`.
|
|
@@ -36,7 +36,7 @@ description: Automated semantic versioning and release workflow for Claude Code
|
|
|
36
36
|
```bash
|
|
37
37
|
npm publish
|
|
38
38
|
```
|
|
39
|
-
The `prepublishOnly` script re-runs `npm run build`
|
|
39
|
+
The `prepublishOnly` script re-runs the package build automatically. After publish, run `npm run build-and-sync` again if the publish build touched local artifacts. Confirm publish succeeded:
|
|
40
40
|
```bash
|
|
41
41
|
npm view claude-mem@X.Y.Z version # should print X.Y.Z
|
|
42
42
|
```
|
|
@@ -59,7 +59,7 @@ description: Automated semantic versioning and release workflow for Claude Code
|
|
|
59
59
|
|
|
60
60
|
- [ ] All seven config files have matching versions
|
|
61
61
|
- [ ] `git grep` for old version returns zero hits
|
|
62
|
-
- [ ] `npm run build` succeeded
|
|
62
|
+
- [ ] `npm run build-and-sync` succeeded
|
|
63
63
|
- [ ] Git tag created and pushed
|
|
64
64
|
- [ ] **`npm publish` succeeded and `npm view claude-mem@X.Y.Z version` confirms it** (so `npx claude-mem@X.Y.Z` resolves)
|
|
65
65
|
- [ ] GitHub release created with notes
|