What problem does it solve? Writing EAS workflow YAML files requires knowing the current schema, job types, triggers, and expression contexts, which change as Expo adds features. This Skill fetches the official schema and documentation so generated workflows are accurate and validates them against the live schema. ## Core Features & Use Cases - Workflow Generation: Create EAS workflow YAML files in .eas/workflows/ using up-to-date job types, triggers, and runner configurations fetched from the official JSON schema. - Schema Validation: Validate one or more workflow files against the live Expo schema using the bundled Node.js validator, with clear error messages showing allowed values. - Cached Documentation Access: Fetch the schema, syntax docs, and pre-packaged job docs with ETag-based caching to avoid repeated network requests. - Use Case: You want a CI/CD pipeline that builds your Expo app on every pull request and deploys on merge. Ask for the workflow, and the Skill generates a valid .eas/workflows/build.yml and verifies it against the official schema. ## Quick Start Ask the assistant to create an EAS workflow that builds your Expo app on every push to main and validate it against the official schema.