用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/JSGforever/skillguard --skill coderabbit-workflow命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Monad blockchain development tutor and builder. Triggers on "build", "create", "dApp", "smart contract", "Solidity", "DeFi", "Monad", "web3", "MON", or any blockchain development task. Covers Foundry-first workflow, Scaffold-Monad, parallel execution EVM, and Monad-specific deployment patterns.
Manage Uniswap V4 LP positions on Base. Add, remove, monitor, auto-compound, and harvest fees — including Clanker protocol fee claims.
Boilerplate templates for Claude Code extensions. Triggers on: create agent, new skill, command template, hook script, extension scaffold.
基于 SOC 职业分类
正在显示 SKILL.md
| name | coderabbit-workflow |
| description | Systematic workflow for CodeRabbit reviews - local CLI, PR threads, and commit attribution |
| compatibility | All repositories with CodeRabbit enabled |
| metadata | {"version":"2.0.0","category":"code-quality","tags":["code-review","coderabbit","quality"],"triggers":["before-push","on-demand"]} |
Address CodeRabbit review comments systematically. Workflows for local CLI usage, PR thread processing, and commit attribution.
📚 references/ - Detailed documentation
🔧 scripts/ - Automation scripts
| Mode | When | Reference |
|---|---|---|
| Local CLI | Before push, get early feedback | references/cli-integration.md |
| PR Threads | After CodeRabbit reviews your PR | references/workflow-examples.md |
node .claude/skills/coderabbit-workflow/scripts/export-comments.ts --pr <number>references/workflow-examples.mdstatus: 'fixed')node .claude/skills/coderabbit-workflow/scripts/reply-to-threads.ts --file .tmp/coderabbit-*.jsonNote: The reply script only processes comments with status !== 'pending'. After applying fixes, update the JSON file to change status from 'pending' to 'fixed' before running the reply script.
| Script | Purpose |
|---|---|
scripts/run-local-review.ts | Run CodeRabbit CLI and save findings |
scripts/export-comments.ts | Export PR comments to local JSON |
scripts/reply-to-threads.ts | Batch reply to threads after fixes |
scripts/monitor-approval.ts | Poll for approval, request review/approval automatically |
| Reference | Content |
|---|---|
references/setup.md | Installation, authentication, troubleshooting |
references/cli-integration.md | CLI commands and async workflow |
references/commit-formats.md | All commit message templates |
references/workflow-examples.md | Complete workflow examples |
All CodeRabbit fix commits must include:
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
See references/commit-formats.md for all templates.
Use the monitor script to automatically wait for and request CodeRabbit approval:
# Monitor PR and automatically request review/approval when appropriate
node scripts/monitor-approval.ts --pr <number>
# With custom poll interval (default: 60s)
node scripts/monitor-approval.ts --pr <number> --interval 30
# Dry-run mode (show what would be done)
node scripts/monitor-approval.ts --pr <number> --dry-run
The monitor script:
--interval)Timing requirements (automated by monitor script):
| Time Since Last Commit | Action |
|---|---|
| 0-15 minutes | Wait for CodeRabbit to review automatically |
| 15+ minutes (no review) | Request review: @coderabbitai review |
| 30+ minutes (no approval) | Request approval: @coderabbitai approve |
Manual commands (if not using monitor script):
# Check time of last commit
git log -1 --format='%ci'
# Request review (after 15 min with no activity)
gh pr comment <PR_NUMBER> --body "@coderabbitai review"
# Request approval (after 30 min with no approval)
gh pr comment <PR_NUMBER> --body "@coderabbitai approve"