Quick start
Get from zero to a versioned, tested prompt in about five minutes.
1. Create your workspace
Sign up and a workspace is created for you automatically. Everything — prompts, versions, tests, and keys — is scoped to that workspace.
2. Create a prompt
Go to Prompts and click New prompt. Give it a slug-style name like customer-support-agent, then write your first version in the editor. Every save creates a new version; history is never overwritten.
3. Add a test
Open the prompt's Tests tab and add a case. Pick a check type — for example Must mention or AI judge — give it an input, and run the suite. You will see pass/fail results with the model output for each case.
4. Deploy
From the Versions tab, deploy a version to development,staging, or production. Your app then fetches the live prompt at runtime:
curl https://your-app.vercel.app/api/v1/prompts/customer-support-agent/current?env=production \
-H "Authorization: Bearer $PROMPTVCS_API_KEY"Next steps
- Generate an API key under Integrations.
- Wire the eval gate into CI with the GitHub Action (see the Developer guide).
- Invite your team and assign roles (see Team setup).