
pr
by corv89
Human-in-the-loop execution for LLM agents
SKILL.md
name: pr description: Commit changes, bump version, update changelog, and open a PR
/pr - Prepare and Submit Changes
Purpose
Commit changes to a feature branch, bump version if needed, update changelog, and open a PR.
Before Starting
- Check for uncommitted changes:
git status --porcelain - Ensure tests pass:
make testor equivalent - Confirm current branch (create one if on main)
Process
-
Create or verify feature branch
If on main, create a branch from the work context:
git checkout -b <descriptive-branch-name> -
Stage and commit changes
Use the user's git identity (never sign as Claude, no Co-authored-by). Write conventional commit messages:
feat: add remote file syncfix: resolve timeout on large files
-
Bump version if warranted
- Bug fixes → patch
- New features → minor
- Breaking changes → major
Update version in pyproject.toml (or equivalent).
-
Update CHANGELOG.md
Use /changelog skill to generate entry if changes are user-facing.
-
Push and create PR
git push -u origin <branch> gh pr create --fillPR description should summarize changes. Link issues if referenced in commits.
Notes
- Don't add "Signed-off-by" or "Co-authored-by: Claude" trailers
- Ask before force-pushing
- If tests fail, stop and report
Score
Total Score
Based on repository quality metrics
SKILL.mdファイルが含まれている
ライセンスが設定されている
100文字以上の説明がある
GitHub Stars 100以上
1ヶ月以内に更新
10回以上フォークされている
オープンIssueが50未満
プログラミング言語が設定されている
1つ以上のタグが設定されている
Reviews
Reviews coming soon
