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