railway-cli
Railway CLI operations for authentication, context management, deployment, monitoring, and troubleshooting. Use when working with Railway infrastructure, deploying services, or managing environments.
Install
mkdir -p .claude/skills/railway-cli && curl -L -o skill.zip "https://mcp.directory/api/skills/download/3177" && unzip -o skill.zip -d .claude/skills/railway-cli && rm skill.zipInstalls to .claude/skills/railway-cli
About this skill
Railway CLI for IOTA SDK
Check Authentication
railway whoami
Context Management
Check current context:
railway status
List all projects with IDs:
railway list --json | jq '.'
Link project manually (create .railway/config.json):
mkdir -p .railway
cat > .railway/config.json << 'EOF'
{
"projectId": "<your-project-id>"
}
EOF
Switch environment:
railway environment <environment>
Deployment
Deploy to specific environment and service:
railway up -s <service> -e <environment> --detach
Redeploy latest deployment:
railway redeploy -s <service> -e <environment> -y
Check deployment status:
railway status -s <service> -e <environment>
Monitoring
View deployment logs (real-time stream):
railway logs -s <service> -e <environment> --deployment
View build logs:
railway logs -s <service> -e <environment> --build
Get logs in JSON format (for parsing):
railway logs -s <service> -e <environment> --deployment --json
Filter logs for errors/panics:
# Text output with grep
railway logs -s iota-sdk -e staging --deployment 2>&1 | grep -i -E "(panic|error|fatal)"
# JSON output with jq (more reliable)
railway logs -s iota-sdk -e staging --deployment --json 2>&1 | \
jq -r 'select(.message | test("panic|error|fatal"; "i")) | "\(.timestamp) \(.message)"'
Get context around errors:
# Get 30 lines after each match
railway logs -s iota-sdk -e staging --deployment 2>&1 | grep -A 30 "panic"
# Limit total output
railway logs -s iota-sdk -e staging --deployment 2>&1 | tail -100
Note: Railway enforces a rate limit of 500 logs/sec per replica. High-volume logging may result in dropped messages.
Variables
Get all variables for a service:
railway variables -s <service> -e <environment> --kv
Set a variable:
railway variables -s <service> -e <environment> --set "KEY=value"
Running Commands
Execute local command with remote environment variables:
railway run -s <service> -e <environment> -- <command>
Note: railway run executes locally, not on the remote service. Use for running local commands with staging/production environment variables.
Database Access
Connect to database shell:
railway connect db -e <environment>
Get database connection URL:
railway variables -s db -e <environment> --kv | grep DATABASE_PUBLIC_URL
SSH into service (requires active deployment):
railway ssh -s <service> -e <environment>
Common Operations for IOTA SDK
Analyzing Panics and Errors
Find recent panics with stack traces:
# Get panic with 30 lines of context (includes stack trace)
railway logs -s iota-sdk -e staging --deployment 2>&1 | grep -A 30 "panic"
# Find specific error patterns
railway logs -s iota-sdk -e staging --deployment --json 2>&1 | \
jq -r 'select(.message | test("your-pattern"; "i")) | .message' | tail -50
Common error patterns for IOTA SDK:
- Translation errors:
"message .* not found in language" - Database errors:
"pq:|postgres:|connection|timeout" - HTTP panics:
"http: panic serving" - Multi-tenant errors:
"tenant_id|organization_id|forbidden" - Permission errors:
"permission denied|insufficient permissions"
Running Migrations on Staging
Get database credentials and run migrations locally:
# Get the public database URL
railway variables -s db -e staging --kv | grep DATABASE_PUBLIC_URL
# Example output: DATABASE_PUBLIC_URL=postgresql://postgres:PASSWORD@HOST:PORT/railway
# Extract connection details from the URL and export
export DB_HOST=<host-from-url> # Example: shuttle.proxy.rlwy.net
export DB_PORT=<port-from-url> # Example: 31150
export DB_NAME=<database-from-url> # Example: railway
export DB_USER=<user-from-url> # Example: postgres
export DB_PASSWORD=<password-from-url>
# Check migration status
make db migrate status
# Run pending migrations
make db migrate up
# Rollback if needed
make db migrate down
Deploying New Version
# 1. Verify current status
railway status -s iota-sdk -e staging
# 2. Deploy new version
railway up -s iota-sdk -e staging --detach
# 3. Monitor deployment logs
railway logs -s iota-sdk -e staging --deployment
# 4. Verify deployment success
railway status -s iota-sdk -e staging
# 5. Check for errors
railway logs -s iota-sdk -e staging --deployment 2>&1 | grep -i error | tail -20
Environment Variable Management
# List all environment variables
railway variables -s iota-sdk -e staging --kv
# Update application config
railway variables -s iota-sdk -e staging --set "LOG_LEVEL=debug"
# Update database connection (example)
railway variables -s iota-sdk -e staging --set "DB_HOST=new-host"
# Trigger restart after variable changes
railway redeploy -s iota-sdk -e staging -y
Database Backup
# Get database URL
DB_URL=$(railway variables -s db -e staging --kv | grep DATABASE_PUBLIC_URL | cut -d'=' -f2)
# Create backup
pg_dump "$DB_URL" > backup_$(date +%Y%m%d_%H%M%S).sql
# Or with compression
pg_dump "$DB_URL" | gzip > backup_$(date +%Y%m%d_%H%M%S).sql.gz
IOTA SDK Project Structure
Environment Names:
staging- Staging environmentproduction- Production environment
Service Names (adjust based on actual setup):
iota-sdk- Main Go applicationdb- PostgreSQL database
Example with actual service names:
# Deploy to staging
railway up -s iota-sdk -e staging --detach
# View logs
railway logs -s iota-sdk -e staging --deployment
# Check database
railway connect db -e staging
Troubleshooting
"Project not found": Create .railway/config.json with projectId
"No deployment found": Service has no active deployment in that environment
SSH connection fails: Ensure deployment is running, use railway logs to check status
Logs not showing: Check service name and environment are correct
Variable not updating: Redeploy service after setting variables
Production Safety
Always specify -e staging explicitly when working with staging to avoid accidentally affecting production.
Before Running Production Operations
- Double-check the environment flag (
-e production) - Verify current context with
railway status - Test on staging first
- Have a rollback plan ready
- Announce deployment to team
- Monitor logs during deployment
Production Deployment Checklist
- Code changes reviewed and approved
- Tests passing in CI/CD
- Staging deployment successful
- Database migrations tested on staging
- Rollback plan prepared
- Team notified of deployment
- Monitoring dashboard ready
- Environment flag verified (
-e production)
Emergency Rollback
# 1. Check recent deployments
railway status -s iota-sdk -e production
# 2. Redeploy previous version (if using git tags/branches)
git checkout <previous-version>
railway up -s iota-sdk -e production --detach
# 3. Or use Railway dashboard to rollback
# Visit Railway dashboard → Service → Deployments → Rollback
Quick Reference
# Authentication
railway whoami
railway status
# Deployment
railway up -s iota-sdk -e staging --detach
railway redeploy -s iota-sdk -e staging -y
# Logs
railway logs -s iota-sdk -e staging --deployment
railway logs -s iota-sdk -e staging --deployment | grep -i error
# Variables
railway variables -s iota-sdk -e staging --kv
railway variables -s iota-sdk -e staging --set "KEY=value"
# Database
railway connect db -e staging
railway variables -s db -e staging --kv | grep DATABASE_PUBLIC_URL
# SSH
railway ssh -s iota-sdk -e staging
Common Workflows
Debug Production Issue
# 1. View recent logs
railway logs -s iota-sdk -e production --deployment | tail -100
# 2. Search for errors
railway logs -s iota-sdk -e production --deployment | grep -i error -A 10
# 3. Check database connection
railway variables -s iota-sdk -e production --kv | grep DB_
# 4. SSH into service if needed
railway ssh -s iota-sdk -e production
Update Environment Configuration
# 1. Get current variables
railway variables -s iota-sdk -e staging --kv > current_vars.txt
# 2. Update variables
railway variables -s iota-sdk -e staging --set "NEW_FEATURE_FLAG=true"
railway variables -s iota-sdk -e staging --set "LOG_LEVEL=info"
# 3. Redeploy to apply changes
railway redeploy -s iota-sdk -e staging -y
# 4. Verify changes
railway logs -s iota-sdk -e staging --deployment | head -50
Monitor Deployment
# Terminal 1: Watch deployment status
watch -n 5 'railway status -s iota-sdk -e staging'
# Terminal 2: Stream logs
railway logs -s iota-sdk -e staging --deployment
# Terminal 3: Check for errors
watch -n 10 'railway logs -s iota-sdk -e staging --deployment | grep -i error | tail -20'
More by iota-uz
View all skills by iota-uz →You might also like
flutter-development
aj-geddes
Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.
drawio-diagrams-enhanced
jgtolentino
Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.
ui-ux-pro-max
nextlevelbuilder
"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."
godot
bfollington
This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.
nano-banana-pro
garg-aayush
Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.
fastapi-templates
wshobson
Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.
Related MCP Servers
Browse all serversConnect Supabase projects to AI with Supabase MCP Server. Standardize LLM communication for secure, efficient developmen
Connect MongoDB databases to chat interfaces. Manage AWS with MongoDB, explore Atlas cost, and inspect collections secur
Integrate your Slack app to manage channels, messages, status on Slack, reactions, and user profiles securely via OAuth.
Easily find the Kroger closest to you, browse products with prices, and manage your cart and orders using secure OAuth2
Integrate Yandex Tracker with project management software for advanced issue tracking, project plan templates, Gantt cha
Agent Knowledge MCP: Model Context Protocol server combining an Elasticsearch knowledge base with file ops, document val
Stay ahead of the MCP ecosystem
Get weekly updates on new skills and servers.