What problem does it solve? Managing Make platform resources—apps, entities, relations, records, and code deployments—requires many CLI commands with specific flags, workflows, and safety checks. This Skill guides the AI to run makecli correctly: verifying login first, previewing schema changes with diff before apply, and deploying with proper commit and confirmation gates. ## Core Features & Use Cases - Declarative Schema Workflow: Write DSL YAML under apps/dsl/, preview changes with makecli diff, then apply with makecli apply for reproducible, safe schema management. - Code Deployment: Run makecli app deploy --wait to push committed HEAD and block until the build reaches a terminal state, with machine-readable exit codes (0 success, 2 failed, 124 timeout). - Resource & Data Operations: Create, list, update, and delete apps, entities, relations, and records, including CEL-filtered queries and server-side GROUP BY aggregation. - Use Case: Ask the assistant to create a new Make app, define its entities in DSL YAML, preview and apply the schema, then deploy to preview and report the live URL. ## Quick Start Ask the assistant to log in to Make, create an app called shop, apply the DSL schema under apps/dsl, and deploy it with makecli app deploy --wait.