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-json2. 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/clawpack3. Start chatting
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.
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.
agents:
my-support-bot:
model: neurometric/clawpack
# Routes automatically to [SUPPORT] specialistfrom 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?