On this page
Step 1: Run the CLI Step 2: Verify Step 3: Check savings Already have a key? Non-interactive setup What happens next

Quickstart

Get Clawzempic running in under two minutes.

Step 1: Run the CLI

bash
npx clawzempic

The interactive setup will:

  1. Ask for your name or bot name
  2. Ask for your LLM provider API key (OpenRouter sk-or- or Anthropic sk-ant-)
  3. Ask for your email (for dashboard access and spend alerts)
  4. Optionally accept a promo code
  5. Create your account and store your provider key securely
  6. Detect your framework (OpenClaw, Nanobot, Python, LangChain, Node.js)
  7. Configure your environment
  8. Test the connection

After setup, you'll see your model cascade — the 4-tier routing mix that determines which model handles each complexity level.

Step 2: Verify

bash
npx clawzempic test

This sends a single request through the proxy and confirms your connection is working.

Step 3: Check your savings

bash
npx clawzempic savings 7d

After some traffic has flowed, this shows your savings breakdown by optimization layer.

Already have a key?

If you received an API key from someone else:

bash
npx clawzempic --key sk-clwz-your-key-here

Non-interactive setup

For CI/CD or scripted installs:

bash
npx clawzempic init \
  --key sk-clwz-your-key \
  --email [email protected] \
  --yes \
  --no-test
💡
The --yes flag skips all confirmation prompts. --no-test skips the connection test. Useful for automated deployments.

What happens next

Your LLM requests now flow through Clawzempic's optimization pipeline. Visit your dashboard to see real-time savings, model distribution, and memory stats.

Make sure your application is configured to use the Clawzempic base URL. The CLI auto-configures this for supported frameworks, but check your .env or SDK config if you're using a custom setup.