claude-recall 0.20.4 → 0.20.5
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/.claude/skills/auto-corrections/SKILL.md +2 -1
- package/.claude/skills/auto-corrections/manifest.json +4 -3
- package/.claude/skills/auto-preferences/SKILL.md +6 -1
- package/.claude/skills/auto-preferences/manifest.json +8 -3
- package/dist/hooks/tool-outcome-watcher.js +1 -0
- package/package.json +1 -1
|
@@ -8,7 +8,7 @@ source: claude-recall
|
|
|
8
8
|
|
|
9
9
|
# Corrections
|
|
10
10
|
|
|
11
|
-
Auto-generated from
|
|
11
|
+
Auto-generated from 12 memories. Last updated: 2026-04-02.
|
|
12
12
|
|
|
13
13
|
## Rules
|
|
14
14
|
|
|
@@ -21,6 +21,7 @@ Auto-generated from 11 memories. Last updated: 2026-04-02.
|
|
|
21
21
|
- CORRECTION: Memory with complex metadata
|
|
22
22
|
- CORRECTION: Memory with complex metadata
|
|
23
23
|
- CORRECTION: Memory with complex metadata
|
|
24
|
+
- CORRECTION: Memory with complex metadata
|
|
24
25
|
- CORRECTION: License copyright should include user's name instead of 'Claude Recall Contributors'
|
|
25
26
|
- CORRECTION: License copyright should list your name instead of 'Claude Recall Contributors'
|
|
26
27
|
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"topicId": "corrections",
|
|
3
|
-
"sourceHash": "
|
|
4
|
-
"memoryCount":
|
|
5
|
-
"generatedAt": "2026-04-02T22:
|
|
3
|
+
"sourceHash": "10b0ac995ebe0c54ad0a5972f28ba4a63e3429879bfb5aa92add0e616711aa33",
|
|
4
|
+
"memoryCount": 12,
|
|
5
|
+
"generatedAt": "2026-04-02T22:43:06.559Z",
|
|
6
6
|
"memoryKeys": [
|
|
7
|
+
"memory_1775169786543_43p8to1hu",
|
|
7
8
|
"memory_1775169704632_wzwczltzu",
|
|
8
9
|
"memory_1775169639101_rmxkftqtk",
|
|
9
10
|
"memory_1775169273281_4fod7ku6f",
|
|
@@ -8,10 +8,15 @@ source: claude-recall
|
|
|
8
8
|
|
|
9
9
|
# Preferences
|
|
10
10
|
|
|
11
|
-
Auto-generated from
|
|
11
|
+
Auto-generated from 54 memories. Last updated: 2026-04-02.
|
|
12
12
|
|
|
13
13
|
## Rules
|
|
14
14
|
|
|
15
|
+
- Session test preference 1775169786712
|
|
16
|
+
- Test preference 1775169786565-2
|
|
17
|
+
- Test preference 1775169786565-1
|
|
18
|
+
- Test preference 1775169786565-0
|
|
19
|
+
- Test memory content
|
|
15
20
|
- Session test preference 1775169704849
|
|
16
21
|
- Test preference 1775169704668-2
|
|
17
22
|
- Test preference 1775169704668-1
|
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"topicId": "preferences",
|
|
3
|
-
"sourceHash": "
|
|
4
|
-
"memoryCount":
|
|
5
|
-
"generatedAt": "2026-04-02T22:
|
|
3
|
+
"sourceHash": "d953115f40d7e590f2e4b1b034582b78ba1f1faa0d1521a6e107538ad328327d",
|
|
4
|
+
"memoryCount": 54,
|
|
5
|
+
"generatedAt": "2026-04-02T22:43:06.764Z",
|
|
6
6
|
"memoryKeys": [
|
|
7
|
+
"memory_1775169786717_1zmwoe6ai",
|
|
8
|
+
"memory_1775169786630_rdudb8hbc",
|
|
9
|
+
"memory_1775169786589_zurej1v51",
|
|
10
|
+
"memory_1775169786567_3esvhc01j",
|
|
11
|
+
"memory_1775169786460_vugzw5yl0",
|
|
7
12
|
"memory_1775169704852_ezdebznpz",
|
|
8
13
|
"memory_1775169704771_ak9vkaswc",
|
|
9
14
|
"memory_1775169704739_dg78h7lte",
|
|
@@ -271,6 +271,7 @@ async function handleBashSuccess(command, sessionId) {
|
|
|
271
271
|
});
|
|
272
272
|
recordOutcomeEvent('Bash', { command }, `Success after previous failure: ${truncate(pf.command, 100)}`, 0);
|
|
273
273
|
(0, shared_1.hookLog)(HOOK_NAME, `Paired fix: "${truncate(command, 60)}" → ${pf.memoryKey}`);
|
|
274
|
+
console.log(`✅ Recall: fix paired — "${truncate(command, 40)}" (learned from previous failure)`);
|
|
274
275
|
matched = true;
|
|
275
276
|
}
|
|
276
277
|
catch (err) {
|
package/package.json
CHANGED