From ce06cca2195319949bb86a1101ce0d73e3c52a16 Mon Sep 17 00:00:00 2001 From: Hugo Nijhuis Date: Thu, 14 May 2026 22:18:07 +0200 Subject: [PATCH] Add tea_issues tool for listing GitHub issues --- .opencode/tools/tea-issues.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .opencode/tools/tea-issues.ts diff --git a/.opencode/tools/tea-issues.ts b/.opencode/tools/tea-issues.ts new file mode 100644 index 0000000..292e384 --- /dev/null +++ b/.opencode/tools/tea-issues.ts @@ -0,0 +1,11 @@ +import { tool } from "@opencode-ai/plugin" +import path from "path" + +export default tool({ + description: "List all issues in the project using tea CLI", + args: {}, + async execute(args, context) { + const result = await Bun.$`tea issues list`.text() + return result.trim() + }, +}) \ No newline at end of file