opencode_offline/packages/plugin/src/index.ts

199 lines
4.8 KiB
TypeScript
Raw Normal View History

import type {
Event,
createOpencodeClient,
Project,
Model,
Provider,
Permission,
UserMessage,
Message,
Part,
Auth,
2025-08-21 23:22:13 +08:00
Config,
} from "@opencode-ai/sdk"
2025-09-18 15:58:21 +08:00
2025-08-05 11:06:49 +08:00
import type { BunShell } from "./shell"
2025-09-18 15:58:21 +08:00
import { type ToolDefinition } from "./tool"
export * from "./tool"
2025-08-03 06:50:19 +08:00
export type ProviderContext = {
source: "env" | "config" | "custom" | "api"
info: Provider
options: Record<string, any>
}
2025-08-03 06:50:19 +08:00
export type PluginInput = {
client: ReturnType<typeof createOpencodeClient>
project: Project
directory: string
worktree: string
2025-08-05 11:06:49 +08:00
$: BunShell
2025-08-03 06:50:19 +08:00
}
2025-09-18 15:58:21 +08:00
export type Plugin = (input: PluginInput) => Promise<Hooks>
export type AuthHook = {
provider: string
loader?: (auth: () => Promise<Auth>, provider: Provider) => Promise<Record<string, any>>
methods: (
| {
type: "oauth"
label: string
prompts?: Array<
| {
type: "text"
key: string
message: string
placeholder?: string
validate?: (value: string) => string | undefined
condition?: (inputs: Record<string, string>) => boolean
}
| {
type: "select"
key: string
message: string
options: Array<{
label: string
value: string
hint?: string
}>
condition?: (inputs: Record<string, string>) => boolean
}
>
authorize(inputs?: Record<string, string>): Promise<AuthOuathResult>
}
| {
type: "api"
label: string
prompts?: Array<
| {
type: "text"
key: string
message: string
placeholder?: string
validate?: (value: string) => string | undefined
condition?: (inputs: Record<string, string>) => boolean
}
| {
type: "select"
key: string
message: string
options: Array<{
label: string
value: string
hint?: string
}>
condition?: (inputs: Record<string, string>) => boolean
}
>
authorize?(inputs?: Record<string, string>): Promise<
| {
type: "success"
key: string
provider?: string
}
| {
type: "failed"
}
>
}
)[]
}
export type AuthOuathResult = { url: string; instructions: string } & (
| {
method: "auto"
callback(): Promise<
| ({
type: "success"
provider?: string
} & (
| {
refresh: string
access: string
expires: number
}
| { key: string }
))
| {
type: "failed"
}
>
}
| {
method: "code"
callback(code: string): Promise<
| ({
type: "success"
provider?: string
} & (
| {
refresh: string
access: string
expires: number
}
| { key: string }
))
| {
type: "failed"
}
>
}
)
2025-08-03 06:50:19 +08:00
export interface Hooks {
event?: (input: { event: Event }) => Promise<void>
2025-08-21 23:22:13 +08:00
config?: (input: Config) => Promise<void>
2025-09-18 15:58:21 +08:00
tool?: {
[key: string]: ToolDefinition
}
auth?: AuthHook
2025-08-04 09:42:45 +08:00
/**
* Called when a new message is received
*/
"chat.message"?: (
input: { sessionID: string; agent?: string; model?: { providerID: string; modelID: string }; messageID?: string },
output: { message: UserMessage; parts: Part[] },
) => Promise<void>
2025-08-04 09:42:45 +08:00
/**
* Modify parameters sent to LLM
*/
"chat.params"?: (
input: { sessionID: string; agent: string; model: Model; provider: ProviderContext; message: UserMessage },
2025-08-11 08:30:25 +08:00
output: { temperature: number; topP: number; options: Record<string, any> },
2025-08-04 09:42:45 +08:00
) => Promise<void>
2025-11-08 09:59:02 +08:00
"permission.ask"?: (input: Permission, output: { status: "ask" | "deny" | "allow" }) => Promise<void>
2025-08-04 09:42:45 +08:00
"tool.execute.before"?: (
input: { tool: string; sessionID: string; callID: string },
output: { args: any },
) => Promise<void>
"tool.execute.after"?: (
input: { tool: string; sessionID: string; callID: string },
output: {
title: string
output: string
metadata: any
},
) => Promise<void>
"experimental.chat.messages.transform"?: (
input: {},
output: {
messages: {
info: Message
parts: Part[]
}[]
},
) => Promise<void>
"experimental.chat.system.transform"?: (
input: {},
output: {
system: string[]
},
) => Promise<void>
"experimental.text.complete"?: (
input: { sessionID: string; messageID: string; partID: string },
output: { text: string },
) => Promise<void>
2025-08-03 06:50:19 +08:00
}