What problem does it solve?
Running a ComfyUI build as a hosted, serverless endpoint involves cost traps and state complexity: deployments bill continuously while holding compute, new releases create duplicate billing deployments, and failed stops can silently keep charging. This Skill guides an AI agent through the comfy deploy command group so deployments are created, scaled, monitored, and torn down without surprise bills.
Core Features & Use Cases
- Deployment lifecycle management: Create or reconcile deployments with
up, submit API-format workflows with run, and pause or tear down compute with stop, start, scale, and delete.
- Cost and state awareness: Explains the five billing states (
queued, provisioning, starting, ready, unhealthy), the supersedes warning on duplicate deployments, and the --min standing charge so users consent before spending.
- Health and failure diagnosis: Reads
status, events, and logs to identify why a deployment failed, and maps deploy_* error codes (like deploy_job_submit_unknown or deploy_payment_required) to the correct recovery move.
- Use Case: A user has a green Comfy Build release and wants to serve it. The agent checks
comfy deploy refs compute for available GPU/region pairs, discloses the continuous billing model, runs comfy deploy up --watch, submits a workflow with comfy deploy run, and stops the deployment when finished.
Quick Start
Ask the agent to deploy the current Comfy Build release as a serverless endpoint and run your API-format workflow against it, then stop the deployment when done.