claude-mem 12.7.2 → 12.7.3
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 +1 -1
- package/.mcp.json +1 -1
- package/dist/binaries/worker-service-v10.3.1-win-x64.exe +0 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +8 -0
- package/dist/npx-cli/index.js +105 -105
- package/dist/sdk/index.d.ts +109 -0
- package/dist/sdk/index.js +183 -0
- package/openclaw/openclaw.plugin.json +1 -1
- package/package.json +2 -1
- package/plugin/.claude-plugin/plugin.json +1 -1
- package/plugin/.codex-plugin/plugin.json +1 -1
- package/plugin/.mcp.json +1 -1
- package/plugin/hooks/codex-hooks.json +7 -7
- package/plugin/hooks/hooks.json +7 -7
- package/plugin/package.json +1 -1
- package/plugin/scripts/context-generator.cjs +89 -81
- package/plugin/scripts/mcp-server.cjs +26 -26
- package/plugin/scripts/version-check.js +22 -2
- package/plugin/scripts/worker-service.cjs +228 -215
- package/plugin/skills/version-bump/SKILL.md +6 -1
|
@@ -48,7 +48,11 @@ description: Automated semantic versioning and release workflow for Claude Code
|
|
|
48
48
|
```
|
|
49
49
|
(Runs `node scripts/generate-changelog.js`, which pulls releases from the GitHub API and rewrites `CHANGELOG.md`.)
|
|
50
50
|
10. **Sync changelog**: Commit and push the updated `CHANGELOG.md`.
|
|
51
|
-
11. **Notify**:
|
|
51
|
+
11. **Notify**: Run the Discord notification from `~/Scripts/claude-mem/`, where the `.env` with Discord webhook details lives:
|
|
52
|
+
```bash
|
|
53
|
+
cd ~/Scripts/claude-mem/ && npm run discord:notify vX.Y.Z
|
|
54
|
+
```
|
|
55
|
+
Do this even when the release worktree does not have a local `.env`.
|
|
52
56
|
12. **Finalize**: `git status` — working tree must be clean.
|
|
53
57
|
|
|
54
58
|
## Checklist
|
|
@@ -60,4 +64,5 @@ description: Automated semantic versioning and release workflow for Claude Code
|
|
|
60
64
|
- [ ] **`npm publish` succeeded and `npm view claude-mem@X.Y.Z version` confirms it** (so `npx claude-mem@X.Y.Z` resolves)
|
|
61
65
|
- [ ] GitHub release created with notes
|
|
62
66
|
- [ ] `CHANGELOG.md` updated and pushed
|
|
67
|
+
- [ ] Discord notification run from `~/Scripts/claude-mem/`
|
|
63
68
|
- [ ] `git status` shows clean tree
|