File size: 27,409 Bytes
391c43e | 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 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 | // lib/llm/core/agent-loop.ts
// Portable agent execution loop β no browser imports, no VFS, no Next.js, no configManager.
// Coordinates: ProviderAdapter, ToolExecutor, ContextManager, ProgressReporter, CostTracker.
import type {
ProviderAdapter,
ToolExecutor,
ContextManager,
ProgressReporter,
CostTracker,
AgentLoopConfig,
AgentLoopResult,
ParsedResponse,
ToolResult,
ToolCall,
ToolExecContext,
ContentBlock,
} from './types';
// --- Helper functions ---
/** Harmony format token pattern (GPT-OSS and other harmony-format models) */
const HARMONY_TOKEN_RE = /<\|[^|]*\|>/;
/**
* Detect if content contains malformed tool calls written as text/markdown
* instead of proper function calling invocations.
*/
function detectMalformedToolCalls(content: string): boolean {
if (!content) return false;
const patterns = [
/```(?:shell|bash|sh)\s*\n[\s\S]*?\n```/,
/^(?:bash|shell)\s*\{\s*["']?(?:command|cmd)["']?\s*:/m,
/^(?:bash|shell)\s*\[\s*["']/m,
/```json\s*\n\s*\{\s*["']?(?:command|cmd)["']?\s*:/,
];
const hasPattern = patterns.some(p => p.test(content));
if (!hasPattern) return false;
const trimmed = content.trim();
if (trimmed.length < 200) return true;
const endsWithToolPattern = /(?:bash|shell)\s*\{\s*["']?(?:command|cmd)["']?\s*:.*\}\s*$/.test(trimmed) ||
/```(?:shell|bash|sh)\s*\n[\s\S]*?\n```\s*$/.test(trimmed);
return endsWithToolPattern;
}
/**
* Extract shell commands from text when the model doesn't support native tool calling.
*/
function extractToolCallsFromText(content: string): ToolCall[] | undefined {
if (!content) return undefined;
const commands: string[] = [];
let match;
// Pattern 1: ```bash/shell/sh code blocks
const bashBlockRe = /```(?:bash|shell|sh)\s*\n([\s\S]*?)\n```/g;
while ((match = bashBlockRe.exec(content)) !== null) {
const block = match[1].trim();
if (block) commands.push(block);
}
// Pattern 2: ```tool_code blocks (Gemini-style)
const toolCodeRe = /```tool_code\s*\n([\s\S]*?)\n```/g;
while ((match = toolCodeRe.exec(content)) !== null) {
const block = match[1].trim();
const runCmdMatch = block.match(/(?:bash|shell)\.run_command\(["']([\s\S]*?)["']\)/);
if (runCmdMatch) {
commands.push(runCmdMatch[1].replace(/\\"/g, '"'));
}
}
// Pattern 3: bash{"command": "..."} or shell{"cmd": "..."} etc.
const toolJsonRe = /(?:bash|shell)\s*\(?\s*\{\s*["']?(?:command|cmd)["']?\s*:\s*["']([\s\S]*?)["']\s*\}\s*\)?/g;
while ((match = toolJsonRe.exec(content)) !== null) {
if (match[1].trim()) commands.push(match[1].trim());
}
if (commands.length === 0) return undefined;
return commands.map((cmd, i) => ({
id: `text-tool-${Date.now()}-${i}`,
type: 'function' as const,
function: {
name: 'bash',
arguments: JSON.stringify({ command: cmd }),
},
}));
}
/**
* Generate a normalized signature for a tool call to detect duplicates.
*/
function getToolCallSignature(toolCall: ToolCall): string {
const toolName = toolCall.function?.name || 'unknown';
try {
const args = JSON.parse(toolCall.function.arguments);
if (toolName === 'bash' || toolName === 'shell') {
const rawCmd = args.command ?? args.cmd;
const cmd = Array.isArray(rawCmd)
? rawCmd.join(' ')
: String(rawCmd || '');
return `${toolName}:${cmd}`;
}
return `${toolName}:${toolCall.function.arguments}`;
} catch {
return `${toolName}:${toolCall.function.arguments}`;
}
}
/**
* Detect repeating patterns in a window of tool call signatures.
* Checks for cycles of length 2-4 that repeat at least `threshold` times.
* Returns the cycle length if found, null otherwise.
*/
function detectRepeatingPattern(signatures: string[], threshold: number): number | null {
const len = signatures.length;
for (let cycleLen = 2; cycleLen <= 4; cycleLen++) {
if (len < cycleLen * threshold) continue;
const checkLen = cycleLen * threshold;
const tail = signatures.slice(len - checkLen);
const cycle = tail.slice(0, cycleLen);
let isRepeating = true;
for (let i = cycleLen; i < checkLen; i++) {
if (tail[i] !== cycle[i % cycleLen]) {
isRepeating = false;
break;
}
}
if (isRepeating) return cycleLen;
}
return null;
}
// --- Constants ---
const MALFORMED_TOOL_CALL_ERROR = `β CRITICAL ERROR: You wrote a tool call as TEXT instead of invoking it.
This is WRONG - you wrote text like:
bash{"command": "..."}
\`\`\`bash
command
\`\`\`
This is RIGHT - invoke tools directly via function calling:
Call bash tool with parameter command="your command"
You MUST use function calling. DO NOT write tool syntax as text.
STOP writing text. START invoking tools. Try again NOW.`;
const MALFORMED_TOOL_CALL_PERSISTENT_REMINDER = `
β οΈ REMINDER: You have been writing tool calls as text instead of invoking them.
EVERY time you want to use a tool, you MUST invoke it via function calling.
DO NOT write bash{"command":...} as text - INVOKE the tools directly.`;
const wrongToolNameError = (name: string) =>
`β "${name}" is not a tool. The ONLY tool is \`bash\` β run every command through it: bash({ command: "${name} ..." }). Re-issue your last action as a single bash tool call.`;
const NUDGE_MESSAGE = 'Before finishing, run the status command:\n status --task "..." --done "..." --remaining "..." --complete';
const TOOL_ERROR_RETRY_MESSAGE = 'Your previous command failed (likely a streaming issue). Continue your work β retry writing the file. If the file is large, split it into multiple smaller cat commands.';
const REASONING_ONLY_RETRY_MESSAGE = 'Your previous response contained only reasoning β no tool call and no user-visible text reached the conversation. Do not stop after thinking: invoke the bash tool via function calling to act (e.g. command="ls /"), or reply with your answer as plain text.';
const MAX_MALFORMED_RETRIES = 2;
const MAX_REASONING_ONLY_RETRIES = 2;
// Tool outputs at or above this size that byte-for-byte repeat an earlier
// result in the live context are replaced with a marker. Small outputs
// ("Command succeededβ¦", build acks) repeat legitimately and stay verbatim.
const RESULT_DEDUP_MIN_CHARS = 500;
const RESULT_DEDUP_MARKER = '(Output identical to a previous tool result above β not repeated to save context.)';
const MALFORMED_THRESHOLD_FOR_REMINDER = 3;
const PATTERN_REPEAT_THRESHOLD = 2;
const PATTERN_WINDOW_SIZE = 8;
/**
* Wrap a harness-injected message so the model (and anyone reading the
* history) can distinguish it from genuine user input. Still sent with
* role 'user' β models weight user messages far more reliably than system
* messages deep into a conversation.
*/
function harnessMessage(text: string): string {
return `<automated_reminder>\n${text}\n</automated_reminder>`;
}
// --- Status result type ---
interface StatusResult {
task: string;
done: string;
remaining: string;
complete: boolean;
hasExplicitFlag: boolean;
}
// --- AgentLoop class ---
export class AgentLoop {
private stopped = false;
private abortController = new AbortController();
private turnCount = 0;
private toolCallCount = 0;
private nudgeCount = 0;
private malformedToolCallRetries = 0;
private totalMalformedToolCalls = 0;
private reasoningOnlyRetries = 0;
private lastToolCallSignature: string | null = null;
private duplicateToolCallCount = 0;
private recentToolSignatures: string[] = [];
private lastIterationHadToolError = false;
private lastStatusResult: StatusResult | null = null;
// Context size from THIS loop's most recent response. Do not read promptTokens
// from the shared CostTracker β parallel child loops record into it too, so
// its last value may describe another loop's context.
private lastPromptTokens = 0;
private config: AgentLoopConfig;
private provider: ProviderAdapter;
private executor: ToolExecutor;
private context: ContextManager;
private progress: ProgressReporter;
private cost: CostTracker;
constructor(deps: {
config: AgentLoopConfig;
provider: ProviderAdapter;
executor: ToolExecutor;
context: ContextManager;
progress: ProgressReporter;
cost: CostTracker;
}) {
this.config = deps.config;
this.provider = deps.provider;
this.executor = deps.executor;
this.context = deps.context;
this.progress = deps.progress;
this.cost = deps.cost;
}
stop(): void {
this.stopped = true;
this.abortController.abort();
}
async run(userPrompt: string | ContentBlock[]): Promise<AgentLoopResult> {
this.context.addUserMessage(userPrompt);
this.cost.resetTurn();
let exitReason = '';
for (let iteration = 0; iteration < this.config.maxIterations; iteration++) {
if (this.stopped) {
exitReason = 'stopped';
this.progress.onEvent('stopped', { reason: 'user' });
break;
}
this.progress.onEvent('iteration', {
current: iteration + 1,
max: this.config.maxIterations,
agent: this.config.agentType,
});
this.progress.onEvent('waiting', {});
// Call provider
let response: ParsedResponse;
try {
response = await this.provider.call({
messages: this.context.getSanitizedMessages(),
tools: this.executor.getDefinitions(this.config.agentType),
signal: this.abortController.signal,
});
} catch (error) {
if (this.stopped) {
exitReason = 'stopped';
this.progress.onEvent('stopped', { reason: 'user' });
break;
}
if (this.config.onPausableError && error instanceof Error) {
const action = await this.config.onPausableError(error);
if (action === 'stop') {
exitReason = 'error_stop';
break;
}
// 'continue' - inject error feedback and retry
this.context.addUserMessage(harnessMessage(`β οΈ ${error.message}\n\nPlease try a different approach.`));
continue;
}
throw error;
}
this.turnCount++;
// Record usage/cost
if (response.usage) {
this.cost.record(response.usage, this.provider.getProvider(), this.provider.getModel());
if (response.usage.promptTokens) this.lastPromptTokens = response.usage.promptTokens;
}
// Early-aborted mid-stream because the model called a tool that isn't
// 'bash' (the only tool). The arguments were never generated, so there's
// nothing to execute β nudge toward bash and retry.
if (response.invalidToolName) {
this.malformedToolCallRetries++;
this.totalMalformedToolCalls++;
if (this.malformedToolCallRetries <= MAX_MALFORMED_RETRIES) {
// Keep any reasoning so the retry doesn't re-derive it from scratch.
if (response.reasoningDetails?.length || (response.content && response.content.trim())) {
this.context.addAssistantTurn({ content: response.content, reasoningDetails: response.reasoningDetails });
}
this.context.addUserMessage(harnessMessage(wrongToolNameError(response.invalidToolName)));
this.progress.onEvent('malformed_tool_call', {
retry: this.malformedToolCallRetries,
maxRetries: MAX_MALFORMED_RETRIES,
totalFailures: this.totalMalformedToolCalls,
invalidToolName: response.invalidToolName,
});
continue;
}
// Over the retry limit β fall through; with no tool calls this is handled
// as a finish/nudge below.
}
// Filter harmony artifacts from tool calls
if (response.toolCalls && response.toolCalls.length > 0) {
response.toolCalls = response.toolCalls.filter(tc => {
const rawName = tc.function?.name || '';
return !HARMONY_TOKEN_RE.test(rawName);
});
if (response.toolCalls.length === 0) {
response.toolCalls = undefined;
}
}
// For models without native tool support: extract tool calls from text
if (!this.provider.supportsTools() && response.content && (!response.toolCalls || response.toolCalls.length === 0)) {
const extracted = extractToolCallsFromText(response.content);
if (extracted && extracted.length > 0) {
response.toolCalls = extracted;
}
}
// Detect malformed tool calls (tools WERE sent but model wrote text)
if (this.provider.supportsTools() && response.content && (!response.toolCalls || response.toolCalls.length === 0)) {
if (detectMalformedToolCalls(response.content)) {
this.malformedToolCallRetries++;
this.totalMalformedToolCalls++;
if (this.malformedToolCallRetries <= MAX_MALFORMED_RETRIES) {
this.context.addAssistantTurn({ content: response.content });
let errorMessage = MALFORMED_TOOL_CALL_ERROR;
if (this.totalMalformedToolCalls >= MALFORMED_THRESHOLD_FOR_REMINDER) {
errorMessage += MALFORMED_TOOL_CALL_PERSISTENT_REMINDER;
}
this.context.addUserMessage(harnessMessage(errorMessage));
this.progress.onEvent('malformed_tool_call', {
retry: this.malformedToolCallRetries,
maxRetries: MAX_MALFORMED_RETRIES,
totalFailures: this.totalMalformedToolCalls,
});
continue;
}
// Over consecutive limit - fall through
}
} else if (response.toolCalls && response.toolCalls.length > 0) {
this.malformedToolCallRetries = 0;
this.reasoningOnlyRetries = 0;
}
// --- NO TOOL CALLS: model wants to finish ---
if (!response.toolCalls || response.toolCalls.length === 0) {
const hasContent = !!(response.content && response.content.trim());
const hasReasoning = !!response.reasoningDetails?.length;
// Explore/plan/setup agents exit immediately
if (this.config.agentType === 'explore' || this.config.agentType === 'plan' || this.config.agentType === 'setup') {
if (hasContent) {
this.context.addAssistantTurn({ content: response.content, reasoningDetails: response.reasoningDetails });
}
exitReason = 'agent_type_exit';
break;
}
// Persist the turn even when it is reasoning-only β dropping it would
// erase the model's own thinking from history, so retries start from
// scratch and produce near-identical reasoning every iteration.
if (hasContent || hasReasoning) {
this.context.addAssistantTurn({ content: response.content, reasoningDetails: response.reasoningDetails });
}
// Check structured status result
if (this.lastStatusResult) {
if (this.lastStatusResult.complete) {
const gateResult = await this.runCompletionGate();
if (gateResult) {
this.context.addUserMessage(harnessMessage(gateResult));
this.lastStatusResult = null;
continue;
}
exitReason = 'status_complete';
this.progress.onEvent('exit_reason', { reason: 'status_complete', iteration });
break;
} else if (this.lastStatusResult.hasExplicitFlag) {
// Explicit --incomplete flag
this.lastStatusResult = null;
this.nudgeCount = 0;
continue;
} else {
// No flag - check remaining field
const rem = this.lastStatusResult.remaining.trim().toLowerCase();
if (!rem || rem === 'none' || rem === 'n/a' || rem === 'nothing') {
const gateResult = await this.runCompletionGate();
if (gateResult) {
this.context.addUserMessage(harnessMessage(gateResult));
this.lastStatusResult = null;
continue;
}
exitReason = 'status_remaining_empty';
this.progress.onEvent('exit_reason', { reason: 'status_remaining_empty', iteration });
break;
} else {
this.lastStatusResult = null;
this.nudgeCount = 0;
continue;
}
}
}
// Interview: a content turn with no status is a question β pause for the
// user instead of nudging toward completion.
if (this.config.agentType === 'interview' && hasContent) {
exitReason = 'awaiting_user';
this.progress.onEvent('exit_reason', { reason: 'awaiting_user', iteration });
break;
}
// After tool error + empty response: inject retry prompt
if (this.lastIterationHadToolError && !hasContent) {
this.lastIterationHadToolError = false;
this.context.addUserMessage(harnessMessage(TOOL_ERROR_RETRY_MESSAGE));
this.progress.onEvent('tool_error_retry', { iteration });
continue;
}
// Reasoning-only response: the model thought but never acted (its tool
// call was lost upstream or never emitted). The status nudge is the
// wrong feedback here β tell it directly to act via function calling.
if (!hasContent && hasReasoning && this.reasoningOnlyRetries < MAX_REASONING_ONLY_RETRIES) {
this.reasoningOnlyRetries++;
this.progress.onEvent('reasoning_only_retry', {
attempt: this.reasoningOnlyRetries,
max: MAX_REASONING_ONLY_RETRIES,
iteration,
});
this.context.addUserMessage(harnessMessage(REASONING_ONLY_RETRY_MESSAGE));
continue;
}
// Nudge: ask model to report status
if (this.nudgeCount < this.config.maxNudges) {
this.nudgeCount++;
this.progress.onEvent('nudge', { attempt: this.nudgeCount, max: this.config.maxNudges });
this.context.addUserMessage(harnessMessage(NUDGE_MESSAGE));
continue;
}
// Exhausted nudges
exitReason = 'nudge_exhaustion';
this.progress.onEvent('exit_reason', { reason: 'nudge_exhaustion', nudges: this.config.maxNudges, iteration });
break;
}
// --- HAS TOOL CALLS: execute them ---
const { results: toolResults, terminated } = await this.executeToolCalls(response.toolCalls);
// Add assistant + tool results to context. Executed tools may have had
// side effects, so they must be committed even when terminating β
// getSanitizedMessages() synthesizes placeholders for unexecuted calls.
this.context.addAssistantTurn(response);
this.context.addToolResults(toolResults);
// If execution was terminated by duplicate/pattern detection
if (terminated) {
exitReason = 'loop_detected';
break;
}
// Track tool errors
this.lastIterationHadToolError = toolResults.some(r => !r.success);
// Check compaction β use this loop's reported prompt tokens, fall back to local estimate
const promptTokens = this.lastPromptTokens || this.context.getTokenEstimate();
if (this.context.needsCompaction(promptTokens)) {
const preTokens = promptTokens;
const compactionUsage = await this.context.compact(this.provider, { signal: this.abortController.signal });
if (compactionUsage) {
this.cost.record(compactionUsage, this.provider.getProvider(), this.provider.getModel());
}
const postEstimate = this.context.getTokenEstimate();
this.progress.onEvent('compaction', { preCompactTokens: preTokens, postCompactEstimate: postEstimate });
}
// Check signals from tool results
let shouldBreak = false;
for (const result of toolResults) {
if (!result.signals) continue;
if (result.signals.statusComplete) {
this.lastStatusResult = result.signals.statusResult as StatusResult || {
task: '', done: '', remaining: 'none', complete: true, hasExplicitFlag: true,
};
}
if (result.signals.statusResult) {
this.lastStatusResult = result.signals.statusResult as StatusResult;
}
if (result.signals.setupComplete) {
exitReason = 'setup_complete';
shouldBreak = true;
}
if (result.signals.awaitingUser) {
exitReason = 'awaiting_user';
shouldBreak = true;
}
}
if (shouldBreak) break;
// If statusComplete found immediately after tool execution, check gate
if (this.lastStatusResult?.complete) {
const gateResult = await this.runCompletionGate();
if (gateResult) {
this.context.addUserMessage(harnessMessage(gateResult));
this.lastStatusResult = null;
continue;
}
exitReason = 'status_complete_post_tool';
this.progress.onEvent('exit_reason', { reason: 'status_complete_post_tool', iteration });
break;
}
}
// Determine exit reason if loop exhausted
if (!exitReason) {
exitReason = 'max_iterations';
this.progress.onEvent('exit_reason', { reason: 'max_iterations', maxIterations: this.config.maxIterations });
}
const success = exitReason === 'status_complete' ||
exitReason === 'status_complete_post_tool' ||
exitReason === 'status_remaining_empty' ||
exitReason === 'agent_type_exit' ||
exitReason === 'setup_complete' ||
exitReason === 'awaiting_user';
const summary = this.buildSummary(exitReason);
return {
success,
summary,
exitReason,
totalCost: this.cost.getTotalCost(),
totalUsage: this.cost.getTotalUsage(),
toolCount: this.toolCallCount,
turnCount: this.turnCount,
};
}
/**
* Execute tool calls with duplicate/pattern detection.
* `terminated` is true when execution stopped early due to loop detection;
* `results` always contains everything that actually executed.
*/
private async executeToolCalls(toolCalls: ToolCall[]): Promise<{ results: ToolResult[]; terminated: boolean }> {
const results: ToolResult[] = [];
const execContext: ToolExecContext = {
agentType: this.config.agentType,
isReadOnly: this.config.isReadOnly,
turnId: this.turnCount,
};
for (const toolCall of toolCalls) {
if (this.stopped) break;
// Duplicate detection
const currentSignature = getToolCallSignature(toolCall);
if (this.lastToolCallSignature === currentSignature) {
this.duplicateToolCallCount++;
// Return error result for duplicate
results.push({
tool_call_id: toolCall.id,
content: `Loop detected: Duplicate tool call #${this.duplicateToolCallCount}. Please try a different approach.`,
success: false,
});
this.progress.onEvent('tool_status', {
toolIndex: results.length - 1,
status: 'failed',
error: `Loop detected - duplicate tool call #${this.duplicateToolCallCount}`,
});
// Terminate if too many consecutive duplicates
if (this.duplicateToolCallCount >= this.config.maxDuplicateToolCalls) {
this.progress.onEvent('exit_reason', { reason: 'loop_detected', duplicates: this.duplicateToolCallCount });
return { results, terminated: true };
}
continue;
}
// Reset duplicate counter on non-duplicate
this.duplicateToolCallCount = 0;
this.lastToolCallSignature = currentSignature;
// Pattern detection (sliding window)
this.recentToolSignatures.push(currentSignature);
if (this.recentToolSignatures.length > PATTERN_WINDOW_SIZE) {
this.recentToolSignatures.shift();
}
if (this.recentToolSignatures.length === PATTERN_WINDOW_SIZE) {
const repeating = detectRepeatingPattern(this.recentToolSignatures, PATTERN_REPEAT_THRESHOLD);
if (repeating) {
this.progress.onEvent('exit_reason', { reason: 'pattern_detected', cycleLength: repeating });
return { results, terminated: true };
}
}
// Execute the tool (tool-executor emits tool_status events)
try {
const result = await this.executor.execute(toolCall, execContext);
results.push(this.dedupRepeatedResult(result, results));
this.toolCallCount++;
} catch (error) {
const errorMessage = error instanceof Error ? error.message : String(error);
results.push({
tool_call_id: toolCall.id,
content: `Error: ${errorMessage}`,
success: false,
});
this.progress.onEvent('tool_status', {
toolIndex: results.length - 1,
toolName: toolCall.function?.name,
status: 'failed',
error: errorMessage,
});
}
}
return { results, terminated: false };
}
/**
* Replace a large tool output with a marker when an identical result is
* already in the live context (e.g. re-reading an unchanged file). Only
* matches verbatim copies still present post-compaction β if the earlier
* copy was compacted away or truncated, the fresh output is kept.
*/
private dedupRepeatedResult(result: ToolResult, currentBatch: ToolResult[]): ToolResult {
if (!result.success || result.content.length < RESULT_DEDUP_MIN_CHARS) return result;
const seenInContext = this.context.getMessages().some(
m => m.role === 'tool' && typeof m.content === 'string' && m.content === result.content
);
const seenInBatch = currentBatch.some(r => r.content === result.content);
if (!seenInContext && !seenInBatch) return result;
return { ...result, content: RESULT_DEDUP_MARKER };
}
/**
* Run the completion gate if configured.
* Returns the error string if gate rejects, null if gate accepts (or not configured).
*/
private async runCompletionGate(): Promise<string | null> {
if (!this.config.completionGate) return null;
return await this.config.completionGate();
}
private buildSummary(exitReason: string): string {
switch (exitReason) {
case 'status_complete':
case 'status_complete_post_tool':
return 'Completed successfully (status --complete)';
case 'status_remaining_empty':
return 'Completed (no remaining work)';
case 'agent_type_exit':
return `Completed (${this.config.agentType} agent finished)`;
case 'setup_complete':
return 'Setup complete';
case 'awaiting_user':
return 'Paused awaiting user input';
case 'stopped':
return 'Stopped by user';
case 'error_stop':
return 'Stopped due to error';
case 'nudge_exhaustion':
return `Exited after ${this.config.maxNudges} nudge attempts without status`;
case 'loop_detected':
return 'Terminated due to tool call loop detection';
case 'max_iterations':
return `Reached maximum iterations (${this.config.maxIterations})`;
default:
return `Exited: ${exitReason}`;
}
}
}
// Export helpers for testing
export { detectMalformedToolCalls, extractToolCallsFromText, getToolCallSignature, detectRepeatingPattern };
|