一键导入
resolve-comments
Resolve PR review comments by pushing code fixes or replying with explanations. Use when a PR has review comments that need to be auto-resolved.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Resolve PR review comments by pushing code fixes or replying with explanations. Use when a PR has review comments that need to be auto-resolved.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Add React Native support (.native.tsx files) to Blade components that currently only have web implementations. Use when user says "add native support to {Component}", "migrate {Component} to native", or "/migrate-to-rn".
Review blade PRs by fetching diff, checking CI status, and getting Storybook URL. Use when reviewing PRs, checking PR status, or getting preview links for razorpay/blade PRs.
Get agentic metrics for the `razorpay/blade` repo.
Perform a task end-to-end when intent is set to 'perform-task-end-to-end' by checking existence of GITHUB__RZP_SWE_AGENT_APP__APP_ID environment variable in the session.
Heal a Blade PR by fixing CI failures, missing changesets, and sanity issues. Use when a PR has failing CI or other sanity problems that need to be auto-fixed.
Create a pull request ready for review with conventional commit message and structured PR body targeting master branch
基于 SOC 职业分类
| name | resolve-comments |
| description | Resolve PR review comments by pushing code fixes or replying with explanations. Use when a PR has review comments that need to be auto-resolved. |
| disable-model-invocation | true |
Use gh CLI to fetch the PR and each comment:
gh pr view {PR_NUMBER} --repo razorpay/blade
gh api repos/razorpay/blade/pulls/comments/{COMMENT_ID}
For each comment in COMMENT_URLS, determine the appropriate resolution:
[resolved by agent]) at the end, and mark the inlined comment thread as resolved on GitHub.[resolved by agent] at the end.[resolved by agent] at the end.
Human Help Needed 🧑🏻💻 to the PR instead of guessing.[resolved by agent] at the end.If any code fixes were made:
git add -A && git diff --cached --quiet || (git commit -m "fix: <relevant commit message> [resolved by agent]" && git push)
After resolving, reply to each inlined comment with small message and add [resolved by agent] at the end (if you have not already done so).