Merge branch 'stack/agent-profiles-2-configs' into stack/agent-profiles-3-wire

# Conflicts:
#	packages/host/apiproxy/src/api-proxy.ts
#	packages/host/apiproxy/tests/api-proxy-subagents.spec.ts
This commit is contained in:
Yichen Jiang
2026-08-07 13:39:29 +08:00
259 changed files with 8059 additions and 1533 deletions

View File

@@ -169,7 +169,7 @@ export type TurnEndReason = TurnEndReasonMap[keyof TurnEndReasonMap]
export interface TodoItem {
/** What this task is — a short imperative line shown in the UI. */
content: string
/** Lifecycle state. `in_progress` marks the single task being worked now. */
/** Lifecycle state. `in_progress` marks a task being worked now; parallel work may mark several. */
status: 'pending' | 'in_progress' | 'completed'
}