@cleocode/core 2026.3.57 → 2026.3.59
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/dist/agents/agent-registry.d.ts +206 -0
- package/dist/agents/agent-registry.d.ts.map +1 -0
- package/dist/agents/agent-schema.d.ts.map +1 -1
- package/dist/agents/execution-learning.d.ts +223 -0
- package/dist/agents/execution-learning.d.ts.map +1 -0
- package/dist/agents/health-monitor.d.ts +161 -0
- package/dist/agents/health-monitor.d.ts.map +1 -0
- package/dist/agents/index.d.ts +4 -1
- package/dist/agents/index.d.ts.map +1 -1
- package/dist/agents/retry.d.ts +57 -4
- package/dist/agents/retry.d.ts.map +1 -1
- package/dist/backfill/index.d.ts +83 -0
- package/dist/backfill/index.d.ts.map +1 -0
- package/dist/bootstrap.d.ts +1 -1
- package/dist/config.d.ts +47 -0
- package/dist/config.d.ts.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +6985 -5068
- package/dist/index.js.map +4 -4
- package/dist/intelligence/adaptive-validation.d.ts +151 -0
- package/dist/intelligence/adaptive-validation.d.ts.map +1 -0
- package/dist/intelligence/impact.d.ts +34 -1
- package/dist/intelligence/impact.d.ts.map +1 -1
- package/dist/intelligence/index.d.ts +7 -2
- package/dist/intelligence/index.d.ts.map +1 -1
- package/dist/intelligence/types.d.ts +60 -0
- package/dist/intelligence/types.d.ts.map +1 -1
- package/dist/internal.d.ts +8 -4
- package/dist/internal.d.ts.map +1 -1
- package/dist/lib/index.d.ts +10 -0
- package/dist/lib/index.d.ts.map +1 -0
- package/dist/lib/retry.d.ts +128 -0
- package/dist/lib/retry.d.ts.map +1 -0
- package/dist/nexus/sharing/index.d.ts +48 -2
- package/dist/nexus/sharing/index.d.ts.map +1 -1
- package/dist/sessions/session-enforcement.d.ts.map +1 -1
- package/dist/stats/index.d.ts +1 -0
- package/dist/stats/index.d.ts.map +1 -1
- package/dist/stats/workflow-telemetry.d.ts +89 -0
- package/dist/stats/workflow-telemetry.d.ts.map +1 -0
- package/dist/store/brain-schema.d.ts.map +1 -1
- package/dist/store/converters.d.ts.map +1 -1
- package/dist/store/cross-db-cleanup.d.ts +93 -0
- package/dist/store/cross-db-cleanup.d.ts.map +1 -0
- package/dist/store/db-helpers.d.ts.map +1 -1
- package/dist/store/migration-sqlite.d.ts.map +1 -1
- package/dist/store/sqlite-data-accessor.d.ts.map +1 -1
- package/dist/store/sqlite.d.ts.map +1 -1
- package/dist/store/task-store.d.ts.map +1 -1
- package/dist/store/tasks-schema.d.ts +18 -3
- package/dist/store/tasks-schema.d.ts.map +1 -1
- package/dist/store/validation-schemas.d.ts +32 -0
- package/dist/store/validation-schemas.d.ts.map +1 -1
- package/dist/tasks/add.d.ts +10 -1
- package/dist/tasks/add.d.ts.map +1 -1
- package/dist/tasks/complete.d.ts.map +1 -1
- package/dist/tasks/enforcement.d.ts +22 -0
- package/dist/tasks/enforcement.d.ts.map +1 -0
- package/dist/tasks/epic-enforcement.d.ts +199 -0
- package/dist/tasks/epic-enforcement.d.ts.map +1 -0
- package/dist/tasks/index.d.ts +1 -1
- package/dist/tasks/index.d.ts.map +1 -1
- package/dist/tasks/pipeline-stage.d.ts +181 -0
- package/dist/tasks/pipeline-stage.d.ts.map +1 -0
- package/dist/tasks/update.d.ts +2 -0
- package/dist/tasks/update.d.ts.map +1 -1
- package/migrations/drizzle-brain/20260321000001_t033-brain-indexes/migration.sql +12 -0
- package/migrations/drizzle-brain/20260321000001_t033-brain-indexes/snapshot.json +1232 -0
- package/migrations/drizzle-tasks/20260321000000_t033-connection-health/migration.sql +518 -0
- package/migrations/drizzle-tasks/20260321000000_t033-connection-health/snapshot.json +4312 -0
- package/migrations/drizzle-tasks/20260321000002_t060-pipeline-stage-binding/migration.sql +82 -0
- package/migrations/drizzle-tasks/20260321000002_t060-pipeline-stage-binding/snapshot.json +9 -0
- package/package.json +5 -5
- package/schemas/config.schema.json +37 -1547
- package/src/__tests__/sharing.test.ts +24 -0
- package/src/agents/__tests__/agent-registry.test.ts +351 -0
- package/src/agents/__tests__/execution-learning.test.ts +684 -0
- package/src/agents/__tests__/health-monitor.test.ts +332 -0
- package/src/agents/__tests__/registry.test.ts +30 -2
- package/src/agents/agent-registry.ts +394 -0
- package/src/agents/agent-schema.ts +5 -0
- package/src/agents/execution-learning.ts +675 -0
- package/src/agents/health-monitor.ts +279 -0
- package/src/agents/index.ts +37 -1
- package/src/agents/retry.ts +57 -4
- package/src/backfill/index.ts +309 -0
- package/src/bootstrap.ts +1 -1
- package/src/config.ts +126 -0
- package/src/index.ts +8 -1
- package/src/intelligence/__tests__/adaptive-validation.test.ts +694 -0
- package/src/intelligence/__tests__/impact.test.ts +165 -1
- package/src/intelligence/adaptive-validation.ts +764 -0
- package/src/intelligence/impact.ts +203 -0
- package/src/intelligence/index.ts +19 -0
- package/src/intelligence/types.ts +76 -0
- package/src/internal.ts +39 -0
- package/src/lib/__tests__/retry.test.ts +321 -0
- package/src/lib/index.ts +16 -0
- package/src/lib/retry.ts +224 -0
- package/src/lifecycle/__tests__/chain-store.test.ts +7 -0
- package/src/lifecycle/__tests__/tessera-engine.test.ts +52 -0
- package/src/nexus/sharing/index.ts +142 -2
- package/src/sessions/__tests__/session-edge-cases.test.ts +24 -1
- package/src/sessions/session-enforcement.ts +13 -2
- package/src/stats/index.ts +7 -0
- package/src/stats/workflow-telemetry.ts +502 -0
- package/src/store/__tests__/migration-safety.test.ts +3 -0
- package/src/store/__tests__/session-store.test.ts +132 -1
- package/src/store/__tests__/task-store.test.ts +22 -1
- package/src/store/__tests__/test-db-helper.ts +29 -2
- package/src/store/brain-schema.ts +4 -1
- package/src/store/converters.ts +2 -0
- package/src/store/cross-db-cleanup.ts +192 -0
- package/src/store/db-helpers.ts +2 -0
- package/src/store/migration-sqlite.ts +6 -0
- package/src/store/sqlite-data-accessor.ts +20 -28
- package/src/store/sqlite.ts +14 -2
- package/src/store/task-store.ts +6 -0
- package/src/store/tasks-schema.ts +59 -20
- package/src/tasks/__tests__/add.test.ts +16 -0
- package/src/tasks/__tests__/complete-unblocks.test.ts +10 -1
- package/src/tasks/__tests__/complete.test.ts +11 -2
- package/src/tasks/__tests__/epic-enforcement.test.ts +909 -0
- package/src/tasks/__tests__/minimal-test.test.ts +28 -0
- package/src/tasks/__tests__/pipeline-stage.test.ts +403 -0
- package/src/tasks/__tests__/update.test.ts +40 -6
- package/src/tasks/add.ts +128 -2
- package/src/tasks/complete.ts +29 -17
- package/src/tasks/enforcement.ts +127 -0
- package/src/tasks/epic-enforcement.ts +364 -0
- package/src/tasks/index.ts +1 -0
- package/src/tasks/pipeline-stage.ts +293 -0
- package/src/tasks/update.ts +62 -0
- package/templates/config.template.json +34 -111
- package/templates/global-config.template.json +24 -40
|
@@ -0,0 +1,394 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Agent registry with capacity tracking for load balancing.
|
|
3
|
+
*
|
|
4
|
+
* Provides task-count-based capacity queries, specialization lookup,
|
|
5
|
+
* and performance recording on top of the existing `agent_instances` schema.
|
|
6
|
+
*
|
|
7
|
+
* Capacity model: each agent has a maximum of {@link MAX_TASKS_PER_AGENT}
|
|
8
|
+
* concurrent tasks. "Remaining capacity" is that constant minus the number of
|
|
9
|
+
* tasks currently assigned to an active agent instance.
|
|
10
|
+
*
|
|
11
|
+
* Specializations are stored as a `specializations` array inside the agent's
|
|
12
|
+
* `metadata_json` column. Use {@link updateAgentSpecializations} to write them.
|
|
13
|
+
*
|
|
14
|
+
* Performance recording delegates to the existing `recordAgentExecution`
|
|
15
|
+
* function in `execution-learning.ts` and wraps it with a simpler metrics
|
|
16
|
+
* interface suited for load-balancer callers.
|
|
17
|
+
*
|
|
18
|
+
* @module agents/agent-registry
|
|
19
|
+
* @task T041
|
|
20
|
+
* @epic T038
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
import { and, eq, inArray } from 'drizzle-orm';
|
|
24
|
+
import { getDb } from '../store/sqlite.js';
|
|
25
|
+
import { type AgentInstanceRow, type AgentType, agentInstances } from './agent-schema.js';
|
|
26
|
+
import {
|
|
27
|
+
type AgentExecutionEvent,
|
|
28
|
+
type AgentExecutionOutcome,
|
|
29
|
+
recordAgentExecution,
|
|
30
|
+
} from './execution-learning.js';
|
|
31
|
+
import { listAgentInstances } from './registry.js';
|
|
32
|
+
|
|
33
|
+
// ============================================================================
|
|
34
|
+
// Constants
|
|
35
|
+
// ============================================================================
|
|
36
|
+
|
|
37
|
+
/**
|
|
38
|
+
* Maximum number of tasks that can be concurrently assigned to one agent.
|
|
39
|
+
* Used as the upper bound for task-count-based capacity calculation.
|
|
40
|
+
*/
|
|
41
|
+
export const MAX_TASKS_PER_AGENT = 5;
|
|
42
|
+
|
|
43
|
+
// ============================================================================
|
|
44
|
+
// Types
|
|
45
|
+
// ============================================================================
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Task-count-based capacity for a single agent instance.
|
|
49
|
+
*/
|
|
50
|
+
export interface AgentCapacity {
|
|
51
|
+
/** Agent instance ID. */
|
|
52
|
+
agentId: string;
|
|
53
|
+
/** Agent type classification. */
|
|
54
|
+
agentType: AgentType;
|
|
55
|
+
/** Current status of the agent. */
|
|
56
|
+
status: AgentInstanceRow['status'];
|
|
57
|
+
/** Number of tasks currently assigned to this agent. */
|
|
58
|
+
activeTasks: number;
|
|
59
|
+
/** Number of additional tasks this agent can accept (max - active). */
|
|
60
|
+
remainingCapacity: number;
|
|
61
|
+
/** Maximum tasks this agent can hold ({@link MAX_TASKS_PER_AGENT}). */
|
|
62
|
+
maxCapacity: number;
|
|
63
|
+
/** Whether this agent can accept new tasks. */
|
|
64
|
+
available: boolean;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* Metrics provided when recording agent performance.
|
|
69
|
+
*/
|
|
70
|
+
export interface AgentPerformanceMetrics {
|
|
71
|
+
/** Task ID that was processed. */
|
|
72
|
+
taskId: string;
|
|
73
|
+
/** Task type label (e.g. "epic", "task", "subtask"). */
|
|
74
|
+
taskType: string;
|
|
75
|
+
/** Outcome of the agent's work on the task. */
|
|
76
|
+
outcome: AgentExecutionOutcome;
|
|
77
|
+
/** Optional task labels for richer pattern classification. */
|
|
78
|
+
taskLabels?: string[];
|
|
79
|
+
/** Session ID the agent was operating under. */
|
|
80
|
+
sessionId?: string;
|
|
81
|
+
/** Duration of execution in milliseconds. */
|
|
82
|
+
durationMs?: number;
|
|
83
|
+
/** Error message if outcome is "failure". */
|
|
84
|
+
errorMessage?: string;
|
|
85
|
+
/** Error classification if outcome is "failure". */
|
|
86
|
+
errorType?: 'retriable' | 'permanent' | 'unknown';
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
// ============================================================================
|
|
90
|
+
// Capacity queries
|
|
91
|
+
// ============================================================================
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* Get task-count-based remaining capacity for an agent.
|
|
95
|
+
*
|
|
96
|
+
* Remaining capacity = {@link MAX_TASKS_PER_AGENT} minus the number of tasks
|
|
97
|
+
* currently routed to this agent instance (tracked via the `task_id` column
|
|
98
|
+
* on `agent_instances` — each instance handles one task at a time; child agents
|
|
99
|
+
* spawned by an orchestrator appear as sibling rows referencing the same
|
|
100
|
+
* `parent_agent_id`).
|
|
101
|
+
*
|
|
102
|
+
* For capacity purposes the "active tasks" count is derived from the number of
|
|
103
|
+
* non-terminal sibling rows that share the same `parent_agent_id` as this
|
|
104
|
+
* agent, plus 1 for the agent's own current task when `task_id` is set.
|
|
105
|
+
*
|
|
106
|
+
* @remarks
|
|
107
|
+
* Agents in terminal states (`stopped`, `crashed`) always return 0 remaining
|
|
108
|
+
* capacity because they cannot accept work.
|
|
109
|
+
*
|
|
110
|
+
* @param agentId - Agent instance ID (agt_...) to check
|
|
111
|
+
* @param cwd - Working directory used to resolve tasks.db path
|
|
112
|
+
* @returns Capacity breakdown or null if the agent does not exist
|
|
113
|
+
*
|
|
114
|
+
* @example
|
|
115
|
+
* ```ts
|
|
116
|
+
* const cap = await getAgentCapacity('agt_20260321120000_ab12cd', '/project');
|
|
117
|
+
* if (cap && cap.available) {
|
|
118
|
+
* console.log(`Agent can take ${cap.remainingCapacity} more tasks`);
|
|
119
|
+
* }
|
|
120
|
+
* ```
|
|
121
|
+
*/
|
|
122
|
+
export async function getAgentCapacity(
|
|
123
|
+
agentId: string,
|
|
124
|
+
cwd?: string,
|
|
125
|
+
): Promise<AgentCapacity | null> {
|
|
126
|
+
const db = await getDb(cwd);
|
|
127
|
+
|
|
128
|
+
const agent = await db.select().from(agentInstances).where(eq(agentInstances.id, agentId)).get();
|
|
129
|
+
|
|
130
|
+
if (!agent) return null;
|
|
131
|
+
|
|
132
|
+
// Terminal agents have zero capacity
|
|
133
|
+
const isTerminal = agent.status === 'stopped' || agent.status === 'crashed';
|
|
134
|
+
if (isTerminal) {
|
|
135
|
+
return {
|
|
136
|
+
agentId: agent.id,
|
|
137
|
+
agentType: agent.agentType,
|
|
138
|
+
status: agent.status,
|
|
139
|
+
activeTasks: 0,
|
|
140
|
+
remainingCapacity: 0,
|
|
141
|
+
maxCapacity: MAX_TASKS_PER_AGENT,
|
|
142
|
+
available: false,
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
// Count active child agents (subtasks delegated by this agent)
|
|
147
|
+
const children = await db
|
|
148
|
+
.select({ id: agentInstances.id })
|
|
149
|
+
.from(agentInstances)
|
|
150
|
+
.where(
|
|
151
|
+
and(
|
|
152
|
+
eq(agentInstances.parentAgentId, agentId),
|
|
153
|
+
inArray(agentInstances.status, ['starting', 'active', 'idle', 'error']),
|
|
154
|
+
),
|
|
155
|
+
)
|
|
156
|
+
.all();
|
|
157
|
+
|
|
158
|
+
// The agent itself counts as 1 active task when it has a task assigned
|
|
159
|
+
const selfTask = agent.taskId != null ? 1 : 0;
|
|
160
|
+
const activeTasks = selfTask + children.length;
|
|
161
|
+
const remainingCapacity = Math.max(0, MAX_TASKS_PER_AGENT - activeTasks);
|
|
162
|
+
|
|
163
|
+
return {
|
|
164
|
+
agentId: agent.id,
|
|
165
|
+
agentType: agent.agentType,
|
|
166
|
+
status: agent.status,
|
|
167
|
+
activeTasks,
|
|
168
|
+
remainingCapacity,
|
|
169
|
+
maxCapacity: MAX_TASKS_PER_AGENT,
|
|
170
|
+
available: remainingCapacity > 0,
|
|
171
|
+
};
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* List all non-terminal agents sorted by remaining task capacity (descending).
|
|
176
|
+
*
|
|
177
|
+
* Returns agents with the most available slots first, enabling callers to
|
|
178
|
+
* select the least-loaded agent for new work assignment.
|
|
179
|
+
*
|
|
180
|
+
* @remarks
|
|
181
|
+
* Only agents in `active` or `idle` states are included — `starting` agents
|
|
182
|
+
* are excluded because they may not yet be ready to accept work.
|
|
183
|
+
* Terminal agents (`stopped`, `crashed`) are always omitted.
|
|
184
|
+
*
|
|
185
|
+
* @param agentType - Optional filter to limit results to one agent type
|
|
186
|
+
* @param cwd - Working directory used to resolve tasks.db path
|
|
187
|
+
* @returns Array of capacity entries sorted highest remaining capacity first
|
|
188
|
+
*
|
|
189
|
+
* @example
|
|
190
|
+
* ```ts
|
|
191
|
+
* const agents = await getAgentsByCapacity('executor', '/project');
|
|
192
|
+
* const best = agents[0]; // most available slots
|
|
193
|
+
* if (best && best.available) {
|
|
194
|
+
* await assignTask(best.agentId, taskId);
|
|
195
|
+
* }
|
|
196
|
+
* ```
|
|
197
|
+
*/
|
|
198
|
+
export async function getAgentsByCapacity(
|
|
199
|
+
agentType?: AgentType,
|
|
200
|
+
cwd?: string,
|
|
201
|
+
): Promise<AgentCapacity[]> {
|
|
202
|
+
const filters: Parameters<typeof listAgentInstances>[0] = agentType
|
|
203
|
+
? { status: ['active', 'idle'] as ('active' | 'idle')[], agentType }
|
|
204
|
+
: { status: ['active', 'idle'] as ('active' | 'idle')[] };
|
|
205
|
+
|
|
206
|
+
const activeAgents = await listAgentInstances(filters, cwd);
|
|
207
|
+
|
|
208
|
+
const capacities = await Promise.all(
|
|
209
|
+
activeAgents.map((agent) => getAgentCapacity(agent.id, cwd)),
|
|
210
|
+
);
|
|
211
|
+
|
|
212
|
+
return capacities
|
|
213
|
+
.filter((c): c is AgentCapacity => c !== null)
|
|
214
|
+
.sort((a, b) => b.remainingCapacity - a.remainingCapacity);
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
// ============================================================================
|
|
218
|
+
// Specializations
|
|
219
|
+
// ============================================================================
|
|
220
|
+
|
|
221
|
+
/**
|
|
222
|
+
* Metadata shape stored in the agent_instances.metadata_json column.
|
|
223
|
+
* Only the subset relevant to specializations is typed here.
|
|
224
|
+
*
|
|
225
|
+
* @internal
|
|
226
|
+
*/
|
|
227
|
+
interface AgentMetadata {
|
|
228
|
+
specializations?: string[];
|
|
229
|
+
[key: string]: unknown;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/**
|
|
233
|
+
* Get the specialization/skills list for an agent.
|
|
234
|
+
*
|
|
235
|
+
* Specializations are stored as a string array under the `specializations`
|
|
236
|
+
* key in the agent's `metadata_json` column. An empty array is returned when
|
|
237
|
+
* the field is absent or the agent is not found.
|
|
238
|
+
*
|
|
239
|
+
* @remarks
|
|
240
|
+
* Write specializations with {@link updateAgentSpecializations} when
|
|
241
|
+
* registering or updating an agent. The metadata column is a free-form JSON
|
|
242
|
+
* blob — specializations are one namespaced key inside it.
|
|
243
|
+
*
|
|
244
|
+
* @param agentId - Agent instance ID (agt_...)
|
|
245
|
+
* @param cwd - Working directory used to resolve tasks.db path
|
|
246
|
+
* @returns Array of specialization strings (empty if none recorded)
|
|
247
|
+
*
|
|
248
|
+
* @example
|
|
249
|
+
* ```ts
|
|
250
|
+
* const skills = await getAgentSpecializations('agt_20260321120000_ab12cd', '/project');
|
|
251
|
+
* // ['typescript', 'testing', 'documentation']
|
|
252
|
+
* if (skills.includes('typescript')) {
|
|
253
|
+
* console.log('Agent can handle TypeScript tasks');
|
|
254
|
+
* }
|
|
255
|
+
* ```
|
|
256
|
+
*/
|
|
257
|
+
export async function getAgentSpecializations(agentId: string, cwd?: string): Promise<string[]> {
|
|
258
|
+
const db = await getDb(cwd);
|
|
259
|
+
const agent = await db
|
|
260
|
+
.select({ metadataJson: agentInstances.metadataJson })
|
|
261
|
+
.from(agentInstances)
|
|
262
|
+
.where(eq(agentInstances.id, agentId))
|
|
263
|
+
.get();
|
|
264
|
+
|
|
265
|
+
if (!agent) return [];
|
|
266
|
+
|
|
267
|
+
try {
|
|
268
|
+
const meta = JSON.parse(agent.metadataJson ?? '{}') as AgentMetadata;
|
|
269
|
+
const specs = meta.specializations;
|
|
270
|
+
if (!Array.isArray(specs)) return [];
|
|
271
|
+
return specs.filter((s): s is string => typeof s === 'string');
|
|
272
|
+
} catch {
|
|
273
|
+
return [];
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
/**
|
|
278
|
+
* Update the specializations list stored in an agent's metadata.
|
|
279
|
+
*
|
|
280
|
+
* Merges the new list into the existing `metadata_json` object, preserving
|
|
281
|
+
* any other keys already present. Returns the updated specializations list,
|
|
282
|
+
* or null if the agent was not found.
|
|
283
|
+
*
|
|
284
|
+
* @remarks
|
|
285
|
+
* This is a write-side companion to {@link getAgentSpecializations}. Call it
|
|
286
|
+
* after {@link registerAgent} to record the skills an agent was spawned with.
|
|
287
|
+
*
|
|
288
|
+
* @param agentId - Agent instance ID (agt_...)
|
|
289
|
+
* @param specializations - New specializations list (replaces existing)
|
|
290
|
+
* @param cwd - Working directory used to resolve tasks.db path
|
|
291
|
+
* @returns Updated specializations list, or null if agent not found
|
|
292
|
+
*
|
|
293
|
+
* @example
|
|
294
|
+
* ```ts
|
|
295
|
+
* await updateAgentSpecializations(
|
|
296
|
+
* 'agt_20260321120000_ab12cd',
|
|
297
|
+
* ['typescript', 'testing'],
|
|
298
|
+
* '/project',
|
|
299
|
+
* );
|
|
300
|
+
* ```
|
|
301
|
+
*/
|
|
302
|
+
export async function updateAgentSpecializations(
|
|
303
|
+
agentId: string,
|
|
304
|
+
specializations: string[],
|
|
305
|
+
cwd?: string,
|
|
306
|
+
): Promise<string[] | null> {
|
|
307
|
+
const db = await getDb(cwd);
|
|
308
|
+
const agent = await db
|
|
309
|
+
.select({ metadataJson: agentInstances.metadataJson })
|
|
310
|
+
.from(agentInstances)
|
|
311
|
+
.where(eq(agentInstances.id, agentId))
|
|
312
|
+
.get();
|
|
313
|
+
|
|
314
|
+
if (!agent) return null;
|
|
315
|
+
|
|
316
|
+
let existing: AgentMetadata = {};
|
|
317
|
+
try {
|
|
318
|
+
existing = JSON.parse(agent.metadataJson ?? '{}') as AgentMetadata;
|
|
319
|
+
} catch {
|
|
320
|
+
// Proceed with empty object if metadata is unparseable
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
const updated: AgentMetadata = { ...existing, specializations };
|
|
324
|
+
await db
|
|
325
|
+
.update(agentInstances)
|
|
326
|
+
.set({ metadataJson: JSON.stringify(updated) })
|
|
327
|
+
.where(eq(agentInstances.id, agentId));
|
|
328
|
+
|
|
329
|
+
return specializations;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
// ============================================================================
|
|
333
|
+
// Performance recording
|
|
334
|
+
// ============================================================================
|
|
335
|
+
|
|
336
|
+
/**
|
|
337
|
+
* Record agent performance metrics to the BRAIN execution history.
|
|
338
|
+
*
|
|
339
|
+
* Translates a simplified {@link AgentPerformanceMetrics} object into the
|
|
340
|
+
* {@link AgentExecutionEvent} format expected by `execution-learning.ts` and
|
|
341
|
+
* delegates to {@link recordAgentExecution}. The agent type is resolved from
|
|
342
|
+
* the `agent_instances` table so callers only need to supply the agent ID.
|
|
343
|
+
*
|
|
344
|
+
* @remarks
|
|
345
|
+
* Recording is best-effort — if brain.db is unavailable the error is swallowed
|
|
346
|
+
* and null is returned, consistent with the rest of the execution-learning
|
|
347
|
+
* module. Agent lifecycle code is never disrupted by a brain write failure.
|
|
348
|
+
*
|
|
349
|
+
* @param agentId - Agent instance ID whose performance is being recorded
|
|
350
|
+
* @param metrics - Performance metrics for the task that was processed
|
|
351
|
+
* @param cwd - Working directory used to resolve tasks.db and brain.db paths
|
|
352
|
+
* @returns The brain decision ID if recorded, null on failure or not found
|
|
353
|
+
*
|
|
354
|
+
* @example
|
|
355
|
+
* ```ts
|
|
356
|
+
* const decisionId = await recordAgentPerformance('agt_20260321120000_ab12cd', {
|
|
357
|
+
* taskId: 'T041',
|
|
358
|
+
* taskType: 'task',
|
|
359
|
+
* outcome: 'success',
|
|
360
|
+
* durationMs: 4200,
|
|
361
|
+
* sessionId: 'ses_20260321_abc',
|
|
362
|
+
* }, '/project');
|
|
363
|
+
* ```
|
|
364
|
+
*/
|
|
365
|
+
export async function recordAgentPerformance(
|
|
366
|
+
agentId: string,
|
|
367
|
+
metrics: AgentPerformanceMetrics,
|
|
368
|
+
cwd?: string,
|
|
369
|
+
): Promise<string | null> {
|
|
370
|
+
const db = await getDb(cwd);
|
|
371
|
+
const agent = await db
|
|
372
|
+
.select({ agentType: agentInstances.agentType, sessionId: agentInstances.sessionId })
|
|
373
|
+
.from(agentInstances)
|
|
374
|
+
.where(eq(agentInstances.id, agentId))
|
|
375
|
+
.get();
|
|
376
|
+
|
|
377
|
+
if (!agent) return null;
|
|
378
|
+
|
|
379
|
+
const event: AgentExecutionEvent = {
|
|
380
|
+
agentId,
|
|
381
|
+
agentType: agent.agentType,
|
|
382
|
+
taskId: metrics.taskId,
|
|
383
|
+
taskType: metrics.taskType,
|
|
384
|
+
outcome: metrics.outcome,
|
|
385
|
+
taskLabels: metrics.taskLabels,
|
|
386
|
+
sessionId: metrics.sessionId ?? agent.sessionId ?? undefined,
|
|
387
|
+
durationMs: metrics.durationMs,
|
|
388
|
+
errorMessage: metrics.errorMessage,
|
|
389
|
+
errorType: metrics.errorType,
|
|
390
|
+
};
|
|
391
|
+
|
|
392
|
+
const decision = await recordAgentExecution(event, cwd);
|
|
393
|
+
return decision?.id ?? null;
|
|
394
|
+
}
|
|
@@ -49,6 +49,11 @@ export const agentInstances = sqliteTable(
|
|
|
49
49
|
id: text('id').primaryKey(),
|
|
50
50
|
agentType: text('agent_type', { enum: AGENT_TYPES }).notNull(),
|
|
51
51
|
status: text('status', { enum: AGENT_INSTANCE_STATUSES }).notNull().default('starting'),
|
|
52
|
+
// T033: FK constraints enforced at DB level by migration; kept soft here
|
|
53
|
+
// to avoid circular dependency with tasks-schema.ts (which imports agent-schema.ts).
|
|
54
|
+
// The migration SQL adds: session_id -> sessions ON DELETE SET NULL,
|
|
55
|
+
// task_id -> tasks ON DELETE SET NULL,
|
|
56
|
+
// parent_agent_id -> agent_instances ON DELETE SET NULL.
|
|
52
57
|
sessionId: text('session_id'),
|
|
53
58
|
taskId: text('task_id'),
|
|
54
59
|
startedAt: text('started_at').notNull().default(sql`(datetime('now'))`),
|