Intelligent workflow orchestrator that commits, pushes, and creates/updates PRs automatically. Use when user wants to save their work or create a PR.
From aai-corenpx claudepluginhub the-answerai/alphaagent-team --plugin aai-coreThis skill uses the workspace's default tool permissions.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Provides process, architecture, review, hiring, and testing guidelines for engineering teams relying on AI code generation.
Handles the complete git workflow: commit → push → create/update PR.
git branch --show-current
Check for changes:
git status
If changes exist:
git add .)feat(scope): description - new featurefix(scope): description - bug fixchore(scope): description - maintenancedocs(scope): description - documentationrefactor(scope): description - code restructuretest(scope): description - testsRun pre-commit checks:
# 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)
Check if PR exists:
gh pr list --head $(git branch --show-current)
If no PR exists: Launch git-pr-manager agent to create PR
If PR exists: Report that PR was updated with new commits
Report:
/push # Commit all changes with auto-generated message
/push "add auth feature" # Commit with specific message