claude-mem-lite 2.48.0 → 2.49.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.
@@ -10,7 +10,7 @@
10
10
  "plugins": [
11
11
  {
12
12
  "name": "claude-mem-lite",
13
- "version": "2.48.0",
13
+ "version": "2.49.0",
14
14
  "source": "./",
15
15
  "description": "Lightweight persistent memory system for Claude Code — FTS5 search, episode batching, error-triggered recall"
16
16
  }
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem-lite",
3
- "version": "2.48.0",
3
+ "version": "2.49.0",
4
4
  "description": "Lightweight persistent memory system for Claude Code — FTS5 search, episode batching, error-triggered recall",
5
5
  "author": {
6
6
  "name": "sdsrss"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-mem-lite",
3
- "version": "2.48.0",
3
+ "version": "2.49.0",
4
4
  "description": "Lightweight persistent memory system for Claude Code",
5
5
  "type": "module",
6
6
  "engines": {
package/synonyms.mjs CHANGED
@@ -71,6 +71,17 @@ export const SYNONYM_PAIRS = [
71
71
  ['debug', 'troubleshoot'],
72
72
  ['error', 'failure'],
73
73
  ['migrate', 'migration'],
74
+ // ─── React Hook API bridge ───
75
+ // Without these, `React hooks` AND-query misses obs where only a specific hook API
76
+ // is mentioned (useEffect/useState/...). Scope kept to the 6 canonical React hook APIs;
77
+ // deliberately NOT bridging `react` ↔ `jsx`/`component` (too broad — would hurt precision).
78
+ ['hook', 'hooks'],
79
+ ['hooks', 'useState'],
80
+ ['hooks', 'useEffect'],
81
+ ['hooks', 'useCallback'],
82
+ ['hooks', 'useMemo'],
83
+ ['hooks', 'useRef'],
84
+ ['hooks', 'useContext'],
74
85
  // ─── Concurrency & Async ───
75
86
  ['promise', 'async'],
76
87
  ['callback', 'handler'],