- 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)
22 lines
768 B
TypeScript
22 lines
768 B
TypeScript
import type { AgentConfig } from "@opencode-ai/sdk"
|
|
import { omoAgent } from "./omo"
|
|
import { oracleAgent } from "./oracle"
|
|
import { librarianAgent } from "./librarian"
|
|
import { exploreAgent } from "./explore"
|
|
import { frontendUiUxEngineerAgent } from "./frontend-ui-ux-engineer"
|
|
import { documentWriterAgent } from "./document-writer"
|
|
import { multimodalLookerAgent } from "./multimodal-looker"
|
|
|
|
export const builtinAgents: Record<string, AgentConfig> = {
|
|
OmO: omoAgent,
|
|
oracle: oracleAgent,
|
|
librarian: librarianAgent,
|
|
explore: exploreAgent,
|
|
"frontend-ui-ux-engineer": frontendUiUxEngineerAgent,
|
|
"document-writer": documentWriterAgent,
|
|
"multimodal-looker": multimodalLookerAgent,
|
|
}
|
|
|
|
export * from "./types"
|
|
export { createBuiltinAgents } from "./utils"
|