What problem does it solve? Deploying TypeScript apps to Prisma Compute involves many failure points: wrong CLI package, missing typed config, localhost-only port binding, wrong branch or env scope, and framework-specific build requirements. This Skill guides agents through the entire Prisma Compute lifecycle so deployments succeed on the first attempt. ## Core Features & Use Cases - Deployment Guidance: Covers @prisma/cli app deploy, generated compute:deploy scripts, non-interactive JSON deploys, --no-promote candidate builds, and production promotion. - Typed Config Authoring: Explains prisma.compute.ts with defineComputeConfig, single-app vs monorepo apps targets, build blocks, env inputs, and flag precedence. - Framework Readiness: Details deploy requirements for Next.js standalone output, Hono, NestJS, Nuxt, Astro, TanStack Start, Bun/Elysia entrypoints, and custom prebuilt artifacts. - Auth and Operations: Handles multi-workspace OAuth switching, PRISMA_SERVICE_TOKEN CI auth, build vs runtime logs, custom domains, and troubleshooting. - Use Case: A developer asks why their deployed Hono API is unreachable; the Skill diagnoses the hard-coded localhost binding and prescribes 0.0.0.0 with the correct --http-port. ## Quick Start Ask the agent to deploy your existing app to Prisma Compute, for example: deploy this Hono API to Prisma Compute on port 8080 using my .env file.