Files
opencode/packages/plugin/src/example.ts
2025-08-03 21:19:03 -04:00

15 lines
281 B
TypeScript

import { Plugin } from "./index"
export const ExamplePlugin: Plugin = async ({ app, client, $ }) => {
return {
permission: {},
tool: {
execute: {
async before(input, output) {
console.log("before", input, output)
},
},
},
}
}