2025-12-05 02:32:33 +09:00
|
|
|
import type { AgentConfig } from "@opencode-ai/sdk"
|
|
|
|
|
|
|
|
|
|
export type AgentName =
|
|
|
|
|
| "oracle"
|
|
|
|
|
| "librarian"
|
|
|
|
|
| "explore"
|
|
|
|
|
| "frontend-ui-ux-engineer"
|
|
|
|
|
| "document-writer"
|
2025-12-13 15:25:29 +09:00
|
|
|
| "multimodal-looker"
|
2025-12-05 02:32:33 +09:00
|
|
|
|
|
|
|
|
export type AgentOverrideConfig = Partial<AgentConfig>
|
|
|
|
|
|
|
|
|
|
export type AgentOverrides = Partial<Record<AgentName, AgentOverrideConfig>>
|