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

Push

skill-bradtaylorsf-alphaagent-team-push · by bradtaylorsf

Intelligent workflow orchestrator that commits, pushes, and creates/updates PRs automatically. Use when user wants to save their work or create a PR.

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

Install

$ agentstack add skill-bradtaylorsf-alphaagent-team-push

✓ 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 Used
  • 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-bradtaylorsf-alphaagent-team-push)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
7mo 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 Push? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

/push - Git Workflow Orchestrator

Handles the complete git workflow: commit → push → create/update PR.

Workflow

1. Validate Current Branch (CRITICAL - do first)

git branch --show-current
  • If on staging/main/production/master: STOP and error - cannot commit to protected branches
  • If on feature branch: Continue

2. Handle Uncommitted Changes

Check for changes:

git status

If changes exist:

  1. Review what files changed
  2. Stage appropriate files (prefer specific files over git add .)
  3. Create commit with conventional format:
  • feat(scope): description - new feature
  • fix(scope): description - bug fix
  • chore(scope): description - maintenance
  • docs(scope): description - documentation
  • refactor(scope): description - code restructure
  • test(scope): description - tests

Run pre-commit checks:

  • No secrets/API keys in code
  • No debug console.log statements
  • No commented-out code blocks

3. Push to Remote

# Check for unpushed commits
git log origin/$(git branch --show-current)..HEAD

# Push (set upstream if new branch)
git push origin $(git branch --show-current)
# or for new branches:
git push -u origin $(git branch --show-current)

4. Handle Pull Request

Check if PR exists:

gh pr list --head $(git branch --show-current)

If no PR exists: Launch git-pr-manager agent to create PR

  • Target staging/develop (not main/master)
  • Generate description from commits
  • Include summary and test instructions

If PR exists: Report that PR was updated with new commits

5. Provide Summary

Report:

  • What was committed
  • What was pushed
  • PR status (created/updated)
  • PR URL
  • Next steps

Usage

/push                    # Commit all changes with auto-generated message
/push "add auth feature" # Commit with specific message

Important Rules

  • NEVER commit to protected branches (staging, main, production, master)
  • Always validate branch first
  • Use conventional commit format
  • Target staging/develop for PRs (not main)
  • Don't stage sensitive files (.env, credentials)

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.