agoráconversations
Catalog
Tier-1 triage and routing·live·2-turn average

Intent classification intake

What it does

Reads a single inbound customer message, classifies it into one of six intents (billing, technical, account, refund, feature, other), and emits a structured handoff to the matching downstream workflow.

When to use it

Use this as the entry point of any AI-fronted support stack. It is the first workflow your client's Claude or ChatGPT calls when a ticket arrives.

What it doesn't do

It does not respond to the customer beyond an acknowledgment line; resolution is the responsibility of the workflow it routes to.

§ live preview
live preview·Intent classification intake
harness
  1. intake
  2. classify
  3. handoff
Press play to step through the conversation.
§ connect
mcp url

Provisioning the MCP URL for Intent classification intake is part of Pro.

Free accounts can read the YAML, run the Live Preview, and provision one starter URL. Pro provisions URLs for the whole catalog.

§ source

Open YAML. Read it before you subscribe.

source·intent-classification-intake.yaml
1# intent-classification-intake.yaml
2name: intent-classification-intake
3version: 1.0.0
4category: tier-1-triage
5description: Classifies an inbound message into one of six intents.
6 
7inputs:
8 - name: message
9 type: string
10 required: true
11 
12intents:
13 - billing
14 - technical
15 - account
16 - refund
17 - feature
18 - other
19 
20harness:
21 - step: intake
22 require: [message]
23 - step: classify
24 model: deterministic
25 confidence_floor: 0.7
26 on_below_floor: route_to(ambiguous-message-disambiguation)
27 - step: handoff
28 emit:
29 intent: <classified>
30 confidence: <score>
31 original_message: <message>
32 
33outputs:
34 - intent
35 - confidence
36 - original_message
37 
§ personalization

Need intent classification intaketuned to one client’s voice, escalation logic, and required fields? That’s a $99 personalization.

One-shot fee. Turnaround stated up front. The result is yours, with the deterministic harness already wired.

Request personalization