opencode/.opencode/plugin/example.ts
Dax Raad f85d30c484
Some checks are pending
deploy / deploy (push) Waiting to run
wip: plugins
2025-08-03 21:43:58 -04:00

10 lines
210 B
TypeScript

import { Plugin } from "./index"
export const ExamplePlugin: Plugin = async ({ app, client, $ }) => {
return {
permission: {},
async "chat.params"(input, output) {
output.topP = 1
},
}
}