git-pr-workflows-git-workflow
Orchestrate review, tests, commits, branch pushes, and pull-request creation with parallel agents. Use when completed changes must move through validation into a PR or guarded merge.
npx skills add sickn33/agentic-awesome-skills --skill git-pr-workflows-git-workflow --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Guarded Git Pull Request Workflow Move completed changes from local review to a verified pull request without bypassing repository policy or branch protection. ## When to Use Use for completed implementation work that must be reviewed, tested, committed, pushed to a topic branch, and opened as a pull request. Use the repository's dedicated maintainer or release workflow instead when one is mandatory. ## Policy Gate Before mutation: 1. Read `AGENTS.md`, contribution guidance, maintainer docs, and relevant nested instructions. 2. Inspect the current branch, worktree, remotes, upstream, and effective target-branch protection. 3. Discover repository-native validation, commit, PR, merge, and release commands. 4. Preserve unrelated dirty and staged files. Repository policy wins over flags and user shorthand. Trunk-based development does not imply a direct push: when the target is protected, use a short-lived branch and pull request. If a repository defines a mandatory maintainer skill or guarded merge command, hand off merge and release actions to it. In `agentic-awesome-skills`, use `antigravity-maintainer-batch-release` and `npm run merge:batch`. ## Inputs Resolve these from the requ
- When to Use
- Policy Gate
- Inputs
- Workflow
- 1. Capture the exact change
- 2. Review in parallel
- 3. Validate and repair
- 4. Prepare the branch and commit
- 5. Push and create the pull request
- 6. Verify the remote result
- Stop Condition
- Limitations
git status --short --branch git diff --stat git diff --cached --stat git branch --show-current git remote -v git fetch origin <target-branch> git switch -c <topic-branch> origin/<target-branch> git push -u origin <topic-branch> gh pr create --base <target-branch> --head <topic-branch> \ gh pr view <pr-number> --json headRefOid,baseRefOid,mergeable,mergeStateStatus,url
What does the git-pr-workflows-git-workflow skill do?
Orchestrate review, tests, commits, branch pushes, and pull-request creation with parallel agents. Use when completed changes must move through validation into a PR or guarded merge.
How do I install it?
Run `npx skills add sickn33/agentic-awesome-skills --skill git-pr-workflows-git-workflow --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.