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.
package/package.json
CHANGED
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'],
|