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.
@@ -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` automatically. Confirm publish succeeded:
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