From 9d06a721396a36bb9cf497f7e13621b42b465e18 Mon Sep 17 00:00:00 2001 From: Hugo Nijhuis Date: Thu, 14 May 2026 22:57:43 +0200 Subject: [PATCH] Add tea_issue_create tool with Bun.$ and description support --- .opencode/tools/tea-issue-create.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.opencode/tools/tea-issue-create.ts b/.opencode/tools/tea-issue-create.ts index dc1ba64..d7d83d7 100644 --- a/.opencode/tools/tea-issue-create.ts +++ b/.opencode/tools/tea-issue-create.ts @@ -9,8 +9,7 @@ export default tool({ milestone: tool.schema.string().optional().describe("Milestone name"), }, async execute(args) { - const cmd = `tea issues create -t "${args.title}" -d "${args.description}"` - const result = await Bun.$`${cmd}`.text() + const result = await Bun.$`tea issues create -t ${args.title} -d ${args.description}`.text() return result.trim() }, }) \ No newline at end of file