Pro Features Overview
Upgrade the core generator with production‑ready feature packs. Generate UI, SDKs, docs, security helpers, CI tooling — all in minutes.
How to Get Pro Features
Purchase any tier through GitHub Sponsors and get started in minutes:
The sponsors page has two tabs: Monthly and One-time. PZG plans live under the One-time tab (second tab). Monthly supporter tiers such as Pro (Individual) do not include Prisma Zod Generator licenses. Switch to the One-time tab and choose a yearly tier labeled PZG Starter, PZG Professional, PZG Business, or PZG Enterprise when you need Pro features.

Switch to One-time to see the Prisma Zod Generator Starter, Professional, and Business tiers.
After purchasing:
- DM @omardulaimidev on X with your GitHub username
- You'll receive your license key and setup instructions within 24 hours
- Run
prisma-zod-generator license-checkto verify activation
Available Tiers
| Tier | Annual Price | Features |
|---|---|---|
| Starter | $69/year | Server Actions, Forms |
| Professional | $199/year | + SDK, API Docs, Policies, Guard, RLS, Performance |
| Business | $599/year | + Contracts, Factories, Priority response targets |
| Enterprise | Custom | + Multi-Tenant, roadmap reviews, custom feature collaboration |
Plan Comparison
| Feature Pack | Core (MIT) | Starter (starter) | Professional (professional) | Business (business) | Enterprise (enterprise) |
|---|---|---|---|---|---|
| Server Actions | ✅ | ✅ | ✅ | ✅ | ✅ |
| Forms UX | ❌ | ✅ | ✅ | ✅ | ✅ |
| Policies & Redaction | ❌ | ❌ | ✅ | ✅ | ✅ |
| Drift Guard | ❌ | ❌ | ✅ | ✅ | ✅ |
| PostgreSQL RLS | ❌ | ❌ | ✅ | ✅ | ✅ |
| Performance Pack | ❌ | ❌ | ✅ | ✅ | ✅ |
| SDK Publisher | ❌ | ❌ | ✅ | ✅ | ✅ |
| Contract Testing | ❌ | ❌ | ❌ | ✅ | ✅ |
| API Docs Pack | ❌ | ❌ | ❌ | ✅ | ✅ |
| Data Factories | ❌ | ❌ | ❌ | ✅ | ✅ |
| Multi-Tenant Kit | ❌ | ❌ | ❌ | ❌ | ✅ |
| Private Discord Channel | ❌ | ✅ | ✅ | ✅ | ✅ |
| Priority Response Targets | ❌ | ❌ | ❌ | ✅ | ✅ |
| Roadmap Reviews & Co-built Features | ❌ | ❌ | ❌ | ❌ | ✅ |
Starter is perfect for solo builders shipping typed Server Actions and forms. Professional unlocks security packs for production teams. Business adds integration and documentation tooling with faster support, and Enterprise layers on multi-tenant tooling plus roadmap collaboration.
Generate in minutes
# Check license
prisma-zod-generator license-check
# Enable the packs you need in schema.prisma
# (e.g., enableForms/enableSDK/enableApiDocs)
# Run Prisma generators
pnpm exec prisma generate
Packs at a glance
You can generate multiple packs side‑by‑side — e.g., SDK + API Docs + Forms — to iterate UI against a mock server while the backend evolves.
Examples
Validate then submit (Forms + SDK)
import { UserForm } from '../generated/forms'
import APIClient from '@your-org/api-sdk'
const client = new APIClient({ baseUrl: 'http://127.0.0.1:3001' })
export default function Page() {
return (
<UserForm
defaultValues={{ email: 'test@example.com' }}
onSubmit={async (data) => {
const res = await client.createUser(data)
if (!res.success) throw new Error(res.error)
}}
/>
)
}