notify.ts 249 B

123456789101112
  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. }