Get started in 3 steps
Go from zero to version-controlled, optimized prompts in under 5 minutes. No credit card required.
Step 01
Install the CLI
Get the PromptOps CLI with a single command.
terminal
npm install -g @promptops/cli
Requires Node.js 18+
Step 02
Initialize your project
Set up PromptOps in your existing project. This creates a promptops.config.ts and a /prompts directory.
terminal
promptops init # Follow the setup wizard: # ? Project name: my-ai-app # ? Default model: claude-sonnet # ? Enable auto-optimization: yes
Works with any Node.js or Python project
Step 03
Register your first prompt
Version-control your first prompt. It's now tracked, optimizable, and benchmarkable.
terminal
import { promptops } from "@promptops/sdk";
const prompt = await promptops.register({
name: "support-agent",
model: "claude-sonnet",
prompt: `You are a helpful customer support agent.
Answer questions clearly and concisely.`,
tags: ["support", "production"]
});
// That's it! Your prompt is now managed.
console.log(prompt.version); // "v1.0"Full TypeScript support with autocomplete
What's next?
Now that your prompt is registered, try optimizing it or running a benchmark across multiple models.