用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill edit-pr命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | edit-pr |
| description | Edit PR description with structured format Use when this capability is needed. |
| metadata | {"author":"AzurIce"} |
Edit the PR description with a structured format following ranim's conventions (reference: PR #77, PR #64).
Identify the PR: If no PR number is provided, get the current branch's PR with gh pr list --head $(git branch --show-current).
Analyze the changes:
git diff main...HEAD --stat to understand the scopegit log main..HEAD --oneline to see commitsUnderstand the context: Read key changed files to understand what the PR is doing. Look for:
Structure the PR description following this format:
Closes: #<issue-number>
- **feat**: New features or capabilities
- **fix**: Bug fixes
- **refactor**: Code improvements without behavior change
- **docs**: Documentation updates
- **perf**: Performance improvements
- **test**: Test additions or changes
### Breaking Changes
- **API/Field name**: Description of the breaking change and migration path
---
## Component/Feature 1
Detailed description of the first major change.
Use code blocks, mermaid diagrams, or examples as needed.
## Component/Feature 2
...
Use visualizations when helpful:
Update the PR with gh pr edit <number> --body "$(cat <<'EOF'\n...\nEOF\n)"
Return the PR URL at the end.
Source: AzurIce/ranim — distributed by TomeVault.