From 92c79f40b5fccdfcf44026b7bf0480a9bd90e2be 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 05910054a1..0000000000 --- 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 - }, - } -}