From 4217286b729ca3b2159ac19ca9e3ccf2d2e271ae Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Wed, 6 Aug 2025 11:36:53 -0400 Subject: [PATCH] ignore: remove demo plugin --- .opencode/plugin/example.ts | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .opencode/plugin/example.ts diff --git a/.opencode/plugin/example.ts b/.opencode/plugin/example.ts deleted file mode 100644 index 05910054..00000000 --- a/.opencode/plugin/example.ts +++ /dev/null @@ -1,10 +0,0 @@ -import { Plugin } from "../../packages/plugin/src/index" - -export const ExamplePlugin: Plugin = async ({ app, client, $ }) => { - return { - permission: {}, - async "chat.params"(input, output) { - output.topP = 1 - }, - } -}