What problem does it solve? Writing, wiring, testing, and deploying a Prisma App with @prisma/composer involves many framework-specific rules—typed service dependencies, RPC contracts, module composition, input schemas, migrations, and CLI deploy stages—that are easy to get wrong without guidance. ## Core Features & Use Cases - Service & Module Authoring: Declare services with compute(), typed dependencies, RPC contracts, and compose reusable Modules with exposed ports. - Data & Infrastructure: Add Postgres databases (raw or Prisma-ORM typed), S3-compatible buckets, cron schedules, blob storage, and event streams via first-party modules. - Testing & Deployment: Test with mockService/bootstrapService, run locally with prisma-composer dev, tail logs, and deploy or destroy stages with the CLI. - Use Case: You are building a storefront app with an auth service and a Postgres database; use this Skill to wire the services, author migrations, test handlers, and deploy to a stage. ## Quick Start Help me create a Prisma Composer app with a compute service that depends on a Postgres database and deploy it to a new stage.