Skip to content

Commit 9608838

Browse files
feat(agents): add OmO orchestrator agent
- 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 <[email protected]> 🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
1 parent c2d6e03 commit 9608838

File tree

4 files changed

+411
-1
lines changed

4 files changed

+411
-1
lines changed

src/agents/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import type { AgentConfig } from "@opencode-ai/sdk"
2+
import { omoAgent } from "./omo"
23
import { oracleAgent } from "./oracle"
34
import { librarianAgent } from "./librarian"
45
import { exploreAgent } from "./explore"
@@ -7,6 +8,7 @@ import { documentWriterAgent } from "./document-writer"
78
import { multimodalLookerAgent } from "./multimodal-looker"
89

910
export const builtinAgents: Record<string, AgentConfig> = {
11+
OmO: omoAgent,
1012
oracle: oracleAgent,
1113
librarian: librarianAgent,
1214
explore: exploreAgent,
@@ -17,4 +19,3 @@ export const builtinAgents: Record<string, AgentConfig> = {
1719

1820
export * from "./types"
1921
export { createBuiltinAgents } from "./utils"
20-
export { BUILD_AGENT_PROMPT_EXTENSION } from "./build"

0 commit comments

Comments
 (0)