What problem does it solve? Deploying multiple projects across different platforms (Cloudflare Workers, Cloudflare Pages, Vercel) requires remembering which command and platform each project uses, and skipping build or safety checks can push broken code to production. ## Core Features & Use Cases - Automatic project detection: Infers the deployment target from the argument or current working directory and selects the correct command. - Platform routing: Uses npx wrangler deploy for rsun-worker, npx wrangler pages deploy for TRACKER on Cloudflare Pages, and git push origin main for Vercel-hosted Next.js projects. - Pre-flight checks: Verifies git status, recent commits, and a passing npm run build for Next.js projects, and confirms the parsePrefix function exists before deploying rsun-worker. - Use Case: You finish a feature in the ceyan-web repo and say "deploy" — the skill runs the build check, pushes to main, and lets Vercel handle the release. ## Quick Start Ask the assistant to deploy the current project, for example by saying "deploy the dashboard" or just "deploy" from within a project directory.