What problem does it solve? Driving Netlify hosting operations from an agent requires juggling the CLI, a 174-operation REST API, async deploy lifecycles, and strict token-handling rules — this Skill packages that entire workflow with validated scripts and a bundled OpenAPI spec so operations run headlessly without interactive logins. ## Core Features & Use Cases - CLI-first site and deploy management: Create sites, run draft or production deploys, and poll deploy status through the netlify CLI using four validated shell scripts. - Full REST long tail: Resolve any of the ~174 Netlify API operations from a bundled Swagger 2.0 spec via an endpoint index and a $ref-resolving Python helper, covering custom domains, DNS zones, and fine-grained reads. - Strict credential contract: Consumes a caller-injected token by variable name through NETLIFY_AUTH_TOKEN, never printing the value and never running netlify login. - Use Case: Ask the agent to deploy a ./dist build to production on a specific site; it creates or targets the site, runs the deploy, polls until state: ready, and returns the live URL. ## Quick Start Use netlify-ops to deploy the ./dist directory to my Netlify site in production and report the live URL once the deploy is ready.