Agent skill · Code Review & Quality

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.

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
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.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/git-pr-workflows-git-workflow/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. When to Use
  2. Policy Gate
  3. Inputs
  4. Workflow
  5. 1. Capture the exact change
  6. 2. Review in parallel
  7. 3. Validate and repair
  8. 4. Prepare the branch and commit
  9. 5. Push and create the pull request
  10. 6. Verify the remote result
  11. Stop Condition
  12. Limitations
Commands it runs
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
More from agentic-awesome-skills
All skills →
About this skill
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.

Keep going