One-command deployment for Claude Code. Ship to production without the DevOps headache.
curl -fsSL https://raw.githubusercontent.com/saadnvd1/cc-deploy/main/install.sh | bashOr manually copy skill/SKILL.md to ~/.claude/skills/deploy/SKILL.md.
This installs globally so /deploy works in any project.
In Claude Code, just run:
/deploy
That's it. Claude will:
- Detect your project type (Next.js, React, Python, etc.)
- Pick the right platform (Vercel or Railway)
- Handle auth if needed
- Deploy and give you the URL
| Project Type | Platform | Notes |
|---|---|---|
| Next.js | Vercel | Full support including API routes |
| React/Vue/Vite | Vercel | Static + serverless functions |
| Static HTML/CSS | Vercel | Fast CDN hosting |
| Python (Flask/FastAPI) | Railway | Auto-detects from requirements.txt |
| Node.js backend | Railway | Express, Fastify, etc. |
| Docker | Railway | Any containerized app |
The skill will install these if needed:
- Vercel CLI:
npm i -g vercel - Railway CLI:
npm i -g @railway/cli
Environment variables?
The skill detects .env files and reminds you to set them on the platform.
Custom domains? Deploy first, then add domains via the platform dashboard. Future versions may automate this.
Databases? Railway supports database addons. The skill will note if your project needs one.
Monorepos?
Run /deploy from the specific app directory you want to deploy.
Building with AI is easy. Deploying shouldn't be the hard part.
This skill bridges the gap between "it works on my machine" and "here's the live URL" for people who code with Claude.
MIT