Files
architecture/.opencode/tools/tea-issues.ts
2026-05-15 11:23:37 +02:00

11 lines
281 B
TypeScript

import { tool } from "@opencode-ai/plugin"
import { $ } from "bun"
export default tool({
description: "List all issues in the project using tea CLI",
args: {},
async execute(args, context) {
const result = await $`tea issues list`.text()
return result.trim()
},
})