Compare commits

..

1 Commits

Author SHA1 Message Date
9b5d5ae16f chore(deps): add renovate.json 2026-05-15 10:01:18 +00:00
4 changed files with 6 additions and 42 deletions

View File

@@ -1,15 +0,0 @@
import { tool } from "@opencode-ai/plugin"
import { $ } from "bun"
export default tool({
description: "Create a git worktree for a branch or PR",
args: {
branch: tool.schema.string().describe("Branch name or PR number"),
directory: tool.schema.string().describe("Worktree directory name (optional)"),
},
async execute(args) {
const worktreeDir = args.directory || args.branch
const result = await $`git worktree add ../worktrees/${worktreeDir} ${args.branch}`.text()
return result.trim()
},
})

View File

@@ -1,14 +0,0 @@
import { tool } from "@opencode-ai/plugin"
import { $ } from "bun"
export default tool({
description: "Add a comment to a specific issue using tea CLI",
args: {
issueNumber: tool.schema.number().describe("Issue number/index"),
body: tool.schema.string().describe("Comment body"),
},
async execute(args) {
const result = await $`tea comment ${args.issueNumber} ${args.body}`.text()
return result.trim()
},
})

View File

@@ -1,13 +0,0 @@
import { tool } from "@opencode-ai/plugin"
import { $ } from "bun"
export default tool({
description: "Get a specific issue with all details and comments using tea CLI",
args: {
issueNumber: tool.schema.number().describe("Issue number/index"),
},
async execute(args) {
const result = await $`tea issues ${args.issueNumber} --comments --output json`.text()
return result.trim()
},
})

6
renovate.json Normal file
View File

@@ -0,0 +1,6 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
"config:recommended"
]
}