用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/tomevault-io/skills-registry --skill github-pull-requests命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | github-pull-requests |
| description | Create a GitHub pull request with conventional commit title Use when this capability is needed. |
| metadata | {"author":"busterbn"} |
You are helping the user create a GitHub pull request for the current branch.
Get the current branch name (base branch is always main):
git branch --show-current
Ensure main is merged into the branch (no merge conflicts):
git fetch origin main
git merge origin/main --no-edit
Analyze the changes:
git log origin/main..HEAD --oneline
git diff origin/main..HEAD --stat
Read commit messages for context:
git log origin/main..HEAD --format="%B---"
Generate the PR:
feat: add user authentication, fix: resolve null pointer in parser)## Description
(1-2 sentences on what this PR does)
## Reason
(1-2 sentences on why this change was needed)
Run this command with the generated title and body. Use a heredoc for the body to handle newlines:
gh pr create --web --title "feat: example title" --body "$(cat <<'EOF'
## Description
Brief description here.
## Reason
Why this was done.
EOF
)"
feat, fix, refactor, docs, chore, test, perfCOP-123), DO NOT include it in the titleConverted and distributed by TomeVault — claim your Tome and manage your conversions.