一键导入
replying-to-pr-threads
Replies to specific GitHub Pull Request review threads using GraphQL API. Use when addressing individual review comments.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Replies to specific GitHub Pull Request review threads using GraphQL API. Use when addressing individual review comments.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Plans a track, generates track-specific spec documents and updates the tracks file
Scaffolds the project and sets up the Conductor environment
Execute a pre-implementation investigation workflow modeled on feature-dev Phase 1-4 (Discovery, Codebase Exploration, Clarifying Questions, Architecture Design). Use this when requirements are ambiguous, architecture decisions are needed, or external validation (Win32 API, Rust crates, EmEditor SDK) is required before coding in Conductor tracks.
Executes the tasks defined in the specified track's plan
Analyzing GitHub Pull Request review comments and managing follow-up tasks. This skill utilizes GraphQL to efficiently fetch review comments and categorizes them into critical fixes, future improvements, or out-of-scope items. Mandatory when a PR has received feedback to systematically address reviewer suggestions and ensure all necessary changes are tracked in Conductor.
Facilitating the creation of Draft Pull Requests on GitHub using the GitHub CLI (gh). This skill guides the collection of branch diffs, issue context via GraphQL, and the generation of structured PR titles and bodies in Japanese. Mandatory when the current task is ready for review as a draft to ensure all necessary context and issue links are included.
| name | replying-to-pr-threads |
| description | Replies to specific GitHub Pull Request review threads using GraphQL API. Use when addressing individual review comments. |
特定のレビューコメントスレッドに対して返信を行う場合、以下の手順を実行する。
GitHub MCP Serverの pull_request_read ツールを使用し、method: "get_review_comments" を指定してレビューコメント一覧を取得する。
レスポンス内の reviewThreads 配下にある ID (例: PRRT_...) がスレッドIDである。
取得したスレッドID (<THREAD_ID>) と返信内容 (<BODY>) を用いて、以下の GitHub-Efficiency プロトコルで返信を実行する。
run_shell_command を使用し、直接 gh api graphql を実行して返信を投稿する。gh api graphql -f query='
mutation($threadId: ID!, $body: String!) {
addPullRequestReviewThreadReply(input: {pullRequestReviewThreadId: $threadId, body: $body}) {
comment { url }
}
}' -f threadId='<THREAD_ID>' -f body='<BODY>\n\nCommented by Gemini CLI'
run_shell_command の実行結果(例: {"data":{"addPullRequestReviewThreadReply":{"comment":{"url":"..."}}}})から、投稿が成功したかを確認する。