tuna-agent 0.1.33 → 0.1.34
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.
|
@@ -23,6 +23,7 @@ export class ClaudeCodeAdapter {
|
|
|
23
23
|
avgDurationMs: 0,
|
|
24
24
|
reflectionCount: 0,
|
|
25
25
|
reflectionSkipCount: 0,
|
|
26
|
+
memoryCount: 0,
|
|
26
27
|
patternsLearnedCount: 0,
|
|
27
28
|
rulesCount: 0,
|
|
28
29
|
lastTaskAt: null,
|
|
@@ -727,6 +728,7 @@ export class ClaudeCodeAdapter {
|
|
|
727
728
|
console.log(`[Reflection] Storing: "${aiReflection.substring(0, 100)}..."`);
|
|
728
729
|
await callMem0AddMemory(aiReflection, this.agentConfig.name);
|
|
729
730
|
this.metrics.reflectionCount++;
|
|
731
|
+
this.metrics.memoryCount++;
|
|
730
732
|
this.metrics.lastReflectionAt = new Date().toISOString();
|
|
731
733
|
console.log(`[Reflection] Stored for task ${task.id}`);
|
|
732
734
|
}
|