intent-router
/install intent-router
intent-router
Classify text into your custom intent list with confidence scoring and entity extraction. Powered by x402 — no API keys needed.
Prerequisites
npm install -g [email protected]
awal auth login
Usage
npx [email protected] x402 pay \
https://anicca-proxy-production.up.railway.app/api/x402/intent-router \
-X POST \
-d '{"text":"I want to book a flight to Tokyo next week","intents":["booking","complaint","question","feedback","cancellation"],"language":"en"}'
Price
$0.005 USDC per request (Base network)
Input Schema
| Field | Type | Required | Description |
|---|---|---|---|
| text | string (max 2000) | Yes | Text to classify |
| intents | string[] (2-20 items) | Yes | Candidate intent list |
| language | enum (en|ja|es|fr|de|zh|ko) | No (default: en) | Language hint |
| context | string (max 500) | No | Additional context |
Output Schema
{
"intent_id": "int_a1b2c3",
"matched_intent": "booking",
"confidence": 0.95,
"reasoning": "The text explicitly mentions wanting to book a flight.",
"secondary_intent": "question",
"secondary_confidence": 0.12,
"entities": [
{"type": "location", "value": "Tokyo"},
{"type": "datetime", "value": "next week"}
],
"language_detected": "en"
}
- Make sure OpenClaw is installed (local or Docker)
- Run the install command in chat:
/install intent-router - After installation, invoke the skill by name or use
/intent-router - Provide required inputs per the skill's parameter spec and get structured output
What is intent-router?
Classify text into custom intents with confidence scoring and entity extraction. Use when: intent classification, message routing, multi-agent orchestration,... It is an AI Agent Skill for Claude Code / OpenClaw, with 442 downloads so far.
How do I install intent-router?
Run "/install intent-router" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.
Is intent-router free?
Yes, intent-router is completely free (open-source). You can download, install and use it at no cost.
Which platforms does intent-router support?
intent-router is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).
Who created intent-router?
It is built and maintained by Daisuke Narita (@daisuke134); the current version is v1.0.0.