Our review
Automatically commits and pushes all local changes to GitHub to trigger a Vercel deployment.
Strengths
- Automates the commit and push workflow
- Generates clear and concise commit messages
- Ensures safe git operations (no force push)
- Respects pre-commit hooks
Limitations
- Only works with GitHub and Vercel as the deployment target
- Does not allow granular control over which files to commit (prefers specific adds)
- Requires a clean working tree for successful push
Use this skill when you've made changes and want to quickly deploy them to production via Vercel without manual git steps.
Do not use it if you need to review or cherry-pick changes before committing, or if you require a more complex deployment pipeline.
Security analysis
SafeThe skill only uses safe git operations (status, diff, add, commit, push, log) and a fixed eval command to set up the Homebrew shell environment. No destructive actions, data exfiltration, or arbitrary code execution are possible. The allowed tools are explicitly restricted to these commands.
No concerns found
Examples
/uploadCommit all my changes and push them to deploy the site on Vercel.Push the latest changes to GitHub to trigger a Vercel deployment.name: upload description: Commit and push all changes to GitHub to trigger a Vercel deployment. allowed-tools: Bash(git status, git add, git diff, git commit, git push, git log, eval)
Upload to Vercel
When the user invokes /upload, commit and push all changes to deploy the site via Vercel.
Steps
- Run
git statusandgit diffto review all changes - Stage the changed files with
git add(prefer adding specific files overgit add .) - Write a clear, concise commit message summarizing the changes
- Commit with the message
- Push to the remote (
origin main) - Confirm to the user that the changes have been pushed and Vercel will deploy shortly
Rules
- Always use
eval "$(/opt/homebrew/bin/brew shellenv zsh)"before git commands if needed - Never force push
- Never skip pre-commit hooks
- If there are no changes to commit, let the user know
Next.js App Router Expert
Development
A skill that turns Claude into a Next.js App Router expert.
README Generator
Development
Creates professional and comprehensive README.md files for your projects.
API Documentation Writer
Development
Generates comprehensive API documentation in OpenAPI/Swagger format.