AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Github Pr

skill-mfmezger-ai-agent-dotfiles-github-pr · by mfmezger

Automates the end-to-end Git workflow: branch creation, staging, committing, pushing, and opening or updating a GitHub pull request. Use when a feature or fix is ready for review and requires a structured PR, or when branch changes may need to be pushed to an existing PR for follow-up review.

No reviews yet
0 installs
27 views
0.0% view→install

Install

$ agentstack add skill-mfmezger-ai-agent-dotfiles-github-pr

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-mfmezger-ai-agent-dotfiles-github-pr)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
1mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Github Pr? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

GitHub Workflow

This skill guides the process of moving local changes to a GitHub Pull Request.

Prerequisites

  • git must be installed and configured.
  • gh (GitHub CLI) must be installed and authenticated.

Commit Message Format

Use Conventional Commits with this required format: ():

  • type REQUIRED. Common values: feat, fix, docs, refactor, chore,

test, perf, ci, build, style.

  • scope REQUIRED. Short noun for the changed area (for example: config,

api, ui, docs).

  • summary REQUIRED. Imperative, /`.
  • Execute when a new branch is needed: git checkout -b
  1. Review & Stage Changes
  • Review changes with git status and git diff.
  • By default, stage only the files that belong to the current requested change.
  • If the user provided file paths/globs, stage only those files.
  • If there are ambiguous extra changed files, ask before staging/committing and leave them unstaged unless the user explicitly includes them.
  • Stage the intended files with git add ....
  • Optionally inspect recent subjects for local scope patterns:

git log -n 10 --pretty=format:%s.

  1. Commit
  • Propose a message in exact format:

(): .

  • Execute: git commit -m ""
  • If pre-commit hooks fail, diagnose and fix the issues before re-staging and re-committing.
  • Do not move on to PR actions until the commit succeeds.
  1. Push
  • Push the committed branch to the remote before any PR creation or review trigger.
  • If this is the first push for the branch, use: git push -u origin
  • If the upstream is already set, use: git push
  • Never post /gemini review before the push succeeds for the latest commit.
  1. Pull Request Handling
  • Only after a successful push, check whether a PR for the current branch already exists.
  • Use gh pr view --json url,number,headRefName to detect an existing PR for the checked-out branch.
  • If no PR exists:
  • Create the PR using gh pr create.
  • Provide a concise title (often the commit message) and a body summarizing the changes.
  • Execute: gh pr create --title "" --body ""
  • Share the generated PR URL with the user.
  • If a PR already exists:
  • Do not open a duplicate PR.
  • After the push succeeds, add a PR comment containing exactly /gemini review to trigger the code quality review.
  • Execute: gh pr comment --body "/gemini review"
  • Share the existing PR URL with the user and mention that the review trigger comment was added after pushing the new commit.

Common Failures

  • Pre-commit hooks: If hooks fail, fix the files and stage them again before committing.
  • Untracked files: Ensure new files are added.
  • Remote branch already exists: If the branch exists, ask the user if they want to overwrite or use a different name.

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.