dstack
This interfaces with dstack CLI and YAML configurations to manage GPU clusters, development environments, and task execution across infrastructure.
Install
mkdir -p .claude/skills/dstack && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/3031" && unzip -o skill.zip -d .claude/skills/dstack && rm skill.zipInstalls to .claude/skills/dstack
Activation
This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.
dstack is an open-source control plane for GPU provisioning and orchestration across GPU clouds, Kubernetes, and on-prem clusters.Key capabilities
- →Orchestrates GPU clusters across clouds
- →Manages.dstack.yml configuration lifecycle
- →Provisions dev environments and services
- →Handles SSH access and port forwarding
- →Streams logs from distributed runs
How it works
It functions as a control plane by interpreting YAML definitions to trigger infrastructure orchestration via an API.
Inputs & outputs
When to use dstack
- →Provision GPU resources for training
- →Manage dstack configuration files
- →Monitor run status and log output
About this skill
dstack
Overview
dstack provisions and orchestrates workloads across GPU clouds, Kubernetes, and on-prem via fleets.
When to use this skill:
- Running or managing dev environments, tasks, or services on dstack
- Creating, editing, or applying
*.dstack.ymlconfigurations - Managing fleets, volumes, gateways, and checking available offers
How it works
dstack operates through three core components:
dstackserver - Can run locally, remotely, or via dstack Sky (managed)dstackCLI - Applies configurations and manages or inspects fleets, runs, logs, events, volumes, gateways, and offers; it uses project configurations stored in~/.dstack/config.yml, which can be managed withdstack projectdstackconfiguration files - YAML files ending with.dstack.yml
dstack apply shows a plan and submits configuration changes. For run
configurations, it attaches when the run reaches running by default: it
configures SSH access, forwards declared ports, and streams logs. With -d, it
submits and exits.
Quick agent flow (detached runs)
- Show plan:
echo "n" | dstack apply -f <config> - If plan is OK and user confirms, apply detached:
dstack apply -f <config> -y -d - Check the run:
dstack run get <run-name> --json - If dev-environment or task with ports and running: attach to surface IDE link/ports/SSH alias (agent runs attach in background); ask to open link
- If attach fails in sandbox: request escalation; if not approved, ask the user to run
dstack attachlocally and share the output
CRITICAL: Never propose dstack CLI commands or YAML syntaxes that don't exist.
- Only use CLI commands and YAML syntax documented here or verified via
--help - If uncertain about a command or its syntax, check the links or use
--help
NEVER do the following:
- Invent CLI flags not documented here or shown in
--help - Guess YAML property names - verify in configuration reference links
- Run
dstack applyfor runs without-din automated contexts (blocks indefinitely) - Retry failed commands without addressing the underlying error
- Summarize or reformat tabular CLI output - show it as-is
- Use
echo "y" |when-yflag is available - Assume a command succeeded without checking output for errors
Agent execution guidelines
Output accuracy
- NEVER reformat, summarize, or paraphrase CLI output. Display tables, status output, and error messages exactly as returned.
- When showing command results, use code blocks to preserve formatting.
- If output is truncated due to length, indicate this clearly (e.g., "Output truncated. Full output shows X entries.").
Verification before execution
- When uncertain about any CLI flag or YAML property, run
dstack <command> --helpfirst. - Never guess or invent flags. Example verification commands:
dstack --help # List all commands dstack apply -h <configuration type> # Flags for apply per configuration type (dev-environment, task, service, fleet, etc) dstack fleet --help # Fleet subcommands dstack ps --help # Flags for ps - If a command or flag isn't documented, it doesn't exist.
Command timing and confirmation handling
Commands that stream indefinitely in the foreground:
dstack attachdstack applywithout-dfor runsdstack ps -w
Agents should avoid blocking: use -d, timeouts, or background attach. When attach is needed, run it in the background by default (nohup ...), but describe it to the user simply as "attach" unless they ask for a live foreground session.
When waiting programmatically for a specific run, use
dstack run get <run-name> --json and read its top-level status. Run statuses
are pending, submitted, provisioning, running, terminating,
terminated, failed, and done; the last three are terminal. Stop waiting
when the run reaches the state needed for the next action or a terminal status.
Never parse or grep human-readable dstack ps output; its status column may
display a job message such as no offers.
All other commands: Use 10-60s timeout. Most complete within this range. While waiting, monitor the output - it may contain errors, warnings, or prompts requiring attention.
Confirmation handling:
dstack apply,dstack stop,dstack fleet deleterequire confirmation- Use
-yflag to auto-confirm when user has already approved - For
dstack stop, always use-yafter the user confirms to avoid interactive prompts - Use
echo "n" |to previewdstack applyplan without executing (avoidecho "y" |, prefer-y)
Best practices:
- Prefer modifying configuration files over passing parameters to
dstack apply(unless it's an exception) - When user confirms deletion/stop operations, use
-yflag to skip confirmation prompts
Detached run follow-up (after -d)
After submitting a run with -d (dev-environment, task, service), first determine whether submission failed. If the apply output shows errors (validation, no offers, etc.), stop and surface the error.
If the run was submitted, check it with dstack run get <run-name> --json, then guide the user through relevant next steps:
If you need to prompt for next actions, be explicit about the dstack step and command (avoid vague questions). When speaking to the user, refer to the action as "attach" (not "background attach").
- Monitor status: Report the current status and offer to keep watching. If watching, poll
dstack run get <run-name> --jsonevery 10-20 seconds until it reaches the state needed for the next action or a terminal status. - Attach when running: For agents, run attach in the background by default so the session does not block. Use it to capture IDE links/SSH alias or enable port forwarding; when describing the action to the user, just say "attach".
- Dev environments or tasks with ports: Once
running, attach to surface the IDE link/port forwarding/SSH alias, then ask whether to open the IDE link. Never open links without explicit approval. - Services: Prefer using service endpoints. Attach only if the user explicitly needs port forwarding or full log replay.
- Tasks without ports: Default to
dstack logsfor progress; attach only if full log replay is required.
Attaching behavior (blocking vs non-blocking)
dstack attach runs until interrupted and blocks the terminal. Agents must avoid indefinite blocking. If a brief attach is needed, use a timeout to capture initial output (IDE link, SSH alias) and then detach.
Note: dstack attach writes SSH alias info under ~/.dstack/ssh/config (and may update ~/.ssh/config) to enable ssh <run name>, IDE connections, port forwarding, and real-time logs (dstack attach --logs). If the sandbox cannot write there, the alias will not be created.
Permissions guardrail: If dstack attach fails due to sandbox permissions, request permission escalation to run it outside the sandbox. If escalation isn’t approved or attach still fails, ask the user to run dstack attach locally and share the IDE link/SSH alias output.
Background attach (non-blocking default for agents):
nohup dstack attach <run name> --logs > /tmp/<run name>.attach.log 2>&1 & echo $! > /tmp/<run name>.attach.pid
Then read the output:
tail -n 50 /tmp/<run name>.attach.log
Offer live follow only if asked:
tail -f /tmp/<run name>.attach.log
Stop the background attach (preferred):
kill "$(cat /tmp/<run name>.attach.pid)"
If the PID file is missing, fall back to a specific match (avoid killing all attaches):
pkill -f "dstack attach <run name>"
Why this helps: it keeps the attach session alive (including port forwarding) while the agent remains usable. IDE links and SSH instructions appear in the log file -- surface them and ask whether to open the link (open "<link>" on macOS, xdg-open "<link>" on Linux) only after explicit approval.
If background attach fails in the sandbox (permissions writing ~/.dstack or ~/.ssh, timeouts), request escalation to run attach outside the sandbox. If not approved, ask the user to run attach locally and share the IDE link/SSH alias.
Interpreting user requests
"Run something": When the user asks to run a workload (dev environment, task, service), use dstack apply with the appropriate configuration. Note: dstack run only supports dstack run get --json for retrieving run details -- it cannot start workloads.
"Connect to" or "open" a dev environment: If a dev environment is already running, use dstack attach <run name> --logs (agent runs it in the background by default) to surface the IDE URL (cursor://, vscode://, etc.) and SSH alias. If sandboxed attach fails, request escalation or ask the user to run attach locally and share the link.
Configuration types
dstack supports run configurations (dev environments, tasks, and services) and infrastructure configurations (fleets, volumes, and gateways). Configuration files can be named <name>.dstack.yml or simply .dstack.yml.
Common parameters: All run configurations (dev environments, tasks, services) support many parameters including:
- Git integration: Clone repos automatically (
repo) or mount existing repos (repos) - File upload: Upload local files (
files; see concept docs for examples) - Docker support: Use custom Docker images (
image); usedocker: trueif you want to use Docker from inside the container (VM-based backends only) - Environment: Set environment variables (
env), often via.envrc. Secrets are supported but less common. - Storage: Persistent network volumes (
volumes), specify disk size - Resources: Define GPU, CPU, memory, and disk requirements
Best practices:
- Prefer giving configurations a
nameproperty for easier management - When configurat
Content truncated.
When not to use it
- →General web hosting or non-GPU workloads
- →Running locally without cloud integration
Prerequisites
Limitations
- →Depends on external cloud provider availability
- →Requires precise adherence to YAML syntax and CLI flags
How it compares
It provides a unified abstraction for heterogeneous cloud GPU clusters rather than manual provider setup.
Compared to similar skills
dstack side by side with the closest alternatives in the catalog.
| Skill | Installs | Updated | Safety | Difficulty |
|---|---|---|---|---|
| dstack (this skill) | 1 | 3mo | Caution | Intermediate |
| kubernetes-architect | 6 | 4mo | No flags | Advanced |
| eks | 1 | 7mo | Review | Advanced |
| backstage-deployment | 0 | 1mo | Review | Advanced |
Try saying
Example prompts that trigger this skill in your AI assistant.
You might also like
kubernetes-architect
sickn33
Expert Kubernetes architect specializing in cloud-native infrastructure, advanced GitOps workflows (ArgoCD/Flux), and enterprise container orchestration. Masters EKS/AKS/GKE, service mesh (Istio/Linkerd), progressive delivery, multi-tenancy, and platform engineering. Handles security, observability, cost optimization, and developer experience. Use PROACTIVELY for K8s architecture, GitOps implementation, or cloud-native platform design.
eks
itsmostafa
AWS EKS Kubernetes management for clusters, node groups, and workloads. Use when creating clusters, configuring IRSA, managing node groups, deploying applications, or integrating with AWS services.
backstage-deployment
Ohorizons
Deploys the upstream open-source Backstage developer portal on Azure AKS or locally via Docker Desktop. USE FOR: deploy Backstage, Backstage on AKS, Backstage local Docker, Backstage Helm chart, Backstage PostgreSQL, Backstage ACR image, Backstage GitHub OAuth, Microsoft Entra ID auth, GitHub Enterp
storage-networking
pluginagentmarketplace
Master Kubernetes storage management and networking architecture. Learn persistent storage, network policies, service discovery, and ingress routing.
gitops-workflow
sickn33
Implement GitOps workflows with ArgoCD and Flux for automated, declarative Kubernetes deployments with continuous reconciliation. Use when implementing GitOps practices, automating Kubernetes deployments, or setting up declarative infrastructure management.
devops-iac-engineer
davila7
Implements infrastructure as code using Terraform, Kubernetes, and cloud platforms. Designs scalable architectures, CI/CD pipelines, and observability solutions. Provides security-first DevOps practices and site reliability engineering guidance.