2025-12-03 11:49:33 +09:00
|
|
|
import type { AgentConfig } from "@opencode-ai/sdk"
|
2025-12-14 17:16:32 +09:00
|
|
|
import { omoAgent } from "./omo"
|
2025-12-03 11:49:33 +09:00
|
|
|
import { oracleAgent } from "./oracle"
|
|
|
|
|
import { librarianAgent } from "./librarian"
|
|
|
|
|
import { exploreAgent } from "./explore"
|
2025-12-03 13:07:02 +09:00
|
|
|
import { frontendUiUxEngineerAgent } from "./frontend-ui-ux-engineer"
|
2025-12-03 13:13:56 +09:00
|
|
|
import { documentWriterAgent } from "./document-writer"
|
2025-12-13 15:25:29 +09:00
|
|
|
import { multimodalLookerAgent } from "./multimodal-looker"
|
2025-12-03 11:49:33 +09:00
|
|
|
|
|
|
|
|
export const builtinAgents: Record<string, AgentConfig> = {
|
2025-12-14 17:16:32 +09:00
|
|
|
OmO: omoAgent,
|
2025-12-03 11:49:33 +09:00
|
|
|
oracle: oracleAgent,
|
|
|
|
|
librarian: librarianAgent,
|
|
|
|
|
explore: exploreAgent,
|
2025-12-03 13:07:02 +09:00
|
|
|
"frontend-ui-ux-engineer": frontendUiUxEngineerAgent,
|
2025-12-03 13:13:56 +09:00
|
|
|
"document-writer": documentWriterAgent,
|
2025-12-13 15:25:29 +09:00
|
|
|
"multimodal-looker": multimodalLookerAgent,
|
2025-12-03 11:49:33 +09:00
|
|
|
}
|
2025-12-05 02:32:33 +09:00
|
|
|
|
|
|
|
|
export * from "./types"
|
|
|
|
|
export { createBuiltinAgents } from "./utils"
|