用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/r3bl-org/r3bl-open-core --skill merge-pr命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use a sub-agent (like `generalist`) to perform repetitive code transformations across multiple files in a single turn.
Apply type-safe bounds checking patterns using VPIndex/VPLength types instead of usize. Use when working with arrays, buffers, cursors, viewports, or any code that handles indices and lengths.
Run comprehensive Rust code quality checks including compilation, linting, documentation, and tests. Use after completing code changes and before creating commits.
基于 SOC 职业分类
正在显示 SKILL.md
| name | merge-pr |
| description | Workflow for rebasing and merging a local branch to main via a GitHub Pull Request. |
This skill codifies the workflow for taking a completed local task branch, pushing it to GitHub, creating a Pull Request, and merging it via rebase.
Use this skill when the user asks to "close the pr by rebasing and merging to main" or explicitly invokes /merge-pr.
git push -f origin HEAD. We use -f because local commits are frequently amended during code reviews.gh pr merge --rebase --delete-branch.git checkout main.git pull.git fetch --prune.git branch -D <branch-name>.