opencode-config/.opencode/tools/post-review.ts
opencode-agent 93e7843438
All checks were successful
CI / bootstrap (push) Successful in 7s
CI / lint (push) Successful in 17s
CI / typecheck (push) Successful in 25s
CI / test (3.12) (push) Successful in 2m48s
CI / test (3.13) (push) Successful in 1m41s
CI / test (3.14) (push) Successful in 1m34s
CI / complexity (push) Successful in 21s
feat(tools): add Forgejo backend with gh CLI fallback
2026-08-06 15:02:20 +00:00

23 lines
No EOL
1.4 KiB
TypeScript

import { tool } from "@opencode-ai/plugin"
import { runGh } from "./_shared"
const VERDICTS = ["APPROVE", "REQUEST_CHANGES", "NEEDS_DISCUSSION"] as const
type Verdict = typeof VERDICTS[number]
export default tool({
description: "Post code review verdict as PR comment with deterministic heading. Reviewer agent uses this instead of raw `gh pr comment` to guarantee `## Code Review Summary` + `### Verdict: <verdict>` format that pipeline-status.py parses.",
args: {
pr_number: tool.schema.number().describe("PR number to comment on"),
verdict: tool.schema.enum(VERDICTS).describe("Review verdict: APPROVE, REQUEST_CHANGES, or NEEDS_DISCUSSION"),
body: tool.schema.string().describe("Review body text (without heading — heading is auto-generated)"),
repo: tool.schema.string().optional().describe("Optional repo (owner/name). If omitted, gh auto-detects from context.worktree."),
},
async execute(args, context) {
const comment = `## Code Review Summary\n\n${args.body}\n\n### Verdict: ${args.verdict}`
const r = await runGh(["pr", "comment", String(args.pr_number), "--body", comment], args.repo, { cwd: context.worktree })
if (r.status !== 0) {
return `⚠️ post-review failed for PR #${args.pr_number} (exit ${r.status}): ${r.stderr || r.stdout}`
}
return `Review posted on PR #${args.pr_number}: verdict=${args.verdict}`
},
})