- Add OmO agent: powerful AI orchestrator for complex task delegation - Implements parallel background agent execution and todo-driven workflows - Emphasizes aggressive subagent delegation with 7-section prompt structure Co-authored-by: huynguyen03dev <huynguyen03dev@users.noreply.github.com> 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
21 lines
469 B
TypeScript
21 lines
469 B
TypeScript
import type { AgentConfig } from "@opencode-ai/sdk"
|
|
|
|
export type BuiltinAgentName =
|
|
| "OmO"
|
|
| "oracle"
|
|
| "librarian"
|
|
| "explore"
|
|
| "frontend-ui-ux-engineer"
|
|
| "document-writer"
|
|
| "multimodal-looker"
|
|
|
|
export type OverridableAgentName =
|
|
| "build"
|
|
| BuiltinAgentName
|
|
|
|
export type AgentName = BuiltinAgentName
|
|
|
|
export type AgentOverrideConfig = Partial<AgentConfig>
|
|
|
|
export type AgentOverrides = Partial<Record<OverridableAgentName, AgentOverrideConfig>>
|