From c1476c6a98ce8ac0df7fc95e2c628179c376d06e Mon Sep 17 00:00:00 2001 From: Hugo Nijhuis Date: Thu, 14 May 2026 23:02:47 +0200 Subject: [PATCH] Remove unused labels and milestone parameters from tea_issue_create --- .opencode/tools/tea-issue-create.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/.opencode/tools/tea-issue-create.ts b/.opencode/tools/tea-issue-create.ts index d7d83d7..bea0806 100644 --- a/.opencode/tools/tea-issue-create.ts +++ b/.opencode/tools/tea-issue-create.ts @@ -5,8 +5,6 @@ export default tool({ args: { title: tool.schema.string().describe("Issue title"), description: tool.schema.string().optional().describe("Issue description (supports markdown)"), - labels: tool.schema.string().optional().describe("Comma-separated list of labels"), - milestone: tool.schema.string().optional().describe("Milestone name"), }, async execute(args) { const result = await Bun.$`tea issues create -t ${args.title} -d ${args.description}`.text()