What problem does it solve? Writing EAS workflow YAML files for Expo CI/CD requires up-to-date knowledge of job types, triggers, runners, and expression syntax, and mistakes are only caught late without proper validation against the EAS schema and CLI. ## Core Features & Use Cases - Schema-Grounded Authoring: Fetches the live EAS workflow JSON schema and official syntax docs so generated workflows use current job types, triggers, and parameters. - CLI Validation: Validates each workflow file with eas-cli workflow:validate, which checks build profiles against eas.json and performs server-side checks. - Use Case: A developer wants a workflow that builds an iOS app on every pull request and submits it on merge. The skill fetches the schema, writes .eas/workflows/build.yml with correct triggers and job definitions, then validates it with the EAS CLI until it passes. ## Quick Start Use the eas-workflows skill to create an EAS workflow that builds my Expo app on every push to main and validate it.