What problem does it solve? Deploying TypeScript apps to Prisma Compute involves many moving parts: the right CLI package, auth workspaces, typed config files, framework-specific build outputs, and host/port binding rules. This Skill guides agents through the entire Prisma Compute deployment lifecycle so apps deploy correctly the first time. ## Core Features & Use Cases - CLI-Guided Deployment: Uses @prisma/cli app deploy and create-prisma with verified command syntax, JSON output, and non-interactive flags for agent workflows. - Typed Compute Config: Creates and validates prisma.compute.ts with defineComputeConfig for single apps, monorepos, and multi-app deploy targets. - Framework Readiness Checks: Covers Next.js standalone output, Hono, NestJS, Nuxt, Astro, TanStack Start, Bun, Elysia, and custom prebuilt artifacts, including 0.0.0.0 host binding and PORT handling. - Use Case: A user asks to deploy an existing Hono API to Prisma Compute. The Skill inspects the project, verifies auth with auth whoami, checks the entrypoint and port, runs app deploy --json --no-interactive, and verifies the public deployment URL. ## Quick Start Ask the agent to deploy your existing TypeScript app to Prisma Compute, for example: deploy my Hono API in this repo to Prisma Compute and verify the public URL.