feat: wire up agents and expose via opencode plugin
This commit is contained in:
10
src/agents/index.ts
Normal file
10
src/agents/index.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
import type { AgentConfig } from "@opencode-ai/sdk"
|
||||
import { oracleAgent } from "./oracle"
|
||||
import { librarianAgent } from "./librarian"
|
||||
import { exploreAgent } from "./explore"
|
||||
|
||||
export const builtinAgents: Record<string, AgentConfig> = {
|
||||
oracle: oracleAgent,
|
||||
librarian: librarianAgent,
|
||||
explore: exploreAgent,
|
||||
}
|
||||
Reference in New Issue
Block a user