vellum 0.2.1 → 0.2.2
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/README.md +15 -2
- package/bun.lock +5 -2
- package/package.json +4 -2
- package/scripts/capture-x-graphql.ts +562 -0
- package/scripts/ipc/check-swift-decoder-drift.ts +2 -1
- package/scripts/test.sh +5 -0
- package/src/__tests__/__snapshots__/ipc-snapshot.test.ts.snap +133 -34
- package/src/__tests__/account-registry.test.ts +2 -1
- package/src/__tests__/agent-heartbeat-service.test.ts +250 -0
- package/src/__tests__/asset-materialize-tool.test.ts +16 -15
- package/src/__tests__/asset-search-tool.test.ts +23 -22
- package/src/__tests__/attachments-store.test.ts +56 -127
- package/src/__tests__/browser-skill-baseline-tool-payload.test.ts +5 -4
- package/src/__tests__/browser-skill-endstate.test.ts +4 -3
- package/src/__tests__/call-bridge.test.ts +385 -0
- package/src/__tests__/call-constants.test.ts +40 -0
- package/src/__tests__/call-orchestrator.test.ts +130 -4
- package/src/__tests__/call-recovery.test.ts +518 -0
- package/src/__tests__/call-routes-http.test.ts +459 -0
- package/src/__tests__/call-state-machine.test.ts +143 -0
- package/src/__tests__/call-store.test.ts +216 -1
- package/src/__tests__/cli-discover.test.ts +1 -1
- package/src/__tests__/commit-message-enrichment-service.test.ts +148 -7
- package/src/__tests__/compaction.benchmark.test.ts +176 -0
- package/src/__tests__/computer-use-tools.test.ts +250 -0
- package/src/__tests__/config-schema.test.ts +299 -3
- package/src/__tests__/conflict-store.test.ts +2 -1
- package/src/__tests__/contacts-tools.test.ts +331 -0
- package/src/__tests__/conversation-store.test.ts +30 -32
- package/src/__tests__/credential-security-invariants.test.ts +4 -0
- package/src/__tests__/date-context.test.ts +373 -0
- package/src/__tests__/db-schedule-syntax-migration.test.ts +129 -0
- package/src/__tests__/fixtures/media-reuse-fixtures.ts +3 -3
- package/src/__tests__/followup-tools.test.ts +303 -0
- package/src/__tests__/handlers-twitter-config.test.ts +718 -0
- package/src/__tests__/intent-routing.test.ts +64 -57
- package/src/__tests__/ipc-roundtrip.benchmark.test.ts +237 -0
- package/src/__tests__/ipc-snapshot.test.ts +62 -28
- package/src/__tests__/llm-usage-store.test.ts +3 -8
- package/src/__tests__/media-generate-image.test.ts +1 -1
- package/src/__tests__/media-reuse-story.e2e.test.ts +7 -7
- package/src/__tests__/memory-retrieval.benchmark.test.ts +430 -0
- package/src/__tests__/parallel-tool.benchmark.test.ts +294 -0
- package/src/__tests__/playbook-tools.test.ts +342 -0
- package/src/__tests__/profile-compiler.test.ts +2 -1
- package/src/__tests__/provider-streaming.benchmark.test.ts +773 -0
- package/src/__tests__/recurrence-engine-rruleset.test.ts +78 -0
- package/src/__tests__/recurrence-engine.test.ts +69 -0
- package/src/__tests__/recurrence-types.test.ts +71 -0
- package/src/__tests__/registry.test.ts +5 -3
- package/src/__tests__/relay-server.test.ts +633 -0
- package/src/__tests__/reminder-store.test.ts +6 -3
- package/src/__tests__/reminder.test.ts +43 -77
- package/src/__tests__/run-orchestrator-assistant-events.test.ts +8 -4
- package/src/__tests__/run-orchestrator.test.ts +4 -4
- package/src/__tests__/runtime-attachment-metadata.test.ts +7 -6
- package/src/__tests__/runtime-runs-http.test.ts +4 -4
- package/src/__tests__/runtime-runs.test.ts +4 -4
- package/src/__tests__/schedule-store.test.ts +482 -0
- package/src/__tests__/schedule-tools.test.ts +700 -0
- package/src/__tests__/scheduler-recurrence.test.ts +329 -0
- package/src/__tests__/server-history-render.test.ts +14 -13
- package/src/__tests__/session-error.test.ts +28 -0
- package/src/__tests__/session-init.benchmark.test.ts +462 -0
- package/src/__tests__/session-queue.test.ts +71 -48
- package/src/__tests__/session-runtime-assembly.test.ts +161 -0
- package/src/__tests__/session-surfaces-task-progress.test.ts +104 -0
- package/src/__tests__/signup-e2e.test.ts +2 -1
- package/src/__tests__/skill-projection.benchmark.test.ts +328 -0
- package/src/__tests__/skill-script-runner.test.ts +159 -0
- package/src/__tests__/speaker-identification.test.ts +52 -0
- package/src/__tests__/subagent-manager-notify.test.ts +42 -10
- package/src/__tests__/subagent-tools.test.ts +141 -41
- package/src/__tests__/task-compiler.test.ts +2 -1
- package/src/__tests__/task-runner.test.ts +2 -1
- package/src/__tests__/task-scheduler.test.ts +2 -1
- package/src/__tests__/task-tools.test.ts +49 -56
- package/src/__tests__/tool-audit-listener.test.ts +1 -0
- package/src/__tests__/tool-domain-event-publisher.test.ts +2 -0
- package/src/__tests__/tool-execution-pipeline.benchmark.test.ts +500 -0
- package/src/__tests__/tool-executor.test.ts +13 -17
- package/src/__tests__/turn-commit.test.ts +218 -3
- package/src/__tests__/twilio-provider.test.ts +143 -0
- package/src/__tests__/twilio-routes.test.ts +789 -0
- package/src/__tests__/twitter-auth-handler.test.ts +581 -0
- package/src/__tests__/view-image-tool.test.ts +217 -0
- package/src/__tests__/workspace-git-service.test.ts +186 -0
- package/src/__tests__/workspace-heartbeat-service.test.ts +13 -3
- package/src/agent-heartbeat/agent-heartbeat-service.ts +155 -0
- package/src/bundler/app-bundler.ts +12 -8
- package/src/calls/call-bridge.ts +95 -0
- package/src/calls/call-constants.ts +43 -5
- package/src/calls/call-domain.ts +276 -0
- package/src/calls/call-orchestrator.ts +43 -17
- package/src/calls/call-recovery.ts +207 -0
- package/src/calls/call-state-machine.ts +68 -0
- package/src/calls/call-store.ts +192 -5
- package/src/calls/relay-server.ts +41 -4
- package/src/calls/speaker-identification.ts +213 -0
- package/src/calls/twilio-provider.ts +10 -6
- package/src/calls/twilio-routes.ts +90 -76
- package/src/calls/types.ts +1 -1
- package/src/cli/config-commands.ts +334 -0
- package/src/cli/core-commands.ts +776 -0
- package/src/cli/doordash.ts +251 -1
- package/src/cli/ipc-client.ts +82 -0
- package/src/cli/map.ts +246 -0
- package/src/cli/twitter.ts +575 -0
- package/src/cli.ts +7 -5
- package/src/commands/__tests__/cc-command-registry.test.ts +319 -0
- package/src/commands/cc-command-registry.ts +209 -0
- package/src/config/bundled-skills/contacts/SKILL.md +39 -0
- package/src/config/bundled-skills/contacts/TOOLS.json +122 -0
- package/src/config/bundled-skills/contacts/tools/contact-merge.ts +9 -0
- package/src/config/bundled-skills/contacts/tools/contact-search.ts +9 -0
- package/src/config/bundled-skills/contacts/tools/contact-upsert.ts +9 -0
- package/src/config/bundled-skills/document/SKILL.md +18 -0
- package/src/config/bundled-skills/document/TOOLS.json +53 -0
- package/src/config/bundled-skills/document/tools/document-create.ts +9 -0
- package/src/config/bundled-skills/document/tools/document-update.ts +9 -0
- package/src/config/bundled-skills/doordash/SKILL.md +82 -23
- package/src/config/bundled-skills/followups/SKILL.md +32 -0
- package/src/config/bundled-skills/followups/TOOLS.json +100 -0
- package/src/config/bundled-skills/followups/tools/followup-create.ts +9 -0
- package/src/config/bundled-skills/followups/tools/followup-list.ts +9 -0
- package/src/config/bundled-skills/followups/tools/followup-resolve.ts +9 -0
- package/src/config/bundled-skills/image-studio/tools/media-generate-image.ts +1 -23
- package/src/config/bundled-skills/messaging/tools/messaging-analyze-style.ts +2 -1
- package/src/config/bundled-skills/playbooks/SKILL.md +31 -0
- package/src/config/bundled-skills/playbooks/TOOLS.json +126 -0
- package/src/config/bundled-skills/playbooks/tools/playbook-create.ts +9 -0
- package/src/config/bundled-skills/playbooks/tools/playbook-delete.ts +9 -0
- package/src/config/bundled-skills/playbooks/tools/playbook-list.ts +9 -0
- package/src/config/bundled-skills/playbooks/tools/playbook-update.ts +9 -0
- package/src/config/bundled-skills/reminder/SKILL.md +20 -0
- package/src/config/bundled-skills/reminder/TOOLS.json +67 -0
- package/src/config/bundled-skills/reminder/tools/reminder-cancel.ts +9 -0
- package/src/config/bundled-skills/reminder/tools/reminder-create.ts +9 -0
- package/src/config/bundled-skills/reminder/tools/reminder-list.ts +9 -0
- package/src/config/bundled-skills/schedule/SKILL.md +74 -0
- package/src/config/bundled-skills/schedule/TOOLS.json +135 -0
- package/src/config/bundled-skills/schedule/tools/schedule-create.ts +9 -0
- package/src/config/bundled-skills/schedule/tools/schedule-delete.ts +9 -0
- package/src/config/bundled-skills/schedule/tools/schedule-list.ts +9 -0
- package/src/config/bundled-skills/schedule/tools/schedule-update.ts +9 -0
- package/src/config/bundled-skills/subagent/SKILL.md +25 -0
- package/src/config/bundled-skills/subagent/TOOLS.json +107 -0
- package/src/config/bundled-skills/subagent/tools/subagent-abort.ts +9 -0
- package/src/config/bundled-skills/subagent/tools/subagent-message.ts +9 -0
- package/src/config/bundled-skills/subagent/tools/subagent-read.ts +9 -0
- package/src/config/bundled-skills/subagent/tools/subagent-spawn.ts +9 -0
- package/src/config/bundled-skills/subagent/tools/subagent-status.ts +9 -0
- package/src/config/bundled-skills/tasks/SKILL.md +28 -0
- package/src/config/bundled-skills/tasks/TOOLS.json +256 -0
- package/src/config/bundled-skills/tasks/tools/task-delete.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-list-add.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-list-remove.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-list-show.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-list-update.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-list.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-run.ts +9 -0
- package/src/config/bundled-skills/tasks/tools/task-save.ts +9 -0
- package/src/config/bundled-skills/twitter/SKILL.md +134 -0
- package/src/config/bundled-skills/watcher/SKILL.md +27 -0
- package/src/config/bundled-skills/watcher/TOOLS.json +147 -0
- package/src/config/bundled-skills/watcher/tools/watcher-create.ts +9 -0
- package/src/config/bundled-skills/watcher/tools/watcher-delete.ts +9 -0
- package/src/config/bundled-skills/watcher/tools/watcher-digest.ts +9 -0
- package/src/config/bundled-skills/watcher/tools/watcher-list.ts +9 -0
- package/src/config/bundled-skills/watcher/tools/watcher-update.ts +9 -0
- package/src/config/defaults.ts +33 -0
- package/src/config/loader.ts +4 -1
- package/src/config/schema.ts +161 -1
- package/src/config/system-prompt.ts +61 -16
- package/src/config/templates/IDENTITY.md +7 -0
- package/src/config/types.ts +4 -0
- package/src/contacts/contact-store.ts +4 -4
- package/src/daemon/assistant-attachments.ts +10 -0
- package/src/daemon/classifier.ts +3 -1
- package/src/daemon/computer-use-session.ts +3 -1
- package/src/daemon/date-context.ts +136 -0
- package/src/daemon/handlers/apps.ts +16 -1
- package/src/daemon/handlers/browser.ts +54 -0
- package/src/daemon/handlers/computer-use.ts +7 -1
- package/src/daemon/handlers/config.ts +163 -5
- package/src/daemon/handlers/diagnostics.ts +5 -1
- package/src/daemon/handlers/documents.ts +18 -29
- package/src/daemon/handlers/home-base.ts +5 -1
- package/src/daemon/handlers/index.ts +40 -277
- package/src/daemon/handlers/misc.ts +9 -1
- package/src/daemon/handlers/publish.ts +6 -1
- package/src/daemon/handlers/sessions.ts +65 -12
- package/src/daemon/handlers/shared.ts +36 -1
- package/src/daemon/handlers/signing.ts +37 -0
- package/src/daemon/handlers/skills.ts +20 -6
- package/src/daemon/handlers/subagents.ts +8 -3
- package/src/daemon/handlers/twitter-auth.ts +169 -0
- package/src/daemon/handlers/work-items.ts +384 -68
- package/src/daemon/ipc-contract-inventory.json +28 -4
- package/src/daemon/ipc-contract.ts +133 -37
- package/src/daemon/ipc-protocol.ts +7 -2
- package/src/daemon/lifecycle.ts +21 -0
- package/src/daemon/main.ts +10 -4
- package/src/daemon/ride-shotgun-handler.ts +74 -10
- package/src/daemon/server.ts +143 -26
- package/src/daemon/session-agent-loop.ts +887 -0
- package/src/daemon/session-attachments.ts +28 -5
- package/src/daemon/session-error.ts +24 -3
- package/src/daemon/session-lifecycle.ts +147 -0
- package/src/daemon/session-media-retry.ts +147 -0
- package/src/daemon/session-messaging.ts +145 -0
- package/src/daemon/session-notifiers.ts +164 -0
- package/src/daemon/session-process.ts +2 -2
- package/src/daemon/session-queue-manager.ts +1 -0
- package/src/daemon/session-runtime-assembly.ts +52 -0
- package/src/daemon/session-skill-tools.ts +124 -5
- package/src/daemon/session-slash.ts +3 -0
- package/src/daemon/session-surfaces.ts +77 -2
- package/src/daemon/session-tool-setup.ts +216 -2
- package/src/daemon/session-usage.ts +0 -2
- package/src/daemon/session.ts +114 -1404
- package/src/daemon/video-thumbnail.ts +60 -0
- package/src/doordash/client.ts +121 -27
- package/src/doordash/queries.ts +1 -2
- package/src/export/formatter.ts +3 -1
- package/src/followups/followup-store.ts +4 -2
- package/src/followups/types.ts +6 -0
- package/src/hooks/templates.ts +1 -1
- package/src/index.ts +32 -1153
- package/src/memory/attachments-store.ts +28 -83
- package/src/memory/channel-delivery-store.ts +7 -21
- package/src/memory/clarification-resolver.ts +6 -5
- package/src/memory/contradiction-checker.ts +3 -2
- package/src/memory/conversation-key-store.ts +10 -29
- package/src/memory/conversation-store.ts +2 -1
- package/src/memory/db.ts +96 -2
- package/src/memory/entity-extractor.ts +6 -3
- package/src/memory/items-extractor.ts +5 -4
- package/src/memory/jobs-store.ts +3 -2
- package/src/memory/llm-usage-store.ts +1 -2
- package/src/memory/runs-store.ts +1 -2
- package/src/memory/schema.ts +23 -2
- package/src/messaging/style-analyzer.ts +3 -2
- package/src/messaging/thread-summarizer.ts +8 -12
- package/src/messaging/triage-engine.ts +4 -2
- package/src/providers/openrouter/client.ts +20 -0
- package/src/providers/registry.ts +8 -0
- package/src/runtime/http-server.ts +108 -20
- package/src/runtime/routes/attachment-routes.ts +2 -3
- package/src/runtime/routes/call-routes.ts +140 -0
- package/src/runtime/routes/channel-routes.ts +5 -10
- package/src/runtime/routes/conversation-routes.ts +5 -5
- package/src/runtime/routes/run-routes.ts +2 -2
- package/src/runtime/run-orchestrator.ts +9 -3
- package/src/schedule/recurrence-engine.ts +138 -0
- package/src/schedule/recurrence-types.ts +67 -0
- package/src/schedule/schedule-store.ts +102 -57
- package/src/schedule/scheduler.ts +9 -6
- package/src/security/oauth2.ts +29 -4
- package/src/security/secret-allowlist.ts +46 -0
- package/src/skills/clawhub.ts +1 -1
- package/src/subagent/manager.ts +40 -8
- package/src/swarm/backend-claude-code.ts +64 -9
- package/src/swarm/worker-prompts.ts +2 -1
- package/src/tasks/SPEC.md +34 -28
- package/src/tasks/ephemeral-permissions.ts +16 -7
- package/src/tasks/task-compiler.ts +5 -4
- package/src/tasks/task-runner.ts +10 -5
- package/src/tasks/task-scheduler.ts +1 -1
- package/src/tasks/tool-sanitizer.ts +36 -0
- package/src/tools/assets/search.ts +4 -4
- package/src/tools/browser/api-map.ts +220 -0
- package/src/tools/browser/auto-navigate.ts +270 -0
- package/src/tools/browser/browser-execution.ts +2 -1
- package/src/tools/browser/browser-manager.ts +2 -2
- package/src/tools/browser/network-recorder.ts +5 -4
- package/src/tools/browser/x-auto-navigate.ts +207 -0
- package/src/tools/calls/call-end.ts +17 -67
- package/src/tools/calls/call-start.ts +24 -85
- package/src/tools/calls/call-status.ts +35 -51
- package/src/tools/claude-code/claude-code.ts +77 -11
- package/src/tools/contacts/contact-merge.ts +46 -78
- package/src/tools/contacts/contact-search.ts +35 -79
- package/src/tools/contacts/contact-upsert.ts +35 -108
- package/src/tools/credentials/vault.ts +20 -4
- package/src/tools/document/document-tool.ts +71 -144
- package/src/tools/executor.ts +129 -10
- package/src/tools/followups/followup_create.ts +46 -88
- package/src/tools/followups/followup_list.ts +34 -74
- package/src/tools/followups/followup_resolve.ts +31 -66
- package/src/tools/host-terminal/cli-discover.ts +2 -1
- package/src/tools/host-terminal/host-shell.ts +10 -0
- package/src/tools/memory/handlers.ts +5 -4
- package/src/tools/network/__tests__/web-search.test.ts +427 -0
- package/src/tools/network/script-proxy/__tests__/logging.test.ts +248 -0
- package/src/tools/network/script-proxy/__tests__/policy.test.ts +234 -0
- package/src/tools/network/script-proxy/__tests__/router.test.ts +76 -0
- package/src/tools/network/web-fetch.ts +18 -6
- package/src/tools/playbooks/index.ts +4 -5
- package/src/tools/playbooks/playbook-create.ts +3 -47
- package/src/tools/playbooks/playbook-delete.ts +1 -25
- package/src/tools/playbooks/playbook-list.ts +1 -28
- package/src/tools/playbooks/playbook-update.ts +3 -51
- package/src/tools/reminder/reminder.ts +5 -78
- package/src/tools/schedule/create.ts +69 -74
- package/src/tools/schedule/delete.ts +21 -47
- package/src/tools/schedule/list.ts +55 -74
- package/src/tools/schedule/update.ts +77 -84
- package/src/tools/subagent/abort.ts +29 -58
- package/src/tools/subagent/message.ts +30 -63
- package/src/tools/subagent/read.ts +53 -84
- package/src/tools/subagent/spawn.ts +43 -82
- package/src/tools/subagent/status.ts +42 -71
- package/src/tools/swarm/delegate.ts +2 -1
- package/src/tools/tasks/index.ts +8 -8
- package/src/tools/tasks/task-delete.ts +60 -88
- package/src/tools/tasks/task-list.ts +31 -52
- package/src/tools/tasks/task-run.ts +72 -108
- package/src/tools/tasks/task-save.ts +33 -65
- package/src/tools/tasks/work-item-enqueue.ts +183 -215
- package/src/tools/tasks/work-item-list.ts +33 -63
- package/src/tools/tasks/work-item-remove.ts +45 -97
- package/src/tools/tasks/work-item-update.ts +91 -163
- package/src/tools/terminal/backends/native.ts +3 -1
- package/src/tools/tool-manifest.ts +0 -62
- package/src/tools/types.ts +6 -0
- package/src/tools/ui-surface/definitions.ts +3 -1
- package/src/tools/watch/screen-watch.ts +3 -1
- package/src/tools/watcher/create.ts +52 -98
- package/src/tools/watcher/delete.ts +20 -46
- package/src/tools/watcher/digest.ts +36 -70
- package/src/tools/watcher/list.ts +49 -79
- package/src/tools/watcher/update.ts +45 -91
- package/src/twitter/client.ts +690 -0
- package/src/twitter/session.ts +91 -0
- package/src/usage/types.ts +0 -1
- package/src/util/truncate.ts +6 -0
- package/src/watcher/providers/slack.ts +2 -1
- package/src/watcher/watcher-store.ts +3 -2
- package/src/work-items/work-item-store.ts +27 -2
- package/src/workspace/commit-message-enrichment-service.ts +31 -7
- package/src/workspace/git-service.ts +87 -22
- package/src/workspace/provider-commit-message-generator.ts +242 -0
- package/src/workspace/turn-commit.ts +62 -3
- package/src/tools/contacts/index.ts +0 -4
- package/src/tools/document/index.ts +0 -5
- package/src/tools/followups/index.ts +0 -3
- package/src/tools/subagent/index.ts +0 -5
- /package/src/__tests__/{memory-context-benchmark.test.ts → memory-context-benchmark.benchmark.test.ts} +0 -0
|
@@ -0,0 +1,887 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Agent loop execution extracted from Session.runAgentLoop.
|
|
3
|
+
*
|
|
4
|
+
* This module contains the core agent loop orchestration: pre-flight
|
|
5
|
+
* setup, event handling, retry logic, history reconstruction, and
|
|
6
|
+
* completion event emission. The Session class delegates its
|
|
7
|
+
* runAgentLoop method here via the AgentLoopSessionContext interface.
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
import { v4 as uuid } from 'uuid';
|
|
11
|
+
import type { Message, ContentBlock, ImageContent } from '../providers/types.js';
|
|
12
|
+
import type { ServerMessage, UsageStats, SurfaceType, SurfaceData, DynamicPageSurfaceData } from './ipc-protocol.js';
|
|
13
|
+
import type { AgentLoop, CheckpointDecision, AgentEvent } from '../agent/loop.js';
|
|
14
|
+
import type { Provider } from '../providers/types.js';
|
|
15
|
+
import { createAssistantMessage } from '../agent/message-types.js';
|
|
16
|
+
import * as conversationStore from '../memory/conversation-store.js';
|
|
17
|
+
import type { PermissionPrompter } from '../permissions/prompter.js';
|
|
18
|
+
import { getConfig } from '../config/loader.js';
|
|
19
|
+
import { getLogger } from '../util/logger.js';
|
|
20
|
+
import type { TraceEmitter } from './trace-emitter.js';
|
|
21
|
+
import { classifySessionError, isUserCancellation, isContextTooLarge, buildSessionErrorMessage } from './session-error.js';
|
|
22
|
+
import type { ToolProfiler } from '../events/tool-profiling-listener.js';
|
|
23
|
+
import type { ContextWindowManager } from '../context/window-manager.js';
|
|
24
|
+
import { getHookManager } from '../hooks/manager.js';
|
|
25
|
+
import { truncate } from '../util/truncate.js';
|
|
26
|
+
import { stripMemoryRecallMessages } from '../memory/retriever.js';
|
|
27
|
+
import { getApp, listAppFiles } from '../memory/app-store.js';
|
|
28
|
+
import type { ConflictGate } from './session-conflict-gate.js';
|
|
29
|
+
import { stripDynamicProfileMessages } from './session-dynamic-profile.js';
|
|
30
|
+
import type { MessageQueue } from './session-queue-manager.js';
|
|
31
|
+
import type { QueueDrainReason } from './session-queue-manager.js';
|
|
32
|
+
import {
|
|
33
|
+
applyRuntimeInjections,
|
|
34
|
+
stripActiveSurfaceContext,
|
|
35
|
+
stripWorkspaceTopLevelContext,
|
|
36
|
+
stripChannelCapabilityContext,
|
|
37
|
+
stripTemporalContext,
|
|
38
|
+
} from './session-runtime-assembly.js';
|
|
39
|
+
import { buildTemporalContext } from './date-context.js';
|
|
40
|
+
import type { ActiveSurfaceContext, ChannelCapabilities } from './session-runtime-assembly.js';
|
|
41
|
+
import {
|
|
42
|
+
cleanAssistantContent,
|
|
43
|
+
drainDirectiveDisplayBuffer,
|
|
44
|
+
type DirectiveRequest,
|
|
45
|
+
type AssistantAttachmentDraft,
|
|
46
|
+
} from './assistant-attachments.js';
|
|
47
|
+
import { prepareMemoryContext } from './session-memory.js';
|
|
48
|
+
import {
|
|
49
|
+
approveHostAttachmentRead,
|
|
50
|
+
formatAttachmentWarnings,
|
|
51
|
+
resolveAssistantAttachments,
|
|
52
|
+
} from './session-attachments.js';
|
|
53
|
+
import { consolidateAssistantMessages } from './session-history.js';
|
|
54
|
+
import { recordUsage } from './session-usage.js';
|
|
55
|
+
import { recordRequestLog } from '../memory/llm-request-log-store.js';
|
|
56
|
+
import { isProviderOrderingError } from './session-slash.js';
|
|
57
|
+
import { repairHistory, deepRepairHistory } from './history-repair.js';
|
|
58
|
+
import { stripMediaPayloadsForRetry, raceWithTimeout } from './session-media-retry.js';
|
|
59
|
+
import { commitTurnChanges } from '../workspace/turn-commit.js';
|
|
60
|
+
import { getWorkspaceGitService } from '../workspace/git-service.js';
|
|
61
|
+
import type { UsageActor } from '../usage/actors.js';
|
|
62
|
+
import type { SkillProjectionCache } from './session-skill-tools.js';
|
|
63
|
+
|
|
64
|
+
const log = getLogger('session-agent-loop');
|
|
65
|
+
|
|
66
|
+
type GitServiceInitializer = {
|
|
67
|
+
ensureInitialized(): Promise<void>;
|
|
68
|
+
};
|
|
69
|
+
|
|
70
|
+
// ── Context Interface ────────────────────────────────────────────────
|
|
71
|
+
|
|
72
|
+
export interface AgentLoopSessionContext {
|
|
73
|
+
readonly conversationId: string;
|
|
74
|
+
messages: Message[];
|
|
75
|
+
processing: boolean;
|
|
76
|
+
abortController: AbortController | null;
|
|
77
|
+
currentRequestId?: string;
|
|
78
|
+
|
|
79
|
+
readonly agentLoop: AgentLoop;
|
|
80
|
+
readonly provider: Provider;
|
|
81
|
+
readonly systemPrompt: string;
|
|
82
|
+
|
|
83
|
+
readonly contextWindowManager: ContextWindowManager;
|
|
84
|
+
contextCompactedMessageCount: number;
|
|
85
|
+
contextCompactedAt: number | null;
|
|
86
|
+
|
|
87
|
+
readonly conflictGate: ConflictGate;
|
|
88
|
+
readonly memoryPolicy: { scopeId: string; includeDefaultFallback: boolean };
|
|
89
|
+
|
|
90
|
+
currentActiveSurfaceId?: string;
|
|
91
|
+
currentPage?: string;
|
|
92
|
+
readonly surfaceState: Map<string, { surfaceType: SurfaceType; data: SurfaceData }>;
|
|
93
|
+
pendingSurfaceActions: Map<string, { surfaceType: SurfaceType }>;
|
|
94
|
+
currentTurnSurfaces: Array<{ surfaceId: string; surfaceType: SurfaceType; title?: string; data: SurfaceData; actions?: Array<{ id: string; label: string; style?: string }>; display?: string }>;
|
|
95
|
+
|
|
96
|
+
workingDir: string;
|
|
97
|
+
workspaceTopLevelContext: string | null;
|
|
98
|
+
workspaceTopLevelDirty: boolean;
|
|
99
|
+
channelCapabilities?: ChannelCapabilities;
|
|
100
|
+
|
|
101
|
+
readonly coreToolNames: Set<string>;
|
|
102
|
+
allowedToolNames?: Set<string>;
|
|
103
|
+
preactivatedSkillIds?: string[];
|
|
104
|
+
readonly skillProjectionState: Map<string, string>;
|
|
105
|
+
readonly skillProjectionCache: SkillProjectionCache;
|
|
106
|
+
|
|
107
|
+
readonly traceEmitter: TraceEmitter;
|
|
108
|
+
readonly profiler: ToolProfiler;
|
|
109
|
+
usageStats: UsageStats;
|
|
110
|
+
turnCount: number;
|
|
111
|
+
|
|
112
|
+
lastAssistantAttachments: AssistantAttachmentDraft[];
|
|
113
|
+
lastAttachmentWarnings: string[];
|
|
114
|
+
|
|
115
|
+
hasNoClient: boolean;
|
|
116
|
+
readonly prompter: PermissionPrompter;
|
|
117
|
+
readonly queue: MessageQueue;
|
|
118
|
+
|
|
119
|
+
getWorkspaceGitService?: (workspaceDir: string) => GitServiceInitializer;
|
|
120
|
+
commitTurnChanges?: typeof commitTurnChanges;
|
|
121
|
+
|
|
122
|
+
refreshWorkspaceTopLevelContextIfNeeded(): void;
|
|
123
|
+
markWorkspaceTopLevelDirty(): void;
|
|
124
|
+
getQueueDepth(): number;
|
|
125
|
+
hasQueuedMessages(): boolean;
|
|
126
|
+
canHandoffAtCheckpoint(): boolean;
|
|
127
|
+
drainQueue(reason: QueueDrainReason): void;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// ── runAgentLoop ─────────────────────────────────────────────────────
|
|
131
|
+
|
|
132
|
+
export async function runAgentLoopImpl(
|
|
133
|
+
ctx: AgentLoopSessionContext,
|
|
134
|
+
content: string,
|
|
135
|
+
userMessageId: string,
|
|
136
|
+
onEvent: (msg: ServerMessage) => void,
|
|
137
|
+
options?: { skipPreMessageRollback?: boolean },
|
|
138
|
+
): Promise<void> {
|
|
139
|
+
if (!ctx.abortController) {
|
|
140
|
+
throw new Error('runAgentLoop called without prior persistUserMessage');
|
|
141
|
+
}
|
|
142
|
+
const abortController = ctx.abortController;
|
|
143
|
+
const reqId = ctx.currentRequestId ?? uuid();
|
|
144
|
+
const rlog = log.child({ conversationId: ctx.conversationId, requestId: reqId });
|
|
145
|
+
let yieldedForHandoff = false;
|
|
146
|
+
|
|
147
|
+
ctx.lastAssistantAttachments = [];
|
|
148
|
+
ctx.lastAttachmentWarnings = [];
|
|
149
|
+
|
|
150
|
+
// Ensure workspace git repo is initialized before any tools run.
|
|
151
|
+
try {
|
|
152
|
+
const getWorkspaceGitServiceFn = ctx.getWorkspaceGitService ?? getWorkspaceGitService;
|
|
153
|
+
const gitService = getWorkspaceGitServiceFn(ctx.workingDir);
|
|
154
|
+
await gitService.ensureInitialized();
|
|
155
|
+
} catch (err) {
|
|
156
|
+
rlog.warn({ err }, 'Failed to initialize workspace git repo (non-fatal)');
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
ctx.profiler.startRequest();
|
|
160
|
+
let turnStarted = false;
|
|
161
|
+
|
|
162
|
+
try {
|
|
163
|
+
const preMessageResult = await getHookManager().trigger('pre-message', {
|
|
164
|
+
sessionId: ctx.conversationId,
|
|
165
|
+
messagePreview: truncate(content, 200, ''),
|
|
166
|
+
});
|
|
167
|
+
|
|
168
|
+
if (preMessageResult.blocked) {
|
|
169
|
+
if (!options?.skipPreMessageRollback) {
|
|
170
|
+
ctx.messages.pop();
|
|
171
|
+
conversationStore.deleteMessageById(userMessageId);
|
|
172
|
+
}
|
|
173
|
+
onEvent({ type: 'error', message: `Message blocked by hook "${preMessageResult.blockedBy}"` });
|
|
174
|
+
return;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
const isFirstMessage = ctx.messages.length === 1;
|
|
178
|
+
|
|
179
|
+
const compacted = await ctx.contextWindowManager.maybeCompact(
|
|
180
|
+
ctx.messages,
|
|
181
|
+
abortController.signal,
|
|
182
|
+
{ lastCompactedAt: ctx.contextCompactedAt ?? undefined },
|
|
183
|
+
);
|
|
184
|
+
if (compacted.compacted) {
|
|
185
|
+
ctx.messages = compacted.messages;
|
|
186
|
+
ctx.contextCompactedMessageCount += compacted.compactedPersistedMessages;
|
|
187
|
+
ctx.contextCompactedAt = Date.now();
|
|
188
|
+
conversationStore.updateConversationContextWindow(
|
|
189
|
+
ctx.conversationId,
|
|
190
|
+
compacted.summaryText,
|
|
191
|
+
ctx.contextCompactedMessageCount,
|
|
192
|
+
);
|
|
193
|
+
onEvent({
|
|
194
|
+
type: 'context_compacted',
|
|
195
|
+
previousEstimatedInputTokens: compacted.previousEstimatedInputTokens,
|
|
196
|
+
estimatedInputTokens: compacted.estimatedInputTokens,
|
|
197
|
+
maxInputTokens: compacted.maxInputTokens,
|
|
198
|
+
thresholdTokens: compacted.thresholdTokens,
|
|
199
|
+
compactedMessages: compacted.compactedMessages,
|
|
200
|
+
summaryCalls: compacted.summaryCalls,
|
|
201
|
+
summaryInputTokens: compacted.summaryInputTokens,
|
|
202
|
+
summaryOutputTokens: compacted.summaryOutputTokens,
|
|
203
|
+
summaryModel: compacted.summaryModel,
|
|
204
|
+
});
|
|
205
|
+
emitUsage(ctx, compacted.summaryInputTokens, compacted.summaryOutputTokens, compacted.summaryModel, onEvent, 'context_compactor', reqId);
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
let firstAssistantText = '';
|
|
209
|
+
let exchangeInputTokens = 0;
|
|
210
|
+
let exchangeOutputTokens = 0;
|
|
211
|
+
let model = '';
|
|
212
|
+
let runMessages = ctx.messages;
|
|
213
|
+
const pendingToolResults = new Map<string, { content: string; isError: boolean; contentBlocks?: ContentBlock[] }>();
|
|
214
|
+
const persistedToolUseIds = new Set<string>();
|
|
215
|
+
const accumulatedDirectives: DirectiveRequest[] = [];
|
|
216
|
+
const accumulatedToolContentBlocks: ContentBlock[] = [];
|
|
217
|
+
const directiveWarnings: string[] = [];
|
|
218
|
+
let pendingDirectiveDisplayBuffer = '';
|
|
219
|
+
let lastAssistantMessageId: string | undefined;
|
|
220
|
+
let providerErrorUserMessage: string | null = null;
|
|
221
|
+
|
|
222
|
+
const memoryResult = await prepareMemoryContext(
|
|
223
|
+
{
|
|
224
|
+
conversationId: ctx.conversationId,
|
|
225
|
+
messages: ctx.messages,
|
|
226
|
+
systemPrompt: ctx.systemPrompt,
|
|
227
|
+
provider: ctx.provider,
|
|
228
|
+
conflictGate: ctx.conflictGate,
|
|
229
|
+
scopeId: ctx.memoryPolicy.scopeId,
|
|
230
|
+
includeDefaultFallback: ctx.memoryPolicy.includeDefaultFallback,
|
|
231
|
+
},
|
|
232
|
+
content,
|
|
233
|
+
userMessageId,
|
|
234
|
+
abortController.signal,
|
|
235
|
+
onEvent,
|
|
236
|
+
);
|
|
237
|
+
|
|
238
|
+
if (memoryResult.conflictClarification) {
|
|
239
|
+
const assistantMessage = createAssistantMessage(memoryResult.conflictClarification);
|
|
240
|
+
conversationStore.addMessage(
|
|
241
|
+
ctx.conversationId,
|
|
242
|
+
'assistant',
|
|
243
|
+
JSON.stringify(assistantMessage.content),
|
|
244
|
+
);
|
|
245
|
+
ctx.messages.push(assistantMessage);
|
|
246
|
+
onEvent({
|
|
247
|
+
type: 'assistant_text_delta',
|
|
248
|
+
text: memoryResult.conflictClarification,
|
|
249
|
+
sessionId: ctx.conversationId,
|
|
250
|
+
});
|
|
251
|
+
ctx.traceEmitter.emit('message_complete', 'Conflict clarification requested (relevant)', {
|
|
252
|
+
requestId: reqId,
|
|
253
|
+
status: 'info',
|
|
254
|
+
attributes: { conflictGate: 'relevant' },
|
|
255
|
+
});
|
|
256
|
+
onEvent({ type: 'message_complete', sessionId: ctx.conversationId });
|
|
257
|
+
return;
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
const { recall, dynamicProfile, softConflictInstruction, recallInjectionStrategy } = memoryResult;
|
|
261
|
+
runMessages = memoryResult.runMessages;
|
|
262
|
+
|
|
263
|
+
// Build active surface context
|
|
264
|
+
let activeSurface: ActiveSurfaceContext | null = null;
|
|
265
|
+
if (ctx.currentActiveSurfaceId) {
|
|
266
|
+
const stored = ctx.surfaceState.get(ctx.currentActiveSurfaceId);
|
|
267
|
+
if (stored && stored.surfaceType === 'dynamic_page') {
|
|
268
|
+
const data = stored.data as DynamicPageSurfaceData;
|
|
269
|
+
activeSurface = {
|
|
270
|
+
surfaceId: ctx.currentActiveSurfaceId,
|
|
271
|
+
html: data.html,
|
|
272
|
+
currentPage: ctx.currentPage,
|
|
273
|
+
};
|
|
274
|
+
if (data.appId) {
|
|
275
|
+
const app = getApp(data.appId);
|
|
276
|
+
if (app) {
|
|
277
|
+
activeSurface.appId = app.id;
|
|
278
|
+
activeSurface.appName = app.name;
|
|
279
|
+
activeSurface.appSchemaJson = app.schemaJson;
|
|
280
|
+
activeSurface.appFiles = listAppFiles(app.id);
|
|
281
|
+
if (app.pages && Object.keys(app.pages).length > 0) {
|
|
282
|
+
activeSurface.appPages = app.pages;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
|
|
289
|
+
ctx.refreshWorkspaceTopLevelContextIfNeeded();
|
|
290
|
+
|
|
291
|
+
// Compute fresh temporal context each turn for date grounding.
|
|
292
|
+
const temporalContext = buildTemporalContext({
|
|
293
|
+
timeZone: Intl.DateTimeFormat().resolvedOptions().timeZone,
|
|
294
|
+
});
|
|
295
|
+
|
|
296
|
+
runMessages = applyRuntimeInjections(runMessages, {
|
|
297
|
+
softConflictInstruction,
|
|
298
|
+
activeSurface,
|
|
299
|
+
workspaceTopLevelContext: ctx.workspaceTopLevelContext,
|
|
300
|
+
channelCapabilities: ctx.channelCapabilities ?? null,
|
|
301
|
+
temporalContext,
|
|
302
|
+
});
|
|
303
|
+
|
|
304
|
+
// Pre-run repair
|
|
305
|
+
let preRepairMessages = runMessages;
|
|
306
|
+
const preRunRepair = repairHistory(runMessages);
|
|
307
|
+
if (preRunRepair.stats.assistantToolResultsMigrated > 0 || preRunRepair.stats.missingToolResultsInserted > 0 || preRunRepair.stats.orphanToolResultsDowngraded > 0 || preRunRepair.stats.consecutiveSameRoleMerged > 0) {
|
|
308
|
+
rlog.warn({ phase: 'pre_run', ...preRunRepair.stats }, 'Repaired runtime history before provider call');
|
|
309
|
+
runMessages = preRunRepair.messages;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
let orderingErrorDetected = false;
|
|
313
|
+
let deferredOrderingError: string | null = null;
|
|
314
|
+
let contextTooLargeDetected = false;
|
|
315
|
+
let preRunHistoryLength = runMessages.length;
|
|
316
|
+
|
|
317
|
+
let llmCallStartedEmitted = false;
|
|
318
|
+
const toolUseIdToName = new Map<string, string>();
|
|
319
|
+
let currentTurnToolNames: string[] = [];
|
|
320
|
+
|
|
321
|
+
const buildEventHandler = () => (event: AgentEvent) => {
|
|
322
|
+
const emitLlmCallStartedIfNeeded = () => {
|
|
323
|
+
if (llmCallStartedEmitted) return;
|
|
324
|
+
llmCallStartedEmitted = true;
|
|
325
|
+
ctx.traceEmitter.emit('llm_call_started', `LLM call to ${ctx.provider.name}`, {
|
|
326
|
+
requestId: reqId,
|
|
327
|
+
status: 'info',
|
|
328
|
+
attributes: { provider: ctx.provider.name, model: model || 'unknown' },
|
|
329
|
+
});
|
|
330
|
+
};
|
|
331
|
+
|
|
332
|
+
switch (event.type) {
|
|
333
|
+
case 'text_delta': {
|
|
334
|
+
emitLlmCallStartedIfNeeded();
|
|
335
|
+
pendingDirectiveDisplayBuffer += event.text;
|
|
336
|
+
const drained = drainDirectiveDisplayBuffer(pendingDirectiveDisplayBuffer);
|
|
337
|
+
pendingDirectiveDisplayBuffer = drained.bufferedRemainder;
|
|
338
|
+
if (drained.emitText.length > 0) {
|
|
339
|
+
onEvent({ type: 'assistant_text_delta', text: drained.emitText, sessionId: ctx.conversationId });
|
|
340
|
+
if (isFirstMessage) firstAssistantText += drained.emitText;
|
|
341
|
+
}
|
|
342
|
+
break;
|
|
343
|
+
}
|
|
344
|
+
case 'thinking_delta':
|
|
345
|
+
emitLlmCallStartedIfNeeded();
|
|
346
|
+
onEvent({ type: 'assistant_thinking_delta', thinking: event.thinking });
|
|
347
|
+
break;
|
|
348
|
+
case 'tool_use':
|
|
349
|
+
toolUseIdToName.set(event.id, event.name);
|
|
350
|
+
currentTurnToolNames.push(event.name);
|
|
351
|
+
onEvent({ type: 'tool_use_start', toolName: event.name, input: event.input, sessionId: ctx.conversationId });
|
|
352
|
+
break;
|
|
353
|
+
case 'tool_output_chunk':
|
|
354
|
+
onEvent({ type: 'tool_output_chunk', chunk: event.chunk });
|
|
355
|
+
break;
|
|
356
|
+
case 'input_json_delta':
|
|
357
|
+
onEvent({ type: 'tool_input_delta', toolName: event.toolName, content: event.accumulatedJson, sessionId: ctx.conversationId });
|
|
358
|
+
break;
|
|
359
|
+
case 'tool_result': {
|
|
360
|
+
const imageBlock = event.contentBlocks?.find((b): b is ImageContent => b.type === 'image');
|
|
361
|
+
onEvent({ type: 'tool_result', toolName: '', result: event.content, isError: event.isError, diff: event.diff, status: event.status, sessionId: ctx.conversationId, imageData: imageBlock?.source.data });
|
|
362
|
+
pendingToolResults.set(event.toolUseId, { content: event.content, isError: event.isError, contentBlocks: event.contentBlocks });
|
|
363
|
+
{
|
|
364
|
+
const toolName = toolUseIdToName.get(event.toolUseId);
|
|
365
|
+
if (toolName === 'file_write' || toolName === 'bash') {
|
|
366
|
+
ctx.markWorkspaceTopLevelDirty();
|
|
367
|
+
} else if (toolName === 'file_edit' && !event.isError) {
|
|
368
|
+
ctx.markWorkspaceTopLevelDirty();
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
if (event.contentBlocks) {
|
|
372
|
+
for (const cb of event.contentBlocks) {
|
|
373
|
+
if (cb.type === 'image' || cb.type === 'file') {
|
|
374
|
+
accumulatedToolContentBlocks.push(cb);
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
break;
|
|
379
|
+
}
|
|
380
|
+
case 'error':
|
|
381
|
+
if (isProviderOrderingError(event.error.message)) {
|
|
382
|
+
orderingErrorDetected = true;
|
|
383
|
+
deferredOrderingError = event.error.message;
|
|
384
|
+
} else if (isContextTooLarge(event.error.message)) {
|
|
385
|
+
contextTooLargeDetected = true;
|
|
386
|
+
} else {
|
|
387
|
+
const classified = classifySessionError(event.error, { phase: 'agent_loop' });
|
|
388
|
+
onEvent(buildSessionErrorMessage(ctx.conversationId, classified));
|
|
389
|
+
providerErrorUserMessage = classified.userMessage;
|
|
390
|
+
}
|
|
391
|
+
break;
|
|
392
|
+
case 'message_complete': {
|
|
393
|
+
if (pendingDirectiveDisplayBuffer.length > 0) {
|
|
394
|
+
onEvent({
|
|
395
|
+
type: 'assistant_text_delta',
|
|
396
|
+
text: pendingDirectiveDisplayBuffer,
|
|
397
|
+
sessionId: ctx.conversationId,
|
|
398
|
+
});
|
|
399
|
+
if (isFirstMessage) firstAssistantText += pendingDirectiveDisplayBuffer;
|
|
400
|
+
pendingDirectiveDisplayBuffer = '';
|
|
401
|
+
}
|
|
402
|
+
if (pendingToolResults.size > 0) {
|
|
403
|
+
const toolResultBlocks = Array.from(pendingToolResults.entries()).map(
|
|
404
|
+
([toolUseId, result]) => ({
|
|
405
|
+
type: 'tool_result',
|
|
406
|
+
tool_use_id: toolUseId,
|
|
407
|
+
content: result.content,
|
|
408
|
+
is_error: result.isError,
|
|
409
|
+
...(result.contentBlocks ? { contentBlocks: result.contentBlocks } : {}),
|
|
410
|
+
}),
|
|
411
|
+
);
|
|
412
|
+
conversationStore.addMessage(
|
|
413
|
+
ctx.conversationId,
|
|
414
|
+
'user',
|
|
415
|
+
JSON.stringify(toolResultBlocks),
|
|
416
|
+
);
|
|
417
|
+
for (const id of pendingToolResults.keys()) {
|
|
418
|
+
persistedToolUseIds.add(id);
|
|
419
|
+
}
|
|
420
|
+
pendingToolResults.clear();
|
|
421
|
+
}
|
|
422
|
+
const { cleanedContent, directives: msgDirectives, warnings: msgWarnings } =
|
|
423
|
+
cleanAssistantContent(event.message.content);
|
|
424
|
+
accumulatedDirectives.push(...msgDirectives);
|
|
425
|
+
directiveWarnings.push(...msgWarnings);
|
|
426
|
+
if (msgDirectives.length > 0) {
|
|
427
|
+
rlog.info(
|
|
428
|
+
{ parsedDirectives: msgDirectives.map(d => ({ source: d.source, path: d.path, mimeType: d.mimeType })), totalAccumulated: accumulatedDirectives.length },
|
|
429
|
+
'Parsed attachment directives from assistant message',
|
|
430
|
+
);
|
|
431
|
+
}
|
|
432
|
+
|
|
433
|
+
const contentWithSurfaces: ContentBlock[] = [...cleanedContent as ContentBlock[]];
|
|
434
|
+
for (const surface of ctx.currentTurnSurfaces) {
|
|
435
|
+
contentWithSurfaces.push({
|
|
436
|
+
type: 'ui_surface',
|
|
437
|
+
surfaceId: surface.surfaceId,
|
|
438
|
+
surfaceType: surface.surfaceType,
|
|
439
|
+
title: surface.title,
|
|
440
|
+
data: surface.data,
|
|
441
|
+
actions: surface.actions,
|
|
442
|
+
display: surface.display,
|
|
443
|
+
} as unknown as ContentBlock);
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
const assistantMsg = conversationStore.addMessage(
|
|
447
|
+
ctx.conversationId,
|
|
448
|
+
'assistant',
|
|
449
|
+
JSON.stringify(contentWithSurfaces),
|
|
450
|
+
);
|
|
451
|
+
lastAssistantMessageId = assistantMsg.id;
|
|
452
|
+
|
|
453
|
+
ctx.currentTurnSurfaces = [];
|
|
454
|
+
|
|
455
|
+
const charCount = cleanedContent
|
|
456
|
+
.filter((b) => (b as Record<string, unknown>).type === 'text')
|
|
457
|
+
.reduce((sum: number, b) => sum + ((b as { text?: string }).text?.length ?? 0), 0);
|
|
458
|
+
const toolUseCount = event.message.content
|
|
459
|
+
.filter((b) => b.type === 'tool_use')
|
|
460
|
+
.length;
|
|
461
|
+
ctx.traceEmitter.emit('assistant_message', 'Assistant message complete', {
|
|
462
|
+
requestId: reqId,
|
|
463
|
+
status: 'success',
|
|
464
|
+
attributes: { charCount, toolUseCount },
|
|
465
|
+
});
|
|
466
|
+
break;
|
|
467
|
+
}
|
|
468
|
+
case 'usage':
|
|
469
|
+
exchangeInputTokens += event.inputTokens;
|
|
470
|
+
exchangeOutputTokens += event.outputTokens;
|
|
471
|
+
model = event.model;
|
|
472
|
+
|
|
473
|
+
if (event.rawRequest && event.rawResponse) {
|
|
474
|
+
try {
|
|
475
|
+
recordRequestLog(
|
|
476
|
+
ctx.conversationId,
|
|
477
|
+
JSON.stringify(event.rawRequest),
|
|
478
|
+
JSON.stringify(event.rawResponse),
|
|
479
|
+
);
|
|
480
|
+
} catch (err) {
|
|
481
|
+
rlog.warn({ err }, 'Failed to persist LLM request log (non-fatal)');
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
emitLlmCallStartedIfNeeded();
|
|
486
|
+
|
|
487
|
+
ctx.traceEmitter.emit('llm_call_finished', `LLM call to ${ctx.provider.name} finished`, {
|
|
488
|
+
requestId: reqId,
|
|
489
|
+
status: 'success',
|
|
490
|
+
attributes: {
|
|
491
|
+
provider: ctx.provider.name,
|
|
492
|
+
model: event.model,
|
|
493
|
+
inputTokens: event.inputTokens,
|
|
494
|
+
outputTokens: event.outputTokens,
|
|
495
|
+
latencyMs: event.providerDurationMs,
|
|
496
|
+
},
|
|
497
|
+
});
|
|
498
|
+
llmCallStartedEmitted = false;
|
|
499
|
+
break;
|
|
500
|
+
}
|
|
501
|
+
};
|
|
502
|
+
|
|
503
|
+
const onCheckpoint = (): CheckpointDecision => {
|
|
504
|
+
const turnTools = currentTurnToolNames;
|
|
505
|
+
currentTurnToolNames = [];
|
|
506
|
+
|
|
507
|
+
if (ctx.canHandoffAtCheckpoint()) {
|
|
508
|
+
const inBrowserFlow = turnTools.length > 0
|
|
509
|
+
&& turnTools.every(n => n.startsWith('browser_'));
|
|
510
|
+
if (!inBrowserFlow) {
|
|
511
|
+
yieldedForHandoff = true;
|
|
512
|
+
return 'yield';
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
return 'continue';
|
|
516
|
+
};
|
|
517
|
+
|
|
518
|
+
turnStarted = true;
|
|
519
|
+
|
|
520
|
+
let updatedHistory = await ctx.agentLoop.run(
|
|
521
|
+
runMessages,
|
|
522
|
+
buildEventHandler(),
|
|
523
|
+
abortController.signal,
|
|
524
|
+
reqId,
|
|
525
|
+
onCheckpoint,
|
|
526
|
+
);
|
|
527
|
+
|
|
528
|
+
// One-shot ordering error retry
|
|
529
|
+
if (orderingErrorDetected && updatedHistory.length === preRunHistoryLength) {
|
|
530
|
+
rlog.warn({ phase: 'retry' }, 'Provider ordering error detected, attempting one-shot deep-repair retry');
|
|
531
|
+
const retryRepair = deepRepairHistory(runMessages);
|
|
532
|
+
runMessages = retryRepair.messages;
|
|
533
|
+
preRepairMessages = retryRepair.messages;
|
|
534
|
+
preRunHistoryLength = runMessages.length;
|
|
535
|
+
orderingErrorDetected = false;
|
|
536
|
+
deferredOrderingError = null;
|
|
537
|
+
|
|
538
|
+
updatedHistory = await ctx.agentLoop.run(
|
|
539
|
+
runMessages,
|
|
540
|
+
buildEventHandler(),
|
|
541
|
+
abortController.signal,
|
|
542
|
+
reqId,
|
|
543
|
+
onCheckpoint,
|
|
544
|
+
);
|
|
545
|
+
|
|
546
|
+
if (orderingErrorDetected) {
|
|
547
|
+
rlog.error({ phase: 'retry' }, 'Deep-repair retry also failed with ordering error. Consider starting a new conversation if this persists.');
|
|
548
|
+
}
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
// One-shot context-too-large recovery
|
|
552
|
+
if (contextTooLargeDetected && updatedHistory.length === preRunHistoryLength) {
|
|
553
|
+
rlog.warn({ phase: 'retry' }, 'Context too large — attempting forced compaction and retry');
|
|
554
|
+
const emergencyCompact = await ctx.contextWindowManager.maybeCompact(
|
|
555
|
+
ctx.messages,
|
|
556
|
+
abortController.signal,
|
|
557
|
+
{ lastCompactedAt: ctx.contextCompactedAt ?? undefined, force: true },
|
|
558
|
+
);
|
|
559
|
+
if (emergencyCompact.compacted) {
|
|
560
|
+
ctx.messages = emergencyCompact.messages;
|
|
561
|
+
ctx.contextCompactedMessageCount += emergencyCompact.compactedPersistedMessages;
|
|
562
|
+
ctx.contextCompactedAt = Date.now();
|
|
563
|
+
conversationStore.updateConversationContextWindow(
|
|
564
|
+
ctx.conversationId,
|
|
565
|
+
emergencyCompact.summaryText,
|
|
566
|
+
ctx.contextCompactedMessageCount,
|
|
567
|
+
);
|
|
568
|
+
onEvent({
|
|
569
|
+
type: 'context_compacted',
|
|
570
|
+
previousEstimatedInputTokens: emergencyCompact.previousEstimatedInputTokens,
|
|
571
|
+
estimatedInputTokens: emergencyCompact.estimatedInputTokens,
|
|
572
|
+
maxInputTokens: emergencyCompact.maxInputTokens,
|
|
573
|
+
thresholdTokens: emergencyCompact.thresholdTokens,
|
|
574
|
+
compactedMessages: emergencyCompact.compactedMessages,
|
|
575
|
+
summaryCalls: emergencyCompact.summaryCalls,
|
|
576
|
+
summaryInputTokens: emergencyCompact.summaryInputTokens,
|
|
577
|
+
summaryOutputTokens: emergencyCompact.summaryOutputTokens,
|
|
578
|
+
summaryModel: emergencyCompact.summaryModel,
|
|
579
|
+
});
|
|
580
|
+
emitUsage(ctx, emergencyCompact.summaryInputTokens, emergencyCompact.summaryOutputTokens, emergencyCompact.summaryModel, onEvent, 'context_compactor', reqId);
|
|
581
|
+
|
|
582
|
+
runMessages = applyRuntimeInjections(ctx.messages, {
|
|
583
|
+
softConflictInstruction,
|
|
584
|
+
activeSurface,
|
|
585
|
+
workspaceTopLevelContext: ctx.workspaceTopLevelContext,
|
|
586
|
+
channelCapabilities: ctx.channelCapabilities ?? null,
|
|
587
|
+
temporalContext,
|
|
588
|
+
});
|
|
589
|
+
preRepairMessages = runMessages;
|
|
590
|
+
preRunHistoryLength = runMessages.length;
|
|
591
|
+
contextTooLargeDetected = false;
|
|
592
|
+
|
|
593
|
+
updatedHistory = await ctx.agentLoop.run(
|
|
594
|
+
runMessages,
|
|
595
|
+
buildEventHandler(),
|
|
596
|
+
abortController.signal,
|
|
597
|
+
reqId,
|
|
598
|
+
onCheckpoint,
|
|
599
|
+
);
|
|
600
|
+
}
|
|
601
|
+
|
|
602
|
+
if (contextTooLargeDetected) {
|
|
603
|
+
const mediaTrimmed = stripMediaPayloadsForRetry(ctx.messages);
|
|
604
|
+
if (mediaTrimmed.modified) {
|
|
605
|
+
rlog.warn(
|
|
606
|
+
{
|
|
607
|
+
phase: 'retry',
|
|
608
|
+
replacedBlocks: mediaTrimmed.replacedBlocks,
|
|
609
|
+
latestUserIndex: mediaTrimmed.latestUserIndex,
|
|
610
|
+
},
|
|
611
|
+
'Context still too large — retrying with older media payloads trimmed',
|
|
612
|
+
);
|
|
613
|
+
ctx.messages = mediaTrimmed.messages;
|
|
614
|
+
runMessages = applyRuntimeInjections(ctx.messages, {
|
|
615
|
+
softConflictInstruction,
|
|
616
|
+
activeSurface,
|
|
617
|
+
workspaceTopLevelContext: ctx.workspaceTopLevelContext,
|
|
618
|
+
channelCapabilities: ctx.channelCapabilities ?? null,
|
|
619
|
+
temporalContext,
|
|
620
|
+
});
|
|
621
|
+
preRepairMessages = runMessages;
|
|
622
|
+
preRunHistoryLength = runMessages.length;
|
|
623
|
+
contextTooLargeDetected = false;
|
|
624
|
+
|
|
625
|
+
updatedHistory = await ctx.agentLoop.run(
|
|
626
|
+
runMessages,
|
|
627
|
+
buildEventHandler(),
|
|
628
|
+
abortController.signal,
|
|
629
|
+
reqId,
|
|
630
|
+
onCheckpoint,
|
|
631
|
+
);
|
|
632
|
+
}
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
if (contextTooLargeDetected) {
|
|
636
|
+
const classified = classifySessionError(
|
|
637
|
+
new Error('context_length_exceeded'),
|
|
638
|
+
{ phase: 'agent_loop' },
|
|
639
|
+
);
|
|
640
|
+
onEvent(buildSessionErrorMessage(ctx.conversationId, classified));
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
if (deferredOrderingError) {
|
|
645
|
+
const classified = classifySessionError(new Error(deferredOrderingError), { phase: 'agent_loop' });
|
|
646
|
+
onEvent(buildSessionErrorMessage(ctx.conversationId, classified));
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
// Reconcile synthesized cancellation tool_results
|
|
650
|
+
for (let i = preRunHistoryLength; i < updatedHistory.length; i++) {
|
|
651
|
+
const msg = updatedHistory[i];
|
|
652
|
+
if (msg.role === 'user') {
|
|
653
|
+
for (const block of msg.content) {
|
|
654
|
+
if (block.type === 'tool_result' && !pendingToolResults.has(block.tool_use_id) && !persistedToolUseIds.has(block.tool_use_id)) {
|
|
655
|
+
pendingToolResults.set(block.tool_use_id, {
|
|
656
|
+
content: block.content,
|
|
657
|
+
isError: block.is_error ?? false,
|
|
658
|
+
});
|
|
659
|
+
}
|
|
660
|
+
}
|
|
661
|
+
}
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
// Flush remaining tool results
|
|
665
|
+
if (pendingToolResults.size > 0) {
|
|
666
|
+
const toolResultBlocks = Array.from(pendingToolResults.entries()).map(
|
|
667
|
+
([toolUseId, result]) => ({
|
|
668
|
+
type: 'tool_result',
|
|
669
|
+
tool_use_id: toolUseId,
|
|
670
|
+
content: result.content,
|
|
671
|
+
is_error: result.isError,
|
|
672
|
+
...(result.contentBlocks ? { contentBlocks: result.contentBlocks } : {}),
|
|
673
|
+
}),
|
|
674
|
+
);
|
|
675
|
+
conversationStore.addMessage(
|
|
676
|
+
ctx.conversationId,
|
|
677
|
+
'user',
|
|
678
|
+
JSON.stringify(toolResultBlocks),
|
|
679
|
+
);
|
|
680
|
+
pendingToolResults.clear();
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
// Reconstruct history
|
|
684
|
+
const newMessages = updatedHistory.slice(preRunHistoryLength).map((msg) => {
|
|
685
|
+
if (msg.role !== 'assistant') return msg;
|
|
686
|
+
const { cleanedContent } = cleanAssistantContent(msg.content);
|
|
687
|
+
return { ...msg, content: cleanedContent as ContentBlock[] };
|
|
688
|
+
});
|
|
689
|
+
|
|
690
|
+
const hasAssistantResponse = newMessages.some((msg) => msg.role === 'assistant');
|
|
691
|
+
if (!hasAssistantResponse && providerErrorUserMessage && !abortController.signal.aborted && !yieldedForHandoff) {
|
|
692
|
+
const errorAssistantMessage = createAssistantMessage(providerErrorUserMessage);
|
|
693
|
+
conversationStore.addMessage(
|
|
694
|
+
ctx.conversationId,
|
|
695
|
+
'assistant',
|
|
696
|
+
JSON.stringify(errorAssistantMessage.content),
|
|
697
|
+
);
|
|
698
|
+
newMessages.push(errorAssistantMessage);
|
|
699
|
+
onEvent({
|
|
700
|
+
type: 'assistant_text_delta',
|
|
701
|
+
text: providerErrorUserMessage,
|
|
702
|
+
sessionId: ctx.conversationId,
|
|
703
|
+
});
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
const restoredHistory = [...preRepairMessages, ...newMessages];
|
|
707
|
+
const recallStripped = stripMemoryRecallMessages(restoredHistory, recall.injectedText, recallInjectionStrategy);
|
|
708
|
+
ctx.messages = stripTemporalContext(
|
|
709
|
+
stripChannelCapabilityContext(
|
|
710
|
+
stripWorkspaceTopLevelContext(
|
|
711
|
+
stripActiveSurfaceContext(
|
|
712
|
+
stripDynamicProfileMessages(recallStripped, dynamicProfile.text),
|
|
713
|
+
),
|
|
714
|
+
),
|
|
715
|
+
),
|
|
716
|
+
);
|
|
717
|
+
|
|
718
|
+
emitUsage(ctx, exchangeInputTokens, exchangeOutputTokens, model, onEvent, 'main_agent', reqId);
|
|
719
|
+
|
|
720
|
+
void getHookManager().trigger('post-message', {
|
|
721
|
+
sessionId: ctx.conversationId,
|
|
722
|
+
});
|
|
723
|
+
|
|
724
|
+
// Resolve attachments
|
|
725
|
+
const attachmentResult = await resolveAssistantAttachments(
|
|
726
|
+
accumulatedDirectives,
|
|
727
|
+
accumulatedToolContentBlocks,
|
|
728
|
+
directiveWarnings,
|
|
729
|
+
ctx.workingDir,
|
|
730
|
+
async (filePath) => approveHostAttachmentRead(filePath, ctx.workingDir, ctx.prompter, ctx.conversationId, ctx.hasNoClient),
|
|
731
|
+
lastAssistantMessageId,
|
|
732
|
+
);
|
|
733
|
+
const { assistantAttachments, emittedAttachments } = attachmentResult;
|
|
734
|
+
|
|
735
|
+
ctx.lastAssistantAttachments = assistantAttachments;
|
|
736
|
+
ctx.lastAttachmentWarnings = attachmentResult.directiveWarnings;
|
|
737
|
+
|
|
738
|
+
const warningText = formatAttachmentWarnings(attachmentResult.directiveWarnings);
|
|
739
|
+
if (warningText) {
|
|
740
|
+
onEvent({ type: 'assistant_text_delta', text: warningText, sessionId: ctx.conversationId });
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
// Emit completion event
|
|
744
|
+
if (yieldedForHandoff) {
|
|
745
|
+
ctx.traceEmitter.emit('generation_handoff', 'Handing off to next queued message', {
|
|
746
|
+
requestId: reqId,
|
|
747
|
+
status: 'info',
|
|
748
|
+
attributes: { queuedCount: ctx.getQueueDepth() },
|
|
749
|
+
});
|
|
750
|
+
onEvent({
|
|
751
|
+
type: 'generation_handoff',
|
|
752
|
+
sessionId: ctx.conversationId,
|
|
753
|
+
requestId: reqId,
|
|
754
|
+
queuedCount: ctx.getQueueDepth(),
|
|
755
|
+
...(emittedAttachments.length > 0 ? { attachments: emittedAttachments } : {}),
|
|
756
|
+
});
|
|
757
|
+
} else if (abortController.signal.aborted) {
|
|
758
|
+
ctx.traceEmitter.emit('generation_cancelled', 'Generation cancelled by user', {
|
|
759
|
+
requestId: reqId,
|
|
760
|
+
status: 'warning',
|
|
761
|
+
});
|
|
762
|
+
onEvent({ type: 'generation_cancelled', sessionId: ctx.conversationId });
|
|
763
|
+
} else {
|
|
764
|
+
ctx.traceEmitter.emit('message_complete', 'Message processing complete', {
|
|
765
|
+
requestId: reqId,
|
|
766
|
+
status: 'success',
|
|
767
|
+
});
|
|
768
|
+
onEvent({
|
|
769
|
+
type: 'message_complete',
|
|
770
|
+
sessionId: ctx.conversationId,
|
|
771
|
+
...(emittedAttachments.length > 0 ? { attachments: emittedAttachments } : {}),
|
|
772
|
+
});
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
if (isFirstMessage) {
|
|
776
|
+
generateTitle(ctx, content, firstAssistantText).catch((err) => {
|
|
777
|
+
log.warn({ err, conversationId: ctx.conversationId }, 'Failed to generate conversation title (non-fatal, using default title)');
|
|
778
|
+
});
|
|
779
|
+
}
|
|
780
|
+
} catch (err) {
|
|
781
|
+
const errorCtx = { phase: 'agent_loop' as const, aborted: abortController.signal.aborted };
|
|
782
|
+
if (isUserCancellation(err, errorCtx)) {
|
|
783
|
+
rlog.info('Generation cancelled by user');
|
|
784
|
+
ctx.traceEmitter.emit('generation_cancelled', 'Generation cancelled by user', {
|
|
785
|
+
requestId: reqId,
|
|
786
|
+
status: 'warning',
|
|
787
|
+
});
|
|
788
|
+
onEvent({ type: 'generation_cancelled', sessionId: ctx.conversationId });
|
|
789
|
+
} else {
|
|
790
|
+
const message = err instanceof Error ? err.message : String(err);
|
|
791
|
+
const errorClass = err instanceof Error ? err.constructor.name : 'Error';
|
|
792
|
+
rlog.error({ err }, 'Session processing error');
|
|
793
|
+
ctx.traceEmitter.emit('request_error', truncate(message, 200, ''), {
|
|
794
|
+
requestId: reqId,
|
|
795
|
+
status: 'error',
|
|
796
|
+
attributes: { errorClass, message: truncate(message, 500, '') },
|
|
797
|
+
});
|
|
798
|
+
onEvent({ type: 'error', message: `Failed to process message: ${message}` });
|
|
799
|
+
const classified = classifySessionError(err, errorCtx);
|
|
800
|
+
onEvent(buildSessionErrorMessage(ctx.conversationId, classified));
|
|
801
|
+
void getHookManager().trigger('on-error', {
|
|
802
|
+
error: err instanceof Error ? err.name : 'Error',
|
|
803
|
+
message,
|
|
804
|
+
stack: err instanceof Error ? err.stack : undefined,
|
|
805
|
+
sessionId: ctx.conversationId,
|
|
806
|
+
});
|
|
807
|
+
}
|
|
808
|
+
} finally {
|
|
809
|
+
if (turnStarted) {
|
|
810
|
+
ctx.turnCount++;
|
|
811
|
+
const config = getConfig();
|
|
812
|
+
const maxWait = config.workspaceGit?.turnCommitMaxWaitMs ?? 4000;
|
|
813
|
+
const deadlineMs = Date.now() + maxWait;
|
|
814
|
+
const commitTurnChangesFn = ctx.commitTurnChanges ?? commitTurnChanges;
|
|
815
|
+
const commitPromise = commitTurnChangesFn(
|
|
816
|
+
ctx.workingDir, ctx.conversationId, ctx.turnCount,
|
|
817
|
+
undefined,
|
|
818
|
+
deadlineMs,
|
|
819
|
+
);
|
|
820
|
+
const outcome = await raceWithTimeout(commitPromise, maxWait);
|
|
821
|
+
if (outcome === 'timed_out') {
|
|
822
|
+
rlog.warn(
|
|
823
|
+
{ turnNumber: ctx.turnCount, maxWaitMs: maxWait, conversationId: ctx.conversationId },
|
|
824
|
+
'Turn-boundary commit timed out — continuing without waiting (commit still runs in background)',
|
|
825
|
+
);
|
|
826
|
+
}
|
|
827
|
+
}
|
|
828
|
+
|
|
829
|
+
ctx.profiler.emitSummary(ctx.traceEmitter, reqId);
|
|
830
|
+
|
|
831
|
+
ctx.abortController = null;
|
|
832
|
+
ctx.processing = false;
|
|
833
|
+
ctx.currentRequestId = undefined;
|
|
834
|
+
ctx.currentActiveSurfaceId = undefined;
|
|
835
|
+
ctx.allowedToolNames = undefined;
|
|
836
|
+
ctx.preactivatedSkillIds = undefined;
|
|
837
|
+
|
|
838
|
+
if (userMessageId) {
|
|
839
|
+
consolidateAssistantMessages(ctx.conversationId, userMessageId);
|
|
840
|
+
}
|
|
841
|
+
|
|
842
|
+
ctx.drainQueue(yieldedForHandoff ? 'checkpoint_handoff' : 'loop_complete');
|
|
843
|
+
}
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
// ── generateTitle ────────────────────────────────────────────────────
|
|
847
|
+
|
|
848
|
+
async function generateTitle(
|
|
849
|
+
ctx: Pick<AgentLoopSessionContext, 'conversationId' | 'provider'>,
|
|
850
|
+
userMessage: string,
|
|
851
|
+
assistantResponse: string,
|
|
852
|
+
): Promise<void> {
|
|
853
|
+
const prompt = `Generate a very short title for this conversation. Rules: at most 5 words, at most 40 characters, no quotes.\n\nUser: ${truncate(userMessage, 200, '')}\nAssistant: ${truncate(assistantResponse, 200, '')}`;
|
|
854
|
+
const response = await ctx.provider.sendMessage(
|
|
855
|
+
[{ role: 'user', content: [{ type: 'text', text: prompt }] }],
|
|
856
|
+
[],
|
|
857
|
+
undefined,
|
|
858
|
+
{ config: { max_tokens: 30 } },
|
|
859
|
+
);
|
|
860
|
+
|
|
861
|
+
const textBlock = response.content.find((b) => b.type === 'text');
|
|
862
|
+
if (textBlock && textBlock.type === 'text') {
|
|
863
|
+
let title = textBlock.text.trim().replace(/^["']|["']$/g, '');
|
|
864
|
+
const words = title.split(/\s+/);
|
|
865
|
+
if (words.length > 5) title = words.slice(0, 5).join(' ');
|
|
866
|
+
if (title.length > 40) title = title.slice(0, 40).trimEnd();
|
|
867
|
+
conversationStore.updateConversationTitle(ctx.conversationId, title);
|
|
868
|
+
log.info({ conversationId: ctx.conversationId, title }, 'Auto-generated conversation title');
|
|
869
|
+
}
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
// ── Helper ───────────────────────────────────────────────────────────
|
|
873
|
+
|
|
874
|
+
function emitUsage(
|
|
875
|
+
ctx: Pick<AgentLoopSessionContext, 'conversationId' | 'provider' | 'usageStats'>,
|
|
876
|
+
inputTokens: number,
|
|
877
|
+
outputTokens: number,
|
|
878
|
+
model: string,
|
|
879
|
+
onEvent: (msg: ServerMessage) => void,
|
|
880
|
+
actor: UsageActor,
|
|
881
|
+
requestId: string | null = null,
|
|
882
|
+
): void {
|
|
883
|
+
recordUsage(
|
|
884
|
+
{ conversationId: ctx.conversationId, providerName: ctx.provider.name, usageStats: ctx.usageStats },
|
|
885
|
+
inputTokens, outputTokens, model, onEvent, actor, requestId,
|
|
886
|
+
);
|
|
887
|
+
}
|