Start here
Free
Full access to ClawPack and the playground. 100M tokens/month to test and build.
$0/mo
- ClawPack — all 6 domains
- 100M tokens/month
- OpenAI-compatible API
- Playground access
One API call. ClawPack classifies your task and routes it to the right specialist. Free API key. One command to install.
1
Command
<30s
Setup time
100M
Free tokens/mo
How ClawPack works
Your prompt
ClawPack
classifies
Specialist
answer
Frontier LLM
complex tasks · Advanced+
[LEGAL]
Contract risk analysis
Clause extraction & comparison · Redline diffs
[FINANCE]
Invoice parsing & extraction
Expense categorization · Financial statement analysis
[CODING]
Code generation
Code review & PR summaries · Unit & integration tests
[SALES]
Cold outreach & email sequences
Lead scoring & qualification · Objection handling
[SUPPORT]
Ticket triage & prioritization
Sentiment detection · Response drafting
[MARKETING]
Ad copy (Google, LinkedIn, Facebook)
SEO briefs & keyword research · Social media posts
One API call · No chaining
Start here
Full access to ClawPack and the playground. 100M tokens/month to test and build.
$0/mo
For production
Unlimited ClawPack tokens. No throttling, no monthly caps. Ship with confidence.
$8/mo
For complex work
Everything in Pro, plus a frontier-class model for tasks that need deeper reasoning—no separate Claude or ChatGPT subscription.
$25/mo
For teams
Everything in Advanced, plus up to 5 API keys to share across your projects and workflows.
$25/mo per seat
Reference ClawPack by model ID in agent configs, skill definitions, or API calls. One model ID — ClawPack classifies your prompt and routes to the matching specialist.
agents:
contract-reviewer:
model: neurometric/clawpack
# → [LEGAL] contract-risk-analyzer
invoice-bot:
model: neurometric/clawpack
# → [FINANCE] invoice-data-extractorfrom openai import OpenAI
client = OpenAI(
base_url="https://api.neurometric.ai/v1",
api_key="your_key_here"
)
# Routes to [LEGAL] → contract-risk-analyzer
client.chat.completions.create(
model="neurometric/clawpack",
messages=[{"role": "user", "content": "Flag liability clauses in this NDA"}]
)
# Routes to [CODING] → code-reviewer
client.chat.completions.create(
model="neurometric/clawpack",
messages=[{"role": "user", "content": "Summarize this PR diff"}]
)