deployment

Manage Railway deployment lifecycle tasks and inspect logs via CLI.

Updated Dec 2, 2025
One-click install
npx skills add https://github.com/matixlol/monitoreo-panama --skill deployment-matixlol
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: deployment
Source: https://github.com/matixlol/monitoreo-panama/tree/main/.agents/skills/deployment
Command: npx skills add https://github.com/matixlol/monitoreo-panama --skill deployment-matixlol

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

Manage Railway deployments, view logs, and debug issues for existing services.

Core Features & Use Cases

  • Deployment lifecycle: remove, stop, redeploy, restart
  • Deployment visibility: list, status, history
  • Troubleshooting: logs, errors, failures, crashes, why deploy failed
  • NOT for deleting services - use environment skill with isDeleted for that

Quick Start

Use the Railway CLI to list deployments, view logs, redeploy, restart, and remove deployments as needed. Example commands: railway deployment list --service <name> --limit 10 --json railway logs --lines 100 --json railway redeploy --service <name> -y railway down --service <name> -y

Frequently Asked Questions about deployment

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I check Railway deployment status and history for my services?

Check Railway deployment status and history by listing deployments for your services using the Railway CLI, which provides visibility into current and past deployment lifecycle events and outputs.

Can I redeploy or restart an existing Railway service without deleting it?

You can redeploy or restart existing Railway services directly using the Railway CLI without deleting the service, triggering a fresh deployment lifecycle while preserving the service configuration.

What is the correct way to remove a Railway deployment without deleting the service?

Removing a Railway deployment stops or tears down that specific deployment without deleting the underlying service. To fully delete a service, you must use the environment skill with the isDeleted flag.

Why did my Railway deployment fail and how do I debug the crash?

Debug Railway deployment failures by inspecting build and deploy logs using the Railway CLI. Reviewing the log output helps identify errors, crashes, or build failures that caused the deployment to fail.