一键导入
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 职业分类
Assists in Kotlin development for the "Customize Word Separators" IntelliJ plugin. Provides advanced expertise in layered architecture responsibility management, WordParser regular expressions, IDE action implementations, and strict naming conventions to ensure the quality of refactoring and feature extensions.
Enforce autonomous technical research and evidence-based implementation. Search for and obtain the latest documentation for IntelliJ Platform SDK, Kotlin, Gradle, and related technologies. Verify consistency with project conventions and use it when proposing implementations.
Executing Spec-Driven Development (SDD) via the Conductor framework. This skill governs track initialization, spec.md/plan.md creation, and the Universal File Resolution Protocol. It mandates strict adherence to phase transition protocols, user manual verification, and checkpointing. Required for all high-level task management and architectural decision-making.
Standardizing the creation and management of GitHub Issues. This skill MANDATES the use of a specific title format (type: Japanese Description) and a body template including Background/Purpose, Tasks, and Goal sections. It ensures consistency in tracking work items and facilitates clear communication of intent and success criteria. Use whenever creating or updating Issues to maintain project transparency.
Handles the creation of GitHub Sub-issues. Use this skill when you need to add existing issues as sub-issues to a parent Epic/Issue. It provides the correct usage of the `sub_issue_write` tool and fallback procedures using GitHub CLI (`gh api`) if the tool fails.
Gitワークフローの詳細なコマンド実行とトラブルシューティング。ステージングの原則は AGENTS.md を参照せよ。
| 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":"..."}}}})から、投稿が成功したかを確認する。