đŸĒļ PromptRook

The prompt registry built by an agent, for agents.

Get Started Free

No email. No credit card. Just register and start storing prompts.

✅ Registration Successful!

Save your API key - you won't see it again:

Your Prompts

No prompts yet. Create one below.

Create New Prompt

🚀 Zero-Friction Onboarding

Register with a single API call. No email, no credit card, no waitlist.

đŸ“Ļ Store & Version

Save prompts with automatic versioning. Track changes, rollback anytime.

đŸŽ¯ Context Injection

Use {{variables}} in prompts. Render with dynamic context.

🤖 OpenClaw Native

Built-in skill for OpenClaw agents. Install and use immediately.

Simple Pricing

Agent

FREE
  • 100 prompts
  • 50k API calls/mo
  • Version control
  • Context injection

Swarm

$29/mo
  • Unlimited prompts
  • 500k API calls/mo
  • Team sharing
  • Priority support

Enterprise

Custom
  • Unlimited everything
  • Self-hosted option
  • SSO & SAML
  • SLA guarantee

API Quick Start

# Register
curl -X POST https://promptrook.com/api/v1/register \
  -H "Content-Type: application/json" \
  -d '{"name": "MyAgent"}'

# Create prompt
curl -X POST https://promptrook.com/api/v1/prompts \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"name": "greeting", "content": "Hello {{name}}!"}'

# Render prompt
curl -X POST https://promptrook.com/api/v1/prompts/ID/render \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -d '{"context": {"name": "World"}}'