@alex900530/claude-persistent-memory 1.0.2 → 1.0.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.
Files changed (2) hide show
  1. package/bin/setup.js +2 -2
  2. package/package.json +1 -1
package/bin/setup.js CHANGED
@@ -152,9 +152,9 @@ function setupHooks() {
152
152
  return true;
153
153
  });
154
154
 
155
- // Add new format entry
155
+ // Add new format entry (matcher: "" means match all)
156
156
  const hookCmd = { type: 'command', command };
157
- existing.hooks[event].push({ matcher: {}, hooks: [hookCmd] });
157
+ existing.hooks[event].push({ matcher: '', hooks: [hookCmd] });
158
158
  }
159
159
 
160
160
  writeJSON(SETTINGS_FILE, existing);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alex900530/claude-persistent-memory",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Persistent memory system for Claude Code — hybrid BM25 + vector search, LLM-driven structuring, automatic clustering",
5
5
  "main": "lib/memory-db.js",
6
6
  "bin": {