feat(agent): More agent tweaks

This commit is contained in:
Willie Zutz 2025-06-22 13:35:01 -06:00
parent c3e845e0e2
commit a8eaadc6ed
11 changed files with 169 additions and 26 deletions

View file

@ -121,6 +121,8 @@ export class TaskManagerAgent {
// Parse the response to extract tasks
const responseContent = taskBreakdownResult.content as string;
console.log('Task breakdown response:', responseContent);
const taskLines = responseContent
.split('\n')
.filter((line) => line.trim().startsWith('TASK:'))