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() }, })