tuna-agent 0.1.57 → 0.1.58
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.
|
@@ -57,6 +57,7 @@ export class ClaudeCodeAdapter {
|
|
|
57
57
|
this.currentAgentId = savedId;
|
|
58
58
|
});
|
|
59
59
|
const agentMetricsMap = {};
|
|
60
|
+
// Include agents from metricsMap
|
|
60
61
|
this.metricsMap.forEach((m, agentId) => {
|
|
61
62
|
const entry = { ...m };
|
|
62
63
|
const rules = this.learnedRulesMap.get(agentId);
|
|
@@ -65,6 +66,12 @@ export class ClaudeCodeAdapter {
|
|
|
65
66
|
}
|
|
66
67
|
agentMetricsMap[agentId] = entry;
|
|
67
68
|
});
|
|
69
|
+
// Include agents that have rules but no metrics yet (no task dispatched since restart)
|
|
70
|
+
this.learnedRulesMap.forEach((rules, agentId) => {
|
|
71
|
+
if (!agentMetricsMap[agentId] && rules.length > 0) {
|
|
72
|
+
agentMetricsMap[agentId] = { learnedRules: rules, rulesCount: rules.length };
|
|
73
|
+
}
|
|
74
|
+
});
|
|
68
75
|
return { agentMetricsMap };
|
|
69
76
|
}
|
|
70
77
|
/** Register an agent folder path for rules parsing (called from daemon). */
|