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.
@@ -9,6 +9,7 @@ export interface AgentMetrics {
9
9
  avgDurationMs: number;
10
10
  reflectionCount: number;
11
11
  reflectionSkipCount: number;
12
+ memoryCount: number;
12
13
  patternsLearnedCount: number;
13
14
  rulesCount: number;
14
15
  lastTaskAt: string | null;
@@ -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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tuna-agent",
3
- "version": "0.1.33",
3
+ "version": "0.1.34",
4
4
  "description": "Tuna Agent - Run AI coding tasks on your machine",
5
5
  "bin": {
6
6
  "tuna-agent": "dist/cli/index.js"