13 lines
306 B
TypeScript
13 lines
306 B
TypeScript
|
|
import type { AgentConfig } from "@opencode-ai/sdk"
|
||
|
|
|
||
|
|
export type AgentName =
|
||
|
|
| "oracle"
|
||
|
|
| "librarian"
|
||
|
|
| "explore"
|
||
|
|
| "frontend-ui-ux-engineer"
|
||
|
|
| "document-writer"
|
||
|
|
|
||
|
|
export type AgentOverrideConfig = Partial<AgentConfig>
|
||
|
|
|
||
|
|
export type AgentOverrides = Partial<Record<AgentName, AgentOverrideConfig>>
|