railway-domain

Featured

Add, view, or remove domains for Railway services. Use when user wants to add a domain, generate a railway domain, check current domains, get the URL for a service, or remove a domain.

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 Domain Management Add, view, or remove domains for Railway services. ## When to Use - User asks to "add a domain", "generate a domain", "get a URL" - User wants to add a custom domain - User asks "what's the URL for my service" - User wants to remove a domain ## Add Railway Domain Generate a railway-provided domain (max 1 per service): ```bash railway domain --json ``` For a specific service: ```bash railway domain --json --service backend ``` ### Response Returns the generated domain URL. Service must have a deployment. ## Add Custom Domain ```bash railway domain example.com --json ``` ### Response Returns required DNS records: ```json { "domain": "example.com", "dnsRecords": [ { "type": "CNAME", "host": "@", "value": "..." } ] } ``` Tell user to add these records to their DNS provider. ## Read Current Domains Use railway-environment skill to see configured domains, or query directly: ```graphql query domains($envId: String!) { environment(id: $envId) { config(decryptVariables: false) } } ``` Domains are in `config.services.<serviceId>.networking`: - `serviceDomains` - Railway-provided domains - `customDomains` - User-provided domains ## Remove Domain Use railway-environment skill to remove domains: ### Remove custom domain ```json { "services": { "<serviceId>": { "networking": { "customDomains": { "<domainId>": null } } } } } ``` ### Remove railway domain ```json { "services": { "<serviceI...

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-service

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.

27,705 Updated today
davila7
API & Backend Featured

railway-database

Add official Railway database services (Postgres, Redis, MySQL, MongoDB). Use when user wants to add a database, says "add postgres", "add redis", "add database", "connect to database", or "wire up the database". For other templates (Ghost, Strapi, n8n), use the railway-templates skill.

27,705 Updated today
davila7
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-deployment

Manage Railway deployments - view logs, redeploy, restart, or remove deployments. Use for deployment lifecycle (remove, stop, redeploy, restart), deployment visibility (list, status, history), and troubleshooting (logs, errors, failures, crashes). NOT for deleting services - use railway-environment skill with isDeleted for that.

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