-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagent-planner.js
More file actions
628 lines (556 loc) · 17.4 KB
/
Copy pathagent-planner.js
File metadata and controls
628 lines (556 loc) · 17.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
/**
* Planner Agent - Breaks down goals into actionable tasks
*
* This agent:
* - Accepts goal descriptions
* - Creates execution plans with tasks
* - Tracks task completion
* - Re-plans tasks that fail after 3 attempts
*/
import agentCore, { EventTypes } from './agent-core.js';
import agentExecutor from './agent-executor.js';
// Task status values
const TASK_STATUS = {
PENDING: 'pending',
IN_PROGRESS: 'in_progress',
COMPLETED: 'completed',
FAILED: 'failed',
BLOCKED: 'blocked'
};
// Maximum attempts before re-planning
const MAX_ATTEMPTS_BEFORE_REPLAN = 3;
// Tool definitions
const PLANNER_TOOLS = [
{
name: 'planComplete',
description: 'Signal plan creation complete',
params: [
{ name: 'tasks', type: 'array' },
{ name: 'risks', type: 'array' },
{ name: 'assumptions', type: 'array' }
]
},
{
name: 'replanComplete',
description: 'Signal re-planning complete',
params: [
{ name: 'analysis', type: 'string' },
{ name: 'subtasks', type: 'array' },
{ name: 'blockerResolution', type: 'string' }
]
}
];
/**
* Planner Agent class
*/
export class PlannerAgent {
constructor(options = {}) {
this.name = 'planner';
this.model = options.model || 'sonnet';
this.fallbackModel = options.fallbackModel || 'haiku';
// Current plan state
this.currentPlan = null;
// Register with agent core (allowExisting for resume scenarios)
this.agent = agentCore.registerAgent(this.name, {
model: this.model,
subscribesTo: options.subscribesTo || ['supervisor', 'coder', 'tester'],
tools: PLANNER_TOOLS,
state: {
plansCreated: 0,
replansPerformed: 0,
tasksTracked: 0,
successRate: 0
},
allowExisting: options.allowExisting || false
});
// Set up subscriptions
this._setupSubscriptions();
}
/**
* Set up event subscriptions
*/
_setupSubscriptions() {
const subscribedAgents = this.agent.subscribesTo;
agentCore.subscribeToAgents(this.name, subscribedAgents, (event) => {
// React to task completions and failures
if (event.type === EventTypes.TASK_COMPLETED || event.type === EventTypes.TASK_FAILED) {
this._handleTaskUpdate(event);
}
});
}
/**
* Handle task status updates
*/
_handleTaskUpdate(event) {
agentCore.addMemory(this.name, {
content: `Task update: ${event.object?.description || 'unknown'} - ${event.type}`,
type: 'task_update',
metadata: { taskId: event.object?.id, status: event.object?.status }
});
}
/**
* Create a plan for a goal
* @param {string} goal - Goal description
* @param {object} context - Additional context
*/
async createPlan(goal, context = {}) {
// If there's a previous plan being superseded, remove its tasks
if (context.previousPlan?.goalId) {
const result = agentCore.removeTasksByGoalId(
this.name,
context.previousPlan.goalId,
context.feedback ? `Supervisor feedback: ${context.feedback}` : 'Plan superseded by revision'
);
if (result.removedCount > 0) {
// Log removal for debugging
agentCore.addMemory(this.name, {
content: `Removed ${result.removedCount} tasks from superseded plan`,
type: 'plan_superseded',
metadata: {
oldGoalId: context.previousPlan.goalId,
removedCount: result.removedCount
}
});
}
}
// Set the goal for the planner
const goalObj = agentCore.setGoal(this.name, {
description: goal,
metadata: { context }
});
const templateContext = {
goal,
context: context.description,
constraints: context.constraints
};
const jsonSchema = {
type: 'object',
properties: {
toolCall: {
type: 'object',
properties: {
name: { type: 'string', const: 'planComplete' },
arguments: {
type: 'object',
properties: {
tasks: {
type: 'array',
items: {
type: 'object',
properties: {
description: { type: 'string' },
complexity: { type: 'string', enum: ['simple', 'medium', 'complex'] },
dependencies: { type: 'array', items: { type: 'number' } },
verificationCriteria: { type: 'array', items: { type: 'string' } }
},
required: ['description', 'complexity']
},
minItems: 2,
maxItems: 15
},
risks: { type: 'array', items: { type: 'string' } },
assumptions: { type: 'array', items: { type: 'string' } }
},
required: ['tasks']
}
},
required: ['name', 'arguments']
}
},
required: ['toolCall']
};
const result = await agentExecutor.executeWithTemplate(
this.name,
'planner/plan.hbs',
templateContext,
{
model: this.model,
fallbackModel: this.fallbackModel,
jsonSchema,
goalId: goalObj.id
}
);
const plan = this._parsePlanResult(result);
// Reset all sessions - new plan means fresh context for all agents
agentExecutor.resetAllSessions();
// Create tasks in agent core
const tasks = [];
for (const taskDef of plan.tasks || []) {
const task = agentCore.addTask(this.name, {
description: taskDef.description,
parentGoalId: goalObj.id,
metadata: {
complexity: taskDef.complexity,
dependencies: taskDef.dependencies,
verificationCriteria: taskDef.verificationCriteria
}
});
tasks.push(task);
}
// Update state
agentCore.updateAgentState(this.name, {
plansCreated: this.agent.state.plansCreated + 1,
tasksTracked: this.agent.state.tasksTracked + tasks.length
});
// Store current plan
this.currentPlan = {
goalId: goalObj.id,
goal,
tasks,
risks: plan.risks || [],
assumptions: plan.assumptions || [],
createdAt: Date.now()
};
// Record the output
agentCore.recordOutput(this.name, {
content: this.currentPlan,
type: 'plan',
metadata: { goalId: goalObj.id, taskCount: tasks.length }
});
return this.currentPlan;
}
/**
* Re-plan a failed task
* @param {object} task - The failed task
* @param {string} failureReason - Why it failed
* @param {object[]} previousAttempts - Previous attempt details
*/
async replan(task, failureReason, previousAttempts = []) {
const goal = this.currentPlan?.goal || 'Unknown goal';
// Get similar failures from other tasks for cross-task learning
const similarFailures = agentCore.getSimilarFailures(failureReason, 3);
const templateContext = {
goal,
task,
failureReason,
attempts: task.attempts || previousAttempts.length,
previousAttempts,
similarFailures
};
const jsonSchema = {
type: 'object',
properties: {
toolCall: {
type: 'object',
properties: {
name: { type: 'string', const: 'replanComplete' },
arguments: {
type: 'object',
properties: {
analysis: { type: 'string' },
subtasks: {
type: 'array',
items: {
type: 'object',
properties: {
description: { type: 'string' },
complexity: { type: 'string', enum: ['simple', 'medium', 'complex'] },
verificationCriteria: { type: 'array', items: { type: 'string' } }
},
required: ['description', 'complexity']
},
minItems: 2,
maxItems: 15
},
blockerResolution: { type: 'string' }
},
required: ['analysis', 'subtasks']
}
},
required: ['name', 'arguments']
}
},
required: ['toolCall']
};
const result = await agentExecutor.executeWithTemplate(
this.name,
'planner/replan.hbs',
templateContext,
{
model: this.model,
fallbackModel: this.fallbackModel,
jsonSchema,
taskId: task.id,
goalId: task.parentGoalId || null
}
);
const replan = this._parseReplanResult(result);
// Reset all sessions - replan means fresh context for all agents
agentExecutor.resetAllSessions();
// Create subtasks
const subtasks = [];
for (const subtaskDef of replan.subtasks || []) {
const subtask = agentCore.addSubtask(this.name, task.id, {
description: subtaskDef.description,
metadata: {
complexity: subtaskDef.complexity,
verificationCriteria: subtaskDef.verificationCriteria,
parentTaskDescription: task.description
}
});
subtasks.push(subtask);
}
// Update the original task status
agentCore.updateTask(this.name, task.id, {
status: TASK_STATUS.BLOCKED,
metadata: {
...task.metadata,
replanReason: failureReason,
replanAnalysis: replan.analysis
}
});
// Update state
agentCore.updateAgentState(this.name, {
replansPerformed: this.agent.state.replansPerformed + 1,
tasksTracked: this.agent.state.tasksTracked + subtasks.length
});
// Record the output
agentCore.recordOutput(this.name, {
content: { ...replan, subtasks },
type: 'replan',
metadata: { originalTaskId: task.id, subtaskCount: subtasks.length }
});
return { ...replan, subtasks };
}
/**
* Mark a task as complete
* @param {string} taskId - Task ID
* @param {object} result - Completion result
*/
markTaskComplete(taskId, result = {}) {
const existingTask = this.agent.tasks.find(t => t.id === taskId);
const task = agentCore.updateTask(this.name, taskId, {
status: TASK_STATUS.COMPLETED,
metadata: { ...existingTask?.metadata, ...result }
});
this._updateSuccessRate();
// Check if parent task should be completed (all subtasks done)
if (task?.parentTaskId) {
this._checkAndCompleteParent(task.parentTaskId);
}
return task;
}
/**
* Check if a parent task should be completed when all its subtasks are done
* @param {string} parentTaskId - Parent task ID
*/
_checkAndCompleteParent(parentTaskId) {
const parentTask = this.agent.tasks.find(t => t.id === parentTaskId);
if (!parentTask || !parentTask.subtasks || parentTask.subtasks.length === 0) {
return;
}
// Check if all subtasks are completed
const allSubtasksComplete = parentTask.subtasks.every(subId => {
const subtask = this.agent.tasks.find(t => t.id === subId);
return subtask && subtask.status === TASK_STATUS.COMPLETED;
});
if (allSubtasksComplete && parentTask.status === TASK_STATUS.BLOCKED) {
agentCore.updateTask(this.name, parentTaskId, {
status: TASK_STATUS.COMPLETED,
metadata: {
...parentTask.metadata,
completedAt: Date.now(),
completedViaSubtasks: true
}
});
// Recursively check if this parent also has a parent
if (parentTask.parentTaskId) {
this._checkAndCompleteParent(parentTask.parentTaskId);
}
}
}
/**
* Mark a task as failed
* @param {string} taskId - Task ID
* @param {string} reason - Failure reason
*/
markTaskFailed(taskId, reason) {
const task = this.agent.tasks.find(t => t.id === taskId);
if (task && task.attempts >= MAX_ATTEMPTS_BEFORE_REPLAN) {
// Trigger re-planning
return {
task: agentCore.updateTask(this.name, taskId, {
status: TASK_STATUS.FAILED,
metadata: { ...task.metadata, failureReason: reason }
}),
needsReplan: true
};
}
return {
task: agentCore.updateTask(this.name, taskId, {
status: TASK_STATUS.FAILED,
metadata: { ...task.metadata, failureReason: reason }
}),
needsReplan: false
};
}
/**
* Get the currently executing task (in_progress status)
*/
getCurrentTask() {
if (!this.currentPlan) return null;
return this.agent.tasks.find(t =>
t.status === TASK_STATUS.IN_PROGRESS &&
t.parentGoalId === this.currentPlan.goalId
) || null;
}
/**
* Get the next pending task (respects hierarchy - subtasks before siblings)
*/
getNextTask() {
if (!this.currentPlan) return null;
const goalTasks = this.agent.tasks.filter(t => t.parentGoalId === this.currentPlan.goalId);
// Build a map of task ID to task
const taskMap = new Map();
for (const t of goalTasks) {
taskMap.set(t.id, t);
}
// Find root tasks (no parent or parent not in this goal)
const roots = goalTasks.filter(t => !t.parentTaskId || !taskMap.has(t.parentTaskId));
// Recursively find first pending task (depth-first)
const findPending = (task) => {
// If this task is pending, return it
if (task.status === TASK_STATUS.PENDING) {
return task;
}
// If blocked/in_progress with subtasks, check subtasks first
if (task.subtasks && task.subtasks.length > 0) {
for (const subId of task.subtasks) {
const sub = taskMap.get(subId);
if (sub) {
const found = findPending(sub);
if (found) return found;
}
}
}
return null;
};
// Check each root task in order
for (const root of roots) {
const found = findPending(root);
if (found) return found;
}
return null;
}
/**
* Get task execution state for UI display
* @returns {Object} Object with currentTaskId and nextTaskId
*/
getTaskExecutionState() {
const current = this.getCurrentTask();
const next = this.getNextTask();
return {
currentTaskId: current?.id || null,
nextTaskId: next?.id || null
};
}
/**
* Get plan status summary
*/
getPlanStatus() {
if (!this.currentPlan) {
return { hasActivePlan: false };
}
const tasks = this.agent.tasks.filter(t => t.parentGoalId === this.currentPlan.goalId);
return {
hasActivePlan: true,
goal: this.currentPlan.goal,
totalTasks: tasks.length,
pending: tasks.filter(t => t.status === TASK_STATUS.PENDING).length,
inProgress: tasks.filter(t => t.status === TASK_STATUS.IN_PROGRESS).length,
completed: tasks.filter(t => t.status === TASK_STATUS.COMPLETED).length,
failed: tasks.filter(t => t.status === TASK_STATUS.FAILED).length,
blocked: tasks.filter(t => t.status === TASK_STATUS.BLOCKED).length,
percentComplete: tasks.length > 0
? Math.round(tasks.filter(t => t.status === TASK_STATUS.COMPLETED).length / tasks.length * 100)
: 0
};
}
/**
* Parse plan result from structured output
*/
_parsePlanResult(result) {
if (result.structuredOutput?.toolCall?.arguments) {
return result.structuredOutput.toolCall.arguments;
}
if (result.toolCalls?.length > 0) {
const toolCall = result.toolCalls.find(tc => tc.name === 'planComplete');
if (toolCall) {
return toolCall.arguments;
}
}
// Fallback: attempt to parse from response
return this._parseTextPlan(result.response);
}
/**
* Parse replan result from structured output
*/
_parseReplanResult(result) {
if (result.structuredOutput?.toolCall?.arguments) {
return result.structuredOutput.toolCall.arguments;
}
if (result.toolCalls?.length > 0) {
const toolCall = result.toolCalls.find(tc => tc.name === 'replanComplete');
if (toolCall) {
return toolCall.arguments;
}
}
return {
analysis: 'Unable to parse replan response',
subtasks: [],
blockerResolution: 'Unknown'
};
}
/**
* Fallback text parsing for plans
*/
_parseTextPlan(response) {
// Try to extract tasks from numbered list
const taskMatches = response.match(/\d+\.\s+(.+?)(?=\n\d+\.|\n\n|$)/g) || [];
const tasks = taskMatches.slice(0, 15).map(match => {
const desc = match.replace(/^\d+\.\s+/, '').trim();
// Try to extract complexity
const complexityMatch = desc.match(/\|\s*(simple|medium|complex)/i);
return {
description: desc.replace(/\|.+$/, '').trim(),
complexity: complexityMatch ? complexityMatch[1].toLowerCase() : 'medium',
dependencies: [],
verificationCriteria: []
};
});
return {
tasks: tasks.length > 0 ? tasks : [{ description: 'Execute goal', complexity: 'complex' }],
risks: [],
assumptions: []
};
}
/**
* Update success rate statistic
*/
_updateSuccessRate() {
const tasks = this.agent.tasks;
const completed = tasks.filter(t => t.status === TASK_STATUS.COMPLETED).length;
const failed = tasks.filter(t => t.status === TASK_STATUS.FAILED).length;
const total = completed + failed;
if (total > 0) {
agentCore.updateAgentState(this.name, {
successRate: Math.round(completed / total * 100)
});
}
}
/**
* Get agent statistics
*/
getStats() {
return {
name: this.name,
...this.agent.state,
currentPlan: this.getPlanStatus()
};
}
}
export default PlannerAgent;
export {
TASK_STATUS,
MAX_ATTEMPTS_BEFORE_REPLAN
};