import type { AgentConfig } from "@opencode-ai/sdk" export type BuiltinAgentName = | "Sisyphus" | "oracle" | "librarian" | "explore" | "frontend-ui-ux-engineer" | "document-writer" | "multimodal-looker" export type OverridableAgentName = | "build" | BuiltinAgentName export type AgentName = BuiltinAgentName export type AgentOverrideConfig = Partial export type AgentOverrides = Partial>