What problem does it solve? Deploying static frontends with serverless APIs to Azure involves juggling CLI configuration, local emulation, runtime settings, and CI/CD pipelines, and small mistakes like manually creating the wrong config file cause confusing failures. ## Core Features & Use Cases - SWA CLI Workflow Guidance: Covers the full swa init, swa start, swa login, and swa deploy lifecycle with correct flag usage and framework auto-detection. - Configuration Management: Distinguishes between swa-cli.config.json (generated by swa init) and staticwebapp.config.json (manually authored runtime config for routes, auth, and API runtime). - Azure Functions API Integration: Shows how to add a Node.js, .NET, or Python API backend and wire it into the local emulator and deployment. - GitHub Actions CI/CD: Provides a ready workflow for build, deploy, and PR preview environments using the Static Web Apps deploy action. - Use Case: You have a React app and want to ship it with a serverless API. The Skill walks you through swa init, local testing at localhost:4280, and production deployment with a deployment token. ## Quick Start Ask the agent to initialize and deploy your static frontend to Azure Static Web Apps using the SWA CLI, starting with swa init and ending with swa deploy to production.