cloudaxe-opencode/packages/plugin/src/promise/agent.ts

17 lines
627 B
TypeScript

import type { AgentApi } from "@opencode-ai/client/promise/api"
import type { Agent } from "@opencode-ai/schema/agent"
import type { Transform } from "./registration.js"
import type { DeepMutable } from "./types.js"
export interface AgentDraft {
list(): readonly DeepMutable<Agent.Info>[]
get(id: string): DeepMutable<Agent.Info> | undefined
default(id: string | undefined): void
update(id: string, update: (agent: DeepMutable<Agent.Info>) => void): void
remove(id: string): void
}
export interface AgentDomain extends AgentApi {
readonly transform: Transform<AgentDraft>
readonly reload: () => Promise<void>
}