migrate-googleai
Installation
SKILL.md
Rule: Migrate Google AI Studio prototype to Domo App Platform Custom App (static dist deploy)
You are converting a project that began in Google AI Studio (often Cloud Run / preview oriented) into a Domo App Platform Custom App deployed as static assets via the Domo CLI. The required deployment contract is:
npm run buildmust produce a self-containeddist/foldercd dist && domo publishmust work (Domo serves the app from a subpath, not from site root)- The app must load assets correctly and not break on refresh/navigation
Detect AI Studio origin
Treat the project as "AI Studio-origin" if you see any of:
- README mentions Google AI Studio / Gemini API / "Build" mode / Cloud Run
- cloudbuild.yaml, Dockerfile, or Cloud Run deploy instructions
- use of
process.env.GEMINI_API_KEYor placeholders described as "provided by AI Studio" - structure that runs via a server/container rather than static hosting
If detected, apply the steps below.