notify.ts 263 B

1234567891011
  1. import type { Plugin } from "@opencode-ai/plugin"
  2. export const Notify: Plugin = async ({ $ }) => {
  3. return {
  4. // async event(input) {
  5. // if (input.event.type === "session.idle") {
  6. // await $`say "Your code is done!"`
  7. // }
  8. // },
  9. }
  10. }