What problem does it solve? Deploying TypeScript apps to Prisma Compute involves many moving parts: typed config files, framework-specific build outputs, workspace authentication, branch-scoped env vars, and host/port binding rules. This Skill guides an AI agent through the entire Prisma Compute lifecycle so deployments succeed on the first attempt instead of failing on misconfigured ports, missing standalone output, or wrong workspace auth. ## Core Features & Use Cases - Deployment workflows: Create, deploy, promote, roll back, and inspect Compute apps with @prisma/cli app deploy, including non-interactive JSON output for CI and agents. - Typed config management: Author and validate prisma.compute.ts with defineComputeConfig for single apps, monorepos, and multi-app targets. - Framework readiness checks: Verify deploy requirements for Next.js, Nuxt, Astro, Hono, NestJS, TanStack Start, Bun, Elysia, and custom prebuilt artifacts, including 0.0.0.0 host binding and correct HTTP port. - Auth and operations: Manage multiple OAuth workspaces, PRISMA_SERVICE_TOKEN auth, branch-scoped env vars, databases, build logs, and custom domains. - Use Case: You have a Hono API in a Turborepo monorepo. The Skill writes a root prisma.compute.ts with an apps.api target, verifies the server binds to 0.0.0.0:8080, and runs app deploy api --json --no-interactive with the correct branch env. ## Quick Start Ask the agent to deploy your existing app to Prisma Compute, for example: "Deploy this Hono app to Prisma Compute on port 8080 and verify the public URL."