Claude-skill-registry deployment-workflow
GitHub commits, Vercel deployments, PWA configuration, and rollback procedures.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/deployment-workflow" ~/.claude/skills/majiayu000-claude-skill-registry-deployment-workflow && rm -rf "$T"
manifest:
skills/data/deployment-workflow/SKILL.mdsource content
Deployment Workflow
Complete deployment workflow: GitHub → Vercel → Production.
When to Use
- Ready to deploy to production
- Creating releases
- PWA updates
- Deployment verification
Philosophy
ONE CODEBASE, ALL PLATFORMS
- Single Next.js app deployed to Vercel
- PWA on phones = the website
- Git push → Vercel auto-deploys → everyone auto-updates
Quick Deploy
npm run build && npm version patch && git push origin main
Pre-Deployment Checklist
-
passesnpm run build -
passesnpm run lint - Database migrations applied (
)supabase db push - Environment variables set in Vercel
- PWA icons exist (
)ls public/*.png
Version Bump
npm version patch # Bug fixes: 1.0.0 → 1.0.1 npm version minor # Features: 1.0.0 → 1.1.0 npm version major # Breaking: 1.0.0 → 2.0.0
Rollback Options
- Vercel Dashboard (30s): Deployments → Promote old version
- Git Revert (2min):
git revert HEAD && git push origin main - Hotfix (5min): Create hotfix branch, fix, merge, push
Branch Strategy
→ Production (empathyledger.com)main
→ Staging (preview URL)develop
→ Feature branches (preview URL)feature/*
Reference Files
| Topic | File |
|---|---|
| Full checklist | |
Related Skills
- Local developmentlocal-dev-server
- Database deploymentsupabase-deployment
- Pre-deploy cultural checkcultural-review