mirror of
https://github.com/sst/opencode.git
synced 2025-12-23 10:11:41 +00:00
18 lines
390 B
TypeScript
18 lines
390 B
TypeScript
import { Plugin } from "./index"
|
|
import { tool } from "./tool"
|
|
|
|
export const ExamplePlugin: Plugin = async (ctx) => {
|
|
return {
|
|
tool: {
|
|
mytool: tool({
|
|
description: "This is a custom tool",
|
|
args: {
|
|
foo: tool.schema.string().describe("foo"),
|
|
},
|
|
async execute(args) {
|
|
return `Hello ${args.foo}!`
|
|
},
|
|
}),
|
|
},
|
|
}
|
|
}
|