Автоматическое создание pull request из стейджа

productivity

simple-pr is a Claude Code skill that creates a pull request from staged changes with an auto-generated commit message. It follows seven structured steps: checking workspace state with `git status` (aborting if there are unstaged changes or the active branch is not `main`), pulling the latest code via `git pull origin main`, and reviewing staged changes with `git diff --cached`. Based on the diff, Claude generates a concise 1–2 sentence commit message focused on the "why" rather than the "what", then asks the user to confirm before proceeding. The skill creates a branch named `{username}/{short-descriptive-name}`, commits the changes, pushes the branch, and opens a PR using `gh pr create`. The resulting PR URL is reported to the user on completion.