railway-service

Featured

Check service status, rename services, change service icons, link services, or create services with Docker images. For creating services with local code, prefer railway-new skill. For GitHub repo sources, use railway-new skill to create empty service then railway-environment skill to configure source.

AI & Automation 27,705 stars 2858 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# Railway Service Management Check status, update properties, and advanced service creation. ## When to Use - User asks about service status, health, or deployments - User asks "is my service deployed?" - User wants to rename a service or change service icon - User wants to link a different service - User wants to deploy a Docker image as a new service (advanced) **Note:** For creating services with local code (the common case), prefer the railway-new skill which handles project setup, scaffolding, and service creation together. **For GitHub repo sources:** Use railway-new skill to create empty service, then railway-environment skill to configure source.repo via staged changes API. ## Create Service Create a new service via GraphQL API. There is no CLI command for this. ### Get Context ```bash railway status --json ``` Extract: - `project.id` - for creating the service - `environment.id` - for staging the instance config ### Create Service Mutation ```graphql mutation serviceCreate($input: ServiceCreateInput!) { serviceCreate(input: $input) { id name } } ``` ### ServiceCreateInput Fields | Field | Type | Description | |-------|------|-------------| | `projectId` | String! | Project ID (required) | | `name` | String | Service name (auto-generated if omitted) | | `source.image` | String | Docker image (e.g., `nginx:latest`) | | `source.repo` | String | GitHub repo (e.g., `user/repo`) | | `branch` | String | Git branch for repo source | | `environmentId...

Details

Author
davila7
Repository
davila7/claude-code-templates
Created
11 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

railway-new

Create Railway projects, services, and databases with proper configuration. Use when user says "setup", "deploy to railway", "initialize", "create project", "create service", or wants to deploy from GitHub. Handles initial setup AND adding services to existing projects. For databases, use railway-railway-database skill instead.

27,705 Updated today
davila7
AI & Automation Featured

railway-environment

Query, stage, and apply configuration changes for Railway environments. Use for ANY variable or env var operations, service configuration (source, build settings, deploy settings), lifecycle (delete service), and applying changes. Prefer over railway-status skill for any configuration or variable queries.

27,705 Updated today
davila7
AI & Automation Featured

railway-projects

List, switch, and configure Railway projects. Use when user wants to list all projects, switch projects, rename a project, enable/disable PR deploys, make a project public/private, or modify project settings.

27,705 Updated today
davila7
AI & Automation Featured

railway-status

Check current Railway project status for this directory. Use when user asks "railway status", "is it running", "what's deployed", "deployment status", or about uptime. NOT for variables or configuration queries - use railway-environment skill for those.

27,705 Updated today
davila7
AI & Automation Featured

railway-deploy

Deploy code to Railway using "railway up". Use when user wants to push code, says "railway up", "deploy", "ship", or "push". For initial setup or creating services, use railway-new skill. For Docker images, use railway-environment skill.

27,705 Updated today
davila7