Compare commits
5 Commits
renovate/c
...
c3f8f9c611
| Author | SHA1 | Date | |
|---|---|---|---|
|
c3f8f9c611
|
|||
|
5b4ab46471
|
|||
|
75daf31e1b
|
|||
|
28d7622956
|
|||
|
e692018422
|
15
.opencode/tools/git-worktree-create.ts
Normal file
15
.opencode/tools/git-worktree-create.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
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()
|
||||
},
|
||||
})
|
||||
14
.opencode/tools/tea-comment.ts
Normal file
14
.opencode/tools/tea-comment.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
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()
|
||||
},
|
||||
})
|
||||
13
.opencode/tools/tea-issue-get.ts
Normal file
13
.opencode/tools/tea-issue-get.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
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()
|
||||
},
|
||||
})
|
||||
Reference in New Issue
Block a user