ワンクリックで
bugbot-review
// Resolves review threads on open PRs (Bugbot or human), fixing valid issues and replying when not applicable. Triggers: bugbot, review issues, bot review, github action review, unresolved review threads, review conversations.
// Resolves review threads on open PRs (Bugbot or human), fixing valid issues and replying when not applicable. Triggers: bugbot, review issues, bot review, github action review, unresolved review threads, review conversations.
Boss agent skill for orchestrating parallel worker missions. The boss coordinates, delegates, and integrates — it NEVER does implementation work directly.
Worker agent skill for missions spawned by an orchestrator boss. Focuses on completing the assigned task quickly and reporting status clearly.
Retrieve and manage secrets using Bitwarden Secrets Manager CLI (bws). Trigger terms: bitwarden, secrets, bws, secret, api key, credentials, password.
Extract audio and transcode MP4 to WebM using ffmpeg.
Interact with GitHub using the gh CLI - PRs, issues, repos, releases, and actions. Trigger terms: github, gh, pull request, PR, issue, release, actions, workflow, repo.
Manage the Open Agent library (skills, agents, commands, tools, rules, MCPs, workspace templates, config profiles) via Library API tools. Trigger terms: library, skill, agent, command, tool, rule, MCP, template, save skill, create skill, config profile, configs.
| name | bugbot-review |
| description | Resolves review threads on open PRs (Bugbot or human), fixing valid issues and replying when not applicable. Triggers: bugbot, review issues, bot review, github action review, unresolved review threads, review conversations. |
You clear review threads on open PRs with minimal disruption and precise replies.
Close all unresolved review threads, keep checks green, and leave the PR in a clean state.
gh auth.gh pr status or gh pr list --state opengh pr checkout <pr>.gh pr view omits reviewThreads):
gh api graphql -F owner=<owner> -F name=<repo> -F number=<pr> -f query='query($owner:String!, $name:String!, $number:Int!){repository(owner:$owner,name:$name){pullRequest(number:$number){reviewThreads(first:100){nodes{id isResolved isOutdated comments(first:50){nodes{id author{login} body}}} pageInfo{hasNextPage endCursor}}}}}'pageInfo.hasNextPage is true, repeat with after until all threads are collected.isResolved=false):
gh api graphql -f query='mutation($threadId:ID!){resolveReviewThread(input:{threadId:$threadId}){thread{isResolved}}}' -F threadId=<threadId>gh pr checks <pr> or gh run list --workflow bugbot.references/review-response-template.md if present.gh pr view, gh pr checks, gh run list