Files
opencode/packages/plugin/src/example.ts
2025-09-18 05:42:59 -04:00

23 lines
486 B
TypeScript

import { Plugin } from "./index"
import { tool } from "./tool"
export const ExamplePlugin: Plugin = async (ctx) => {
return {
permission: {},
tool: {
mytool: tool({
description: "This is a custom tool tool",
args: {
foo: tool.schema.string().describe("foo"),
},
async execute(args) {
return `Hello ${args.foo}!`
},
}),
},
async "chat.params"(_input, output) {
output.topP = 1
},
}
}