railway-deployment
SkillWeb & browsingDeep knowledge about deploying applications to Railway (PaaS, Docker, Nixpacks).
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the railway-deployment skill
What this skill tells your AI
The instructions your AI receives, as published by porcupine-md/anoa-browser in .claude/skills/library/deploy/railway/SKILL.md and read by ahel’s review.
Context
Deploying {{project_name}} ({{project_type}}) to Railway. You will follow a strict 6-phase Deployment Lifecycle Contract.
Instructions
Execute the following phases in order:
Phase 1: Authentication
- Ensure the
RAILWAY_TOKENenvironment variable is set to a valid project token. - If running locally, authenticate interactively with
railway login. For automated agents, ensure the token is provided. - Validate by running
railway statusto confirm the active project and environment.
Phase 2: Build
- Railway typically handles the build process remotely using Nixpacks or a Dockerfile.
- Ensure your
railway.tomlorDockerfileis correctly configured in the project root. - Local building is not usually required for a standard Railway deploy, but you may run local build scripts (e.g.,
npm run build) if generating static assets before pushing.
Phase 3: Install / Provisioning
- Ensure the target Railway project and service exist.
- If the project isn't linked, run
railway link(requires interactive selection or specific project ID flags). - If necessary, provision databases or other services via the Railway dashboard or CLI (e.g.,
railway runfor migrations).
Phase 4: Deploy
- Ship the artifact to Railway.
- Run
railway up --detachto deploy the current directory to the linked project and service. The--detachflag prevents the CLI from tailing logs indefinitely.
Phase 5: Checking
- Verify the deployment was successful.
- Run
railway statusto check if the service is deployed and running. - Retrieve the public URL (often via the dashboard or
railway domain) and usecurl -sSf <URL>to ensure the application returns a 200 OK status code. - If it fails, inspect logs using
railway logs.
Phase 6: Update / Rollback
- If Phase 5 fails, immediately initiate a rollback.
- Railway supports reverting to previous deployments via the dashboard or by triggering a redeploy of an older Git commit if connected to GitHub.
- Note the failure in the progress log.
Validation
- Railway authentication (
railway status) succeeds. - Remote build succeeds (indicated by a successful deploy).
- Service is up and running.
- Health check (curl) returns 200 OK.
Signals
- GitHub stars
- 23
- Forks
- 2
- Last commit
- Sep 2026
Others that do the same job
Advanced
- Catalog kind
- skill
- Gateway key
railway-deployment- Source
- github.com/porcupine-md/anoa-browser