mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-17 13:55:50 +00:00
* fix: 添加 usage 字段缺失时的防御性防护 第三方 API(如智谱 GLM)在某些流式响应中不返回 usage 字段, 导致 usage.input_tokens 访问 undefined 崩溃并连锁影响后续所有请求。 - claude.ts: content_block_stop 创建消息时 fallback 到 EMPTY_USAGE - LocalAgentTask.tsx: usage 为 undefined 时提前返回 - tokens.ts: getTokenCountFromUsage 加 null guard 和 ?? 0 - cost-tracker.ts: input_tokens/output_tokens 加 ?? 0 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: ACP Plan 展示 — 支持 session/update plan 类型的可视化 补全 PlanUpdate 类型定义(PlanEntry/Priority/Status),新建 PlanView 组件 渲染进度条、状态图标和优先级标签,在 ChatInterface 中处理 plan 更新逻辑。 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: 穷鬼模式下跳过 verification agent 以节省 token Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * test: 补充 RCS 后端 + 前端测试覆盖 (+116 tests) 后端新增 3 个测试文件 (70 tests): - automationState: normalize/snapshot/equals 纯函数 - client-payload: toClientPayload 协议转换 - transport-normalize: normalizePayload + extractContent 前端新增 2 个测试文件 (46 tests): - utils: formatTime/statusClass/truncate/extractEventText 等 - api-client: getUuid/setUuid/api GET/POST 错误处理 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: RCS ACP 页面添加权限模式选择器 + 权限响应修复 - 新增权限模式选择器 UI(6种模式:默认/自动接受编辑/跳过权限/规划/不询问/自动判断) - 权限模式通过 ACP _meta 从 web → acp-link → agent 全链路传递 - 修复 PermissionPanel 点击"允许"发送 cancelled 而非 selected 的 bug - 权限模式和模型选择持久化到 localStorage - acp-link 直接连接路径同步支持 permissionMode 透传 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: RCS Web UI 重构 + QR 修复 + ACP 扫描自动跳转 - RCS Web UI 组件全面重构: Dialog 迁移 Radix UI, lazy loading, 主题系统改进, 组件样式优化 - IdentityPanel QR 码显示修复: requestAnimationFrame 延迟绘制 解决 Radix Dialog Portal 挂载时序问题 - ACP QR 扫描自动跳转: IdentityPanel 扫描 ACP 格式 { url, token } 后存储 sessionStorage 并跳转 /code/?acp=1 - 新增 ACPDirectView 组件: ACP 直连视图, 用 ACPClient 连接并 渲染 ACPMain 聊天界面 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * feat: ACP 权限管道改进 — 模式同步 + bypass 检测 + 统一权限流水线 - agent.ts: applySessionMode 同步 appState.toolPermissionContext.mode - agent.ts: bypassPermissions 可用性检测 (非 root 或 sandbox 环境) - permissions.ts: createAcpCanUseTool 接入 hasPermissionsToUseTool 统一权限流水线, 替代原来分散的处理逻辑 - permissions.ts: 支持 onModeChange 回调, 模式变更时实时同步 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * fix: acp-link 支持 permissionMode 默认值传递给 agent 客户端 (Zed/VS Code 等) 的 new_session 不一定携带 permissionMode, 导致 agent 收到 _meta: undefined, permission 回退到 default。 修复: handleNewSession 使用 fallback 链: 客户端传值 > config.permissionMode > ACP_PERMISSION_MODE 环境变量 使用: ACP_PERMISSION_MODE=auto acp-link claude Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> * docs: 更新文档及说明 * fix: 修复类型错误 * chore: 提交脚本 --------- Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
809 lines
23 KiB
TypeScript
809 lines
23 KiB
TypeScript
import type { BetaUsage } from '@anthropic-ai/sdk/resources/beta/messages/messages.mjs'
|
|
import { getSdkAgentProgressSummariesEnabled } from '../../bootstrap/state.js'
|
|
import {
|
|
OUTPUT_FILE_TAG,
|
|
STATUS_TAG,
|
|
SUMMARY_TAG,
|
|
TASK_ID_TAG,
|
|
TASK_NOTIFICATION_TAG,
|
|
TOOL_USE_ID_TAG,
|
|
WORKTREE_BRANCH_TAG,
|
|
WORKTREE_PATH_TAG,
|
|
WORKTREE_TAG,
|
|
} from '../../constants/xml.js'
|
|
import { abortSpeculation } from '../../services/PromptSuggestion/speculation.js'
|
|
import type { AppState } from '../../state/AppState.js'
|
|
import type { SetAppState, Task, TaskStateBase } from '../../Task.js'
|
|
import { createTaskStateBase } from '../../Task.js'
|
|
import type { Tools } from '../../Tool.js'
|
|
import { findToolByName } from '../../Tool.js'
|
|
import type { AgentToolResult } from '@claude-code-best/builtin-tools/tools/AgentTool/agentToolUtils.js'
|
|
import type { AgentDefinition } from '@claude-code-best/builtin-tools/tools/AgentTool/loadAgentsDir.js'
|
|
import { SYNTHETIC_OUTPUT_TOOL_NAME } from '@claude-code-best/builtin-tools/tools/SyntheticOutputTool/SyntheticOutputTool.js'
|
|
import { asAgentId } from '../../types/ids.js'
|
|
import type { Message } from '../../types/message.js'
|
|
import {
|
|
createAbortController,
|
|
createChildAbortController,
|
|
} from '../../utils/abortController.js'
|
|
import { registerCleanup } from '../../utils/cleanupRegistry.js'
|
|
import { getToolSearchOrReadInfo } from '../../utils/collapseReadSearch.js'
|
|
import { enqueuePendingNotification } from '../../utils/messageQueueManager.js'
|
|
import { getAgentTranscriptPath } from '../../utils/sessionStorage.js'
|
|
import {
|
|
evictTaskOutput,
|
|
getTaskOutputPath,
|
|
initTaskOutputAsSymlink,
|
|
} from '../../utils/task/diskOutput.js'
|
|
import {
|
|
PANEL_GRACE_MS,
|
|
registerTask,
|
|
updateTaskState,
|
|
} from '../../utils/task/framework.js'
|
|
import { emitTaskProgress } from '../../utils/task/sdkProgress.js'
|
|
import type { TaskState } from '../types.js'
|
|
|
|
export type ToolActivity = {
|
|
toolName: string
|
|
input: Record<string, unknown>
|
|
/** Pre-computed activity description from the tool, e.g. "Reading src/foo.ts" */
|
|
activityDescription?: string
|
|
/** Pre-computed: true if this is a search operation (Grep, Glob, etc.) */
|
|
isSearch?: boolean
|
|
/** Pre-computed: true if this is a read operation (Read, cat, etc.) */
|
|
isRead?: boolean
|
|
}
|
|
|
|
export type AgentProgress = {
|
|
toolUseCount: number
|
|
tokenCount: number
|
|
lastActivity?: ToolActivity
|
|
recentActivities?: ToolActivity[]
|
|
summary?: string
|
|
}
|
|
|
|
const MAX_RECENT_ACTIVITIES = 5
|
|
|
|
export type ProgressTracker = {
|
|
toolUseCount: number
|
|
// Track input and output separately to avoid double-counting.
|
|
// input_tokens in Claude API is cumulative per turn (includes all previous context),
|
|
// so we keep the latest value. output_tokens is per-turn, so we sum those.
|
|
latestInputTokens: number
|
|
cumulativeOutputTokens: number
|
|
recentActivities: ToolActivity[]
|
|
}
|
|
|
|
export function createProgressTracker(): ProgressTracker {
|
|
return {
|
|
toolUseCount: 0,
|
|
latestInputTokens: 0,
|
|
cumulativeOutputTokens: 0,
|
|
recentActivities: [],
|
|
}
|
|
}
|
|
|
|
export function getTokenCountFromTracker(tracker: ProgressTracker): number {
|
|
return tracker.latestInputTokens + tracker.cumulativeOutputTokens
|
|
}
|
|
|
|
/**
|
|
* Resolver function that returns a human-readable activity description
|
|
* for a given tool name and input. Used to pre-compute descriptions
|
|
* from Tool.getActivityDescription() at recording time.
|
|
*/
|
|
export type ActivityDescriptionResolver = (
|
|
toolName: string,
|
|
input: Record<string, unknown>,
|
|
) => string | undefined
|
|
|
|
export function updateProgressFromMessage(
|
|
tracker: ProgressTracker,
|
|
message: Message,
|
|
resolveActivityDescription?: ActivityDescriptionResolver,
|
|
tools?: Tools,
|
|
): void {
|
|
if (message.type !== 'assistant') {
|
|
return
|
|
}
|
|
const usage = message.message!.usage as BetaUsage | undefined
|
|
if (!usage) {
|
|
return
|
|
}
|
|
// Keep latest input (it's cumulative in the API), sum outputs
|
|
tracker.latestInputTokens =
|
|
(usage.input_tokens as number) +
|
|
(usage.cache_creation_input_tokens ?? 0) +
|
|
(usage.cache_read_input_tokens ?? 0)
|
|
tracker.cumulativeOutputTokens += usage.output_tokens as number
|
|
for (const content of (message.message!.content ?? []) as Array<{ type: string; name?: string; input?: unknown }>) {
|
|
if (content.type === 'tool_use') {
|
|
tracker.toolUseCount++
|
|
// Omit StructuredOutput from preview - it's an internal tool
|
|
if (content.name !== SYNTHETIC_OUTPUT_TOOL_NAME) {
|
|
const input = content.input as Record<string, unknown>
|
|
const classification = tools
|
|
? getToolSearchOrReadInfo(content.name!, input, tools)
|
|
: undefined
|
|
tracker.recentActivities.push({
|
|
toolName: content.name!,
|
|
input,
|
|
activityDescription: resolveActivityDescription?.(
|
|
content.name!,
|
|
input,
|
|
),
|
|
isSearch: classification?.isSearch,
|
|
isRead: classification?.isRead,
|
|
})
|
|
}
|
|
}
|
|
}
|
|
while (tracker.recentActivities.length > MAX_RECENT_ACTIVITIES) {
|
|
tracker.recentActivities.shift()
|
|
}
|
|
}
|
|
|
|
export function getProgressUpdate(tracker: ProgressTracker): AgentProgress {
|
|
return {
|
|
toolUseCount: tracker.toolUseCount,
|
|
tokenCount: getTokenCountFromTracker(tracker),
|
|
lastActivity:
|
|
tracker.recentActivities.length > 0
|
|
? tracker.recentActivities[tracker.recentActivities.length - 1]
|
|
: undefined,
|
|
recentActivities: [...tracker.recentActivities],
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Creates an ActivityDescriptionResolver from a tools list.
|
|
* Looks up the tool by name and calls getActivityDescription if available.
|
|
*/
|
|
export function createActivityDescriptionResolver(
|
|
tools: Tools,
|
|
): ActivityDescriptionResolver {
|
|
return (toolName, input) => {
|
|
const tool = findToolByName(tools, toolName)
|
|
return tool?.getActivityDescription?.(input) ?? undefined
|
|
}
|
|
}
|
|
|
|
export type LocalAgentTaskState = TaskStateBase & {
|
|
type: 'local_agent'
|
|
agentId: string
|
|
prompt: string
|
|
selectedAgent?: AgentDefinition
|
|
agentType: string
|
|
model?: string
|
|
abortController?: AbortController
|
|
unregisterCleanup?: () => void
|
|
error?: string
|
|
result?: AgentToolResult
|
|
progress?: AgentProgress
|
|
retrieved: boolean
|
|
messages?: Message[]
|
|
// Track what we last reported for computing deltas
|
|
lastReportedToolCount: number
|
|
lastReportedTokenCount: number
|
|
// Whether the task has been backgrounded (false = foreground running, true = backgrounded)
|
|
isBackgrounded: boolean
|
|
// Messages queued mid-turn via SendMessage, drained at tool-round boundaries
|
|
pendingMessages: string[]
|
|
// UI is holding this task: blocks eviction, enables stream-append, triggers
|
|
// disk bootstrap. Set by enterTeammateView. Separate from viewingAgentTaskId
|
|
// (which is "what am I LOOKING at") — retain is "what am I HOLDING."
|
|
retain: boolean
|
|
// Bootstrap has read the sidechain JSONL and UUID-merged into messages.
|
|
// One-shot per retain cycle; stream appends from there.
|
|
diskLoaded: boolean
|
|
// Panel visibility deadline. undefined = no deadline (running or retained);
|
|
// timestamp = hide + GC-eligible after this time. Set at terminal transition
|
|
// and on unselect; cleared on retain.
|
|
evictAfter?: number
|
|
}
|
|
|
|
export function isLocalAgentTask(task: unknown): task is LocalAgentTaskState {
|
|
return (
|
|
typeof task === 'object' &&
|
|
task !== null &&
|
|
'type' in task &&
|
|
task.type === 'local_agent'
|
|
)
|
|
}
|
|
|
|
/**
|
|
* A local_agent task that the CoordinatorTaskPanel manages (not main-session).
|
|
* For ants, these render in the panel instead of the background-task pill.
|
|
* This is the ONE predicate that all pill/panel filters must agree on — if
|
|
* the gate changes, change it here.
|
|
*/
|
|
export function isPanelAgentTask(t: unknown): t is LocalAgentTaskState {
|
|
return isLocalAgentTask(t) && t.agentType !== 'main-session'
|
|
}
|
|
|
|
export function queuePendingMessage(
|
|
taskId: string,
|
|
msg: string,
|
|
setAppState: (f: (prev: AppState) => AppState) => void,
|
|
): void {
|
|
updateTaskState<LocalAgentTaskState>(taskId, setAppState, task => ({
|
|
...task,
|
|
pendingMessages: [...task.pendingMessages, msg],
|
|
}))
|
|
}
|
|
|
|
/**
|
|
* Append a message to task.messages so it appears in the viewed transcript
|
|
* immediately. Caller constructs the Message (breaks the messages.ts cycle).
|
|
* queuePendingMessage and resumeAgentBackground route the prompt to the
|
|
* agent's API input but don't touch the display.
|
|
*/
|
|
export function appendMessageToLocalAgent(
|
|
taskId: string,
|
|
message: Message,
|
|
setAppState: (f: (prev: AppState) => AppState) => void,
|
|
): void {
|
|
updateTaskState<LocalAgentTaskState>(taskId, setAppState, task => ({
|
|
...task,
|
|
messages: [...(task.messages ?? []), message],
|
|
}))
|
|
}
|
|
|
|
export function drainPendingMessages(
|
|
taskId: string,
|
|
getAppState: () => AppState,
|
|
setAppState: (f: (prev: AppState) => AppState) => void,
|
|
): string[] {
|
|
const task = getAppState().tasks[taskId]
|
|
if (!isLocalAgentTask(task) || task.pendingMessages.length === 0) {
|
|
return []
|
|
}
|
|
const drained = task.pendingMessages
|
|
updateTaskState<LocalAgentTaskState>(taskId, setAppState, t => ({
|
|
...t,
|
|
pendingMessages: [],
|
|
}))
|
|
return drained
|
|
}
|
|
|
|
/**
|
|
* Enqueue an agent notification to the message queue.
|
|
*/
|
|
export function enqueueAgentNotification({
|
|
taskId,
|
|
description,
|
|
status,
|
|
error,
|
|
setAppState,
|
|
finalMessage,
|
|
usage,
|
|
toolUseId,
|
|
worktreePath,
|
|
worktreeBranch,
|
|
}: {
|
|
taskId: string
|
|
description: string
|
|
status: 'completed' | 'failed' | 'killed'
|
|
error?: string
|
|
setAppState: SetAppState
|
|
finalMessage?: string
|
|
usage?: {
|
|
totalTokens: number
|
|
toolUses: number
|
|
durationMs: number
|
|
}
|
|
toolUseId?: string
|
|
worktreePath?: string
|
|
worktreeBranch?: string
|
|
}): void {
|
|
// Atomically check and set notified flag to prevent duplicate notifications.
|
|
// If the task was already marked as notified (e.g., by TaskStopTool), skip
|
|
// enqueueing to avoid sending redundant messages to the model.
|
|
let shouldEnqueue = false
|
|
updateTaskState<LocalAgentTaskState>(taskId, setAppState, task => {
|
|
if (task.notified) {
|
|
return task
|
|
}
|
|
shouldEnqueue = true
|
|
return {
|
|
...task,
|
|
notified: true,
|
|
}
|
|
})
|
|
|
|
if (!shouldEnqueue) {
|
|
return
|
|
}
|
|
|
|
// Abort any active speculation — background task state changed, so speculated
|
|
// results may reference stale task output. The prompt suggestion text is
|
|
// preserved; only the pre-computed response is discarded.
|
|
abortSpeculation(setAppState)
|
|
|
|
const summary =
|
|
status === 'completed'
|
|
? `Agent "${description}" completed`
|
|
: status === 'failed'
|
|
? `Agent "${description}" failed: ${error || 'Unknown error'}`
|
|
: `Agent "${description}" was stopped`
|
|
|
|
const outputPath = getTaskOutputPath(taskId)
|
|
const toolUseIdLine = toolUseId
|
|
? `\n<${TOOL_USE_ID_TAG}>${toolUseId}</${TOOL_USE_ID_TAG}>`
|
|
: ''
|
|
const resultSection = finalMessage ? `\n<result>${finalMessage}</result>` : ''
|
|
const usageSection = usage
|
|
? `\n<usage><total_tokens>${usage.totalTokens}</total_tokens><tool_uses>${usage.toolUses}</tool_uses><duration_ms>${usage.durationMs}</duration_ms></usage>`
|
|
: ''
|
|
const worktreeSection = worktreePath
|
|
? `\n<${WORKTREE_TAG}><${WORKTREE_PATH_TAG}>${worktreePath}</${WORKTREE_PATH_TAG}>${worktreeBranch ? `<${WORKTREE_BRANCH_TAG}>${worktreeBranch}</${WORKTREE_BRANCH_TAG}>` : ''}</${WORKTREE_TAG}>`
|
|
: ''
|
|
|
|
const message = `<${TASK_NOTIFICATION_TAG}>
|
|
<${TASK_ID_TAG}>${taskId}</${TASK_ID_TAG}>${toolUseIdLine}
|
|
<${OUTPUT_FILE_TAG}>${outputPath}</${OUTPUT_FILE_TAG}>
|
|
<${STATUS_TAG}>${status}</${STATUS_TAG}>
|
|
<${SUMMARY_TAG}>${summary}</${SUMMARY_TAG}>${resultSection}${usageSection}${worktreeSection}
|
|
</${TASK_NOTIFICATION_TAG}>`
|
|
|
|
enqueuePendingNotification({ value: message, mode: 'task-notification' })
|
|
}
|
|
|
|
/**
|
|
* LocalAgentTask - Handles background agent execution.
|
|
*
|
|
* Replaces the AsyncAgent implementation from src/tools/AgentTool/asyncAgentUtils.ts
|
|
* with a unified Task interface.
|
|
*/
|
|
export const LocalAgentTask: Task = {
|
|
name: 'LocalAgentTask',
|
|
type: 'local_agent',
|
|
|
|
async kill(taskId, setAppState) {
|
|
killAsyncAgent(taskId, setAppState)
|
|
},
|
|
}
|
|
|
|
/**
|
|
* Kill an agent task. No-op if already killed/completed.
|
|
*/
|
|
export function killAsyncAgent(taskId: string, setAppState: SetAppState): void {
|
|
let killed = false
|
|
updateTaskState<LocalAgentTaskState>(taskId, setAppState, task => {
|
|
if (task.status !== 'running') {
|
|
return task
|
|
}
|
|
killed = true
|
|
task.abortController?.abort()
|
|
task.unregisterCleanup?.()
|
|
return {
|
|
...task,
|
|
status: 'killed',
|
|
endTime: Date.now(),
|
|
evictAfter: task.retain ? undefined : Date.now() + PANEL_GRACE_MS,
|
|
abortController: undefined,
|
|
unregisterCleanup: undefined,
|
|
selectedAgent: undefined,
|
|
}
|
|
})
|
|
if (killed) {
|
|
void evictTaskOutput(taskId)
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Kill all running agent tasks.
|
|
* Used by ESC cancellation in coordinator mode to stop all subagents.
|
|
*/
|
|
export function killAllRunningAgentTasks(
|
|
tasks: Record<string, TaskState>,
|
|
setAppState: SetAppState,
|
|
): void {
|
|
for (const [taskId, task] of Object.entries(tasks)) {
|
|
if (task.type === 'local_agent' && task.status === 'running') {
|
|
killAsyncAgent(taskId, setAppState)
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Mark a task as notified without enqueueing a notification.
|
|
* Used by chat:killAgents bulk kill to suppress per-agent async notifications
|
|
* when a single aggregate message is sent instead.
|
|
*/
|
|
export function markAgentsNotified(
|
|
taskId: string,
|
|
setAppState: SetAppState,
|
|
): void {
|
|
updateTaskState<LocalAgentTaskState>(taskId, setAppState, task => {
|
|
if (task.notified) {
|
|
return task
|
|
}
|
|
return {
|
|
...task,
|
|
notified: true,
|
|
}
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Update progress for an agent task.
|
|
* Preserves the existing summary field so that background summarization
|
|
* results are not clobbered by progress updates from assistant messages.
|
|
*/
|
|
export function updateAgentProgress(
|
|
taskId: string,
|
|
progress: AgentProgress,
|
|
setAppState: SetAppState,
|
|
): void {
|
|
updateTaskState<LocalAgentTaskState>(taskId, setAppState, task => {
|
|
if (task.status !== 'running') {
|
|
return task
|
|
}
|
|
|
|
const existingSummary = task.progress?.summary
|
|
return {
|
|
...task,
|
|
progress: existingSummary
|
|
? { ...progress, summary: existingSummary }
|
|
: progress,
|
|
}
|
|
})
|
|
}
|
|
|
|
/**
|
|
* Update the background summary for an agent task.
|
|
* Called by the periodic summarization service to store a 1-2 sentence progress summary.
|
|
*/
|
|
export function updateAgentSummary(
|
|
taskId: string,
|
|
summary: string,
|
|
setAppState: SetAppState,
|
|
): void {
|
|
let captured: {
|
|
tokenCount: number
|
|
toolUseCount: number
|
|
startTime: number
|
|
toolUseId: string | undefined
|
|
} | null = null
|
|
|
|
updateTaskState<LocalAgentTaskState>(taskId, setAppState, task => {
|
|
if (task.status !== 'running') {
|
|
return task
|
|
}
|
|
|
|
captured = {
|
|
tokenCount: task.progress?.tokenCount ?? 0,
|
|
toolUseCount: task.progress?.toolUseCount ?? 0,
|
|
startTime: task.startTime,
|
|
toolUseId: task.toolUseId,
|
|
}
|
|
|
|
return {
|
|
...task,
|
|
progress: {
|
|
...task.progress,
|
|
toolUseCount: task.progress?.toolUseCount ?? 0,
|
|
tokenCount: task.progress?.tokenCount ?? 0,
|
|
summary,
|
|
},
|
|
}
|
|
})
|
|
|
|
// Emit summary to SDK consumers (e.g. VS Code subagent panel). No-op in TUI.
|
|
// Gate on the SDK option so coordinator-mode sessions without the flag don't
|
|
// leak summary events to consumers who didn't opt in.
|
|
if (captured && getSdkAgentProgressSummariesEnabled()) {
|
|
const { tokenCount, toolUseCount, startTime, toolUseId } = captured
|
|
emitTaskProgress({
|
|
taskId,
|
|
toolUseId,
|
|
description: summary,
|
|
startTime,
|
|
totalTokens: tokenCount,
|
|
toolUses: toolUseCount,
|
|
summary,
|
|
})
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Complete an agent task with result.
|
|
*/
|
|
export function completeAgentTask(
|
|
result: AgentToolResult,
|
|
setAppState: SetAppState,
|
|
): void {
|
|
const taskId = result.agentId
|
|
updateTaskState<LocalAgentTaskState>(taskId, setAppState, task => {
|
|
if (task.status !== 'running') {
|
|
return task
|
|
}
|
|
|
|
task.unregisterCleanup?.()
|
|
|
|
return {
|
|
...task,
|
|
status: 'completed',
|
|
result,
|
|
endTime: Date.now(),
|
|
evictAfter: task.retain ? undefined : Date.now() + PANEL_GRACE_MS,
|
|
abortController: undefined,
|
|
unregisterCleanup: undefined,
|
|
selectedAgent: undefined,
|
|
}
|
|
})
|
|
void evictTaskOutput(taskId)
|
|
// Note: Notification is sent by AgentTool via enqueueAgentNotification
|
|
}
|
|
|
|
/**
|
|
* Fail an agent task with error.
|
|
*/
|
|
export function failAgentTask(
|
|
taskId: string,
|
|
error: string,
|
|
setAppState: SetAppState,
|
|
): void {
|
|
updateTaskState<LocalAgentTaskState>(taskId, setAppState, task => {
|
|
if (task.status !== 'running') {
|
|
return task
|
|
}
|
|
|
|
task.unregisterCleanup?.()
|
|
|
|
return {
|
|
...task,
|
|
status: 'failed',
|
|
error,
|
|
endTime: Date.now(),
|
|
evictAfter: task.retain ? undefined : Date.now() + PANEL_GRACE_MS,
|
|
abortController: undefined,
|
|
unregisterCleanup: undefined,
|
|
selectedAgent: undefined,
|
|
}
|
|
})
|
|
void evictTaskOutput(taskId)
|
|
// Note: Notification is sent by AgentTool via enqueueAgentNotification
|
|
}
|
|
|
|
/**
|
|
* Register an agent task.
|
|
* Called by AgentTool to create a new background agent.
|
|
*
|
|
* @param parentAbortController - Optional parent abort controller. If provided,
|
|
* the agent's abort controller will be a child that auto-aborts when parent aborts.
|
|
* This ensures subagents are aborted when their parent (e.g., in-process teammate) aborts.
|
|
*/
|
|
export function registerAsyncAgent({
|
|
agentId,
|
|
description,
|
|
prompt,
|
|
selectedAgent,
|
|
setAppState,
|
|
parentAbortController,
|
|
toolUseId,
|
|
}: {
|
|
agentId: string
|
|
description: string
|
|
prompt: string
|
|
selectedAgent: AgentDefinition
|
|
setAppState: SetAppState
|
|
parentAbortController?: AbortController
|
|
toolUseId?: string
|
|
}): LocalAgentTaskState {
|
|
void initTaskOutputAsSymlink(
|
|
agentId,
|
|
getAgentTranscriptPath(asAgentId(agentId)),
|
|
)
|
|
|
|
// Create abort controller - if parent provided, create child that auto-aborts with parent
|
|
const abortController = parentAbortController
|
|
? createChildAbortController(parentAbortController)
|
|
: createAbortController()
|
|
|
|
const taskState: LocalAgentTaskState = {
|
|
...createTaskStateBase(agentId, 'local_agent', description, toolUseId),
|
|
type: 'local_agent',
|
|
status: 'running',
|
|
agentId,
|
|
prompt,
|
|
selectedAgent,
|
|
agentType: selectedAgent.agentType ?? 'general-purpose',
|
|
abortController,
|
|
retrieved: false,
|
|
lastReportedToolCount: 0,
|
|
lastReportedTokenCount: 0,
|
|
isBackgrounded: true, // registerAsyncAgent immediately backgrounds
|
|
pendingMessages: [],
|
|
retain: false,
|
|
diskLoaded: false,
|
|
}
|
|
|
|
// Register cleanup handler
|
|
const unregisterCleanup = registerCleanup(async () => {
|
|
killAsyncAgent(agentId, setAppState)
|
|
})
|
|
|
|
taskState.unregisterCleanup = unregisterCleanup
|
|
|
|
// Register task in AppState
|
|
registerTask(taskState, setAppState)
|
|
|
|
return taskState
|
|
}
|
|
|
|
// Map of taskId -> resolve function for background signals
|
|
// When backgroundAgentTask is called, it resolves the corresponding promise
|
|
const backgroundSignalResolvers = new Map<string, () => void>()
|
|
|
|
/**
|
|
* Register a foreground agent task that could be backgrounded later.
|
|
* Called when an agent has been running long enough to show the BackgroundHint.
|
|
* @returns object with taskId and backgroundSignal promise
|
|
*/
|
|
export function registerAgentForeground({
|
|
agentId,
|
|
description,
|
|
prompt,
|
|
selectedAgent,
|
|
setAppState,
|
|
autoBackgroundMs,
|
|
toolUseId,
|
|
}: {
|
|
agentId: string
|
|
description: string
|
|
prompt: string
|
|
selectedAgent: AgentDefinition
|
|
setAppState: SetAppState
|
|
autoBackgroundMs?: number
|
|
toolUseId?: string
|
|
}): {
|
|
taskId: string
|
|
backgroundSignal: Promise<void>
|
|
cancelAutoBackground?: () => void
|
|
} {
|
|
void initTaskOutputAsSymlink(
|
|
agentId,
|
|
getAgentTranscriptPath(asAgentId(agentId)),
|
|
)
|
|
|
|
const abortController = createAbortController()
|
|
|
|
const unregisterCleanup = registerCleanup(async () => {
|
|
killAsyncAgent(agentId, setAppState)
|
|
})
|
|
|
|
const taskState: LocalAgentTaskState = {
|
|
...createTaskStateBase(agentId, 'local_agent', description, toolUseId),
|
|
type: 'local_agent',
|
|
status: 'running',
|
|
agentId,
|
|
prompt,
|
|
selectedAgent,
|
|
agentType: selectedAgent.agentType ?? 'general-purpose',
|
|
abortController,
|
|
unregisterCleanup,
|
|
retrieved: false,
|
|
lastReportedToolCount: 0,
|
|
lastReportedTokenCount: 0,
|
|
isBackgrounded: false, // Not yet backgrounded - running in foreground
|
|
pendingMessages: [],
|
|
retain: false,
|
|
diskLoaded: false,
|
|
}
|
|
|
|
// Create background signal promise
|
|
let resolveBackgroundSignal: () => void
|
|
const backgroundSignal = new Promise<void>(resolve => {
|
|
resolveBackgroundSignal = resolve
|
|
})
|
|
backgroundSignalResolvers.set(agentId, resolveBackgroundSignal!)
|
|
|
|
registerTask(taskState, setAppState)
|
|
|
|
// Auto-background after timeout if configured
|
|
let cancelAutoBackground: (() => void) | undefined
|
|
if (autoBackgroundMs !== undefined && autoBackgroundMs > 0) {
|
|
const timer = setTimeout(
|
|
(setAppState, agentId) => {
|
|
// Mark task as backgrounded and resolve the signal
|
|
setAppState(prev => {
|
|
const prevTask = prev.tasks[agentId]
|
|
if (!isLocalAgentTask(prevTask) || prevTask.isBackgrounded) {
|
|
return prev
|
|
}
|
|
return {
|
|
...prev,
|
|
tasks: {
|
|
...prev.tasks,
|
|
[agentId]: { ...prevTask, isBackgrounded: true },
|
|
},
|
|
}
|
|
})
|
|
const resolver = backgroundSignalResolvers.get(agentId)
|
|
if (resolver) {
|
|
resolver()
|
|
backgroundSignalResolvers.delete(agentId)
|
|
}
|
|
},
|
|
autoBackgroundMs,
|
|
setAppState,
|
|
agentId,
|
|
)
|
|
cancelAutoBackground = () => clearTimeout(timer)
|
|
}
|
|
|
|
return { taskId: agentId, backgroundSignal, cancelAutoBackground }
|
|
}
|
|
|
|
/**
|
|
* Background a specific foreground agent task.
|
|
* @returns true if backgrounded successfully, false otherwise
|
|
*/
|
|
export function backgroundAgentTask(
|
|
taskId: string,
|
|
getAppState: () => AppState,
|
|
setAppState: SetAppState,
|
|
): boolean {
|
|
const state = getAppState()
|
|
const task = state.tasks[taskId]
|
|
if (!isLocalAgentTask(task) || task.isBackgrounded) {
|
|
return false
|
|
}
|
|
|
|
// Update state to mark as backgrounded
|
|
setAppState(prev => {
|
|
const prevTask = prev.tasks[taskId]
|
|
if (!isLocalAgentTask(prevTask)) {
|
|
return prev
|
|
}
|
|
return {
|
|
...prev,
|
|
tasks: {
|
|
...prev.tasks,
|
|
[taskId]: { ...prevTask, isBackgrounded: true },
|
|
},
|
|
}
|
|
})
|
|
|
|
// Resolve the background signal to interrupt the agent loop
|
|
const resolver = backgroundSignalResolvers.get(taskId)
|
|
if (resolver) {
|
|
resolver()
|
|
backgroundSignalResolvers.delete(taskId)
|
|
}
|
|
|
|
return true
|
|
}
|
|
|
|
/**
|
|
* Unregister a foreground agent task when the agent completes without being backgrounded.
|
|
*/
|
|
export function unregisterAgentForeground(
|
|
taskId: string,
|
|
setAppState: SetAppState,
|
|
): void {
|
|
// Clean up the background signal resolver
|
|
backgroundSignalResolvers.delete(taskId)
|
|
|
|
let cleanupFn: (() => void) | undefined
|
|
|
|
setAppState(prev => {
|
|
const task = prev.tasks[taskId]
|
|
// Only remove if it's a foreground task (not backgrounded)
|
|
if (!isLocalAgentTask(task) || task.isBackgrounded) {
|
|
return prev
|
|
}
|
|
|
|
// Capture cleanup function to call outside of updater
|
|
cleanupFn = task.unregisterCleanup
|
|
|
|
const { [taskId]: removed, ...rest } = prev.tasks
|
|
return { ...prev, tasks: rest }
|
|
})
|
|
|
|
// Call cleanup outside of the state updater (avoid side effects in updater)
|
|
cleanupFn?.()
|
|
}
|