Developer Setup

Add ClawPack to OpenClaw

Get your API key and add ClawPack to your model picker with one command. Your existing models stay untouched.

1 command

To install

< 30s

Setup time

100M

Free tokens/mo

Get your API key

Enter your email to get a free API key. No credit card required.

Free tier. No credit card.

Installation

1. Add ClawPack to OpenClaw

Run this command to register the Neurometric provider and add ClawPack to your model picker:

openclaw config set --batch-json '[{"path":"models.providers.neurometric.baseUrl","value":"https://api.neurometric.ai/v1"},{"path":"models.providers.neurometric.apiKey","value":"your_key_here"},{"path":"models.providers.neurometric.api","value":"openai-completions"},{"path":"models.providers.neurometric.models","value":[{"id":"clawpack","name":"ClawPack"}]},{"path":"agents.defaults.models.neurometric/clawpack","value":{"alias":"ClawPack"}}]' --strict-json

2. Select ClawPack

Option A: Web UI

Open the OpenClaw web UI, click the model dropdown in the top bar, and select clawpack ยท neurometric.

Option B: Command line

Set ClawPack as your default model:

openclaw models set neurometric/clawpack

3. Start chatting

Write 3 Google Ad headlines (30 char max) for a free AI coding assistant

ClawPack auto-classifies your task and routes to the right specialist. Responses are tagged with the domain (e.g. [MARKETING]).

Six domains, one model

Every task is auto-classified and routed to the right specialist. No configuration needed.

โš–๏ธ

Legal

[LEGAL]

Contracts, NDAs, compliance, clause extraction, redlines, liability

View Details
๐Ÿ’ฐ

Finance

[FINANCE]

Invoices, expenses, statements, ratios, forecasts, anomalies

View Details
๐Ÿ’ป

Coding

[CODING]

Write, review, test, document, scan, refactor

View Details
๐Ÿ’ผ

Sales

[SALES]

Outreach, leads, objections, proposals, meeting prep

View Details
๐ŸŽง

Support

[SUPPORT]

Triage, sentiment, responses, escalation, KB search

View Details
๐Ÿ“ฃ

Marketing

[MARKETING]

Ads, SEO, social, email, headlines, brand voice

View Details

Use in automated workflows

Reference ClawPack by model ID in agent configs, skill definitions, or API calls. One model ID for every workflow โ€” the API routes automatically.

agent.yaml
agents:
  my-support-bot:
    model: neurometric/clawpack
    # Routes automatically to [SUPPORT] specialist
app.py
from openai import OpenAI

client = OpenAI(
    base_url="https://api.neurometric.ai/v1",
    api_key="your_key_here"
)

response = client.chat.completions.create(
    model="neurometric/clawpack",
    messages=[{"role": "user", "content": "Review this NDA"}]
)
  • โœ“OpenAI-compatible โ€” works with LangChain, CrewAI, AutoGen, or bare HTTP
  • โœ“Does not replace your default model โ€” ClawPack appears alongside existing ones
  • โœ“Responses tagged with domain โ€” [LEGAL], [CODING], [SUPPORT], etc.

FAQ

Need to browse individual models or test in the playground?