@botuyo/mcp 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -31,6 +31,37 @@ export declare function exampleAgentHandler(): Promise<{
|
|
|
31
31
|
instruction: string;
|
|
32
32
|
tools: string;
|
|
33
33
|
};
|
|
34
|
+
_stageTypes_doc: {
|
|
35
|
+
start: {
|
|
36
|
+
purpose: string;
|
|
37
|
+
behavior: string;
|
|
38
|
+
useCases: string;
|
|
39
|
+
cardinality: string;
|
|
40
|
+
bestPractices: string;
|
|
41
|
+
};
|
|
42
|
+
action: {
|
|
43
|
+
purpose: string;
|
|
44
|
+
behavior: string;
|
|
45
|
+
useCases: string;
|
|
46
|
+
cardinality: string;
|
|
47
|
+
bestPractices: string;
|
|
48
|
+
};
|
|
49
|
+
router: {
|
|
50
|
+
purpose: string;
|
|
51
|
+
behavior: string;
|
|
52
|
+
useCases: string;
|
|
53
|
+
cardinality: string;
|
|
54
|
+
bestPractices: string;
|
|
55
|
+
};
|
|
56
|
+
end: {
|
|
57
|
+
purpose: string;
|
|
58
|
+
behavior: string;
|
|
59
|
+
useCases: string;
|
|
60
|
+
cardinality: string;
|
|
61
|
+
bestPractices: string;
|
|
62
|
+
};
|
|
63
|
+
_summary: string;
|
|
64
|
+
};
|
|
34
65
|
connections: ({
|
|
35
66
|
id: string;
|
|
36
67
|
from: string;
|
|
@@ -171,14 +202,7 @@ export declare function exampleAgentHandler(): Promise<{
|
|
|
171
202
|
_voice_doc: {
|
|
172
203
|
profile: string;
|
|
173
204
|
widgetCallEnabled: string;
|
|
174
|
-
|
|
175
|
-
_availableProfiles: {
|
|
176
|
-
displayName: string;
|
|
177
|
-
id: string;
|
|
178
|
-
gender: string;
|
|
179
|
-
tone: string;
|
|
180
|
-
description: string;
|
|
181
|
-
}[];
|
|
205
|
+
_availableProfiles: string[];
|
|
182
206
|
_importNote: string;
|
|
183
207
|
};
|
|
184
208
|
channelPrompts: {
|
|
@@ -54,6 +54,13 @@ export async function exampleAgentHandler() {
|
|
|
54
54
|
instruction: 'Hacé preguntas para entender las necesidades del usuario.',
|
|
55
55
|
tools: ['search_accommodations', 'search_knowledge_base']
|
|
56
56
|
},
|
|
57
|
+
{
|
|
58
|
+
id: 'intent_router',
|
|
59
|
+
name: 'Router de Intención',
|
|
60
|
+
type: 'router',
|
|
61
|
+
instruction: 'Analizá la intención del usuario y dirigilo al flujo correcto. No interactúes directamente, solo evaluá las condiciones de salida.',
|
|
62
|
+
tools: []
|
|
63
|
+
},
|
|
57
64
|
{
|
|
58
65
|
id: 'guest_booking',
|
|
59
66
|
name: 'Reserva',
|
|
@@ -65,22 +72,57 @@ export async function exampleAgentHandler() {
|
|
|
65
72
|
id: 'farewell',
|
|
66
73
|
name: 'Despedida',
|
|
67
74
|
type: 'end',
|
|
68
|
-
instruction: 'Despedite amablemente.',
|
|
75
|
+
instruction: 'Despedite amablemente y preguntá si necesita algo más.',
|
|
69
76
|
tools: []
|
|
70
77
|
}
|
|
71
78
|
],
|
|
72
79
|
_stages_doc: {
|
|
73
80
|
id: 'Required. Unique string identifier. Referenced by connections.',
|
|
74
|
-
name: 'Optional. Human-readable label for admin UI.',
|
|
75
|
-
type: 'Required. One of: "start"
|
|
81
|
+
name: 'Optional. Human-readable label for admin UI and visual graph.',
|
|
82
|
+
type: 'Required. One of: "start", "action", "router", "end". See _stageTypes_doc for detailed explanation.',
|
|
76
83
|
instruction: 'Required. System prompt for this stage. The LLM follows this when the stage is active.',
|
|
77
84
|
tools: 'Optional. Array of tool IDs available in THIS stage. Must be a subset of enabledTools[].'
|
|
78
85
|
},
|
|
86
|
+
_stageTypes_doc: {
|
|
87
|
+
start: {
|
|
88
|
+
purpose: 'Entry point of the conversation. The agent begins here when a new conversation starts.',
|
|
89
|
+
behavior: 'Executes its instruction once at the start, then transitions to the next stage via connections.',
|
|
90
|
+
useCases: 'Greeting the user, collecting initial context, setting the tone of the conversation.',
|
|
91
|
+
cardinality: 'Exactly 1 per agent. Every agent MUST have exactly one start stage.',
|
|
92
|
+
bestPractices: 'Keep it simple — greet the user and ask how you can help. Avoid heavy tool usage here.'
|
|
93
|
+
},
|
|
94
|
+
action: {
|
|
95
|
+
purpose: 'The workhorse stage. Executes tools, interacts with the user, and performs tasks.',
|
|
96
|
+
behavior: 'The LLM follows the instruction, can call tools assigned to this stage, and engages in multi-turn conversation until a transition condition is met.',
|
|
97
|
+
useCases: 'Searching products, collecting user data, processing orders, answering questions, executing business logic.',
|
|
98
|
+
cardinality: 'Unlimited. You can have as many action stages as needed.',
|
|
99
|
+
bestPractices: 'Assign only the tools relevant to this stage\'s purpose. Write clear instructions about what the agent should accomplish before transitioning.'
|
|
100
|
+
},
|
|
101
|
+
router: {
|
|
102
|
+
purpose: 'Decision point that evaluates the user\'s intent and directs the flow to different stages based on conditions.',
|
|
103
|
+
behavior: 'The LLM analyzes the conversation context and evaluates the conditional connections to determine which stage to transition to. It does NOT interact with the user directly — it silently routes.',
|
|
104
|
+
useCases: 'Intent classification (sales vs support vs FAQ), language detection, user type routing (new vs returning), priority triage.',
|
|
105
|
+
cardinality: 'Unlimited. Use as many routers as needed for complex branching flows.',
|
|
106
|
+
bestPractices: 'Keep router instructions focused on evaluation criteria. All outgoing connections should be "conditional" type. Don\'t assign tools — routers should be lightweight decision makers.'
|
|
107
|
+
},
|
|
108
|
+
end: {
|
|
109
|
+
purpose: 'Closing stage. Wraps up the conversation and says goodbye.',
|
|
110
|
+
behavior: 'Executes its instruction (farewell message) and marks the conversation as completed. No further transitions occur.',
|
|
111
|
+
useCases: 'Saying goodbye, sending a summary, confirming a completed action, asking for feedback.',
|
|
112
|
+
cardinality: 'At least 1. You need at least one end stage, but can have multiple (e.g. one for success, one for cancellation).',
|
|
113
|
+
bestPractices: 'Keep it brief and warm. Optionally ask if the user needs anything else before closing.'
|
|
114
|
+
},
|
|
115
|
+
_summary: 'A typical flow: start → action(s) → router → action(s) → end. ' +
|
|
116
|
+
'The router is optional — simple agents can go start → action → end with conditional connections. ' +
|
|
117
|
+
'Use routers when you have 3+ possible paths from a single decision point.'
|
|
118
|
+
},
|
|
79
119
|
connections: [
|
|
80
120
|
{ id: 'c1', from: 'greeting', to: 'guest_discovery', type: 'default' },
|
|
81
|
-
{ id: 'c2', from: 'guest_discovery', to: '
|
|
82
|
-
{ id: 'c3', from: '
|
|
83
|
-
{ id: 'c4', from: '
|
|
121
|
+
{ id: 'c2', from: 'guest_discovery', to: 'intent_router', type: 'default' },
|
|
122
|
+
{ id: 'c3', from: 'intent_router', to: 'guest_booking', type: 'conditional', condition: 'El usuario quiere reservar un alojamiento' },
|
|
123
|
+
{ id: 'c4', from: 'intent_router', to: 'farewell', type: 'conditional', condition: 'El usuario quiere despedirse o no necesita más ayuda' },
|
|
124
|
+
{ id: 'c5', from: 'intent_router', to: 'guest_discovery', type: 'conditional', condition: 'El usuario necesita más información antes de decidir' },
|
|
125
|
+
{ id: 'c6', from: 'guest_booking', to: 'farewell', type: 'conditional', condition: 'Reserva completada o cancelada' }
|
|
84
126
|
],
|
|
85
127
|
_connections_doc: {
|
|
86
128
|
id: 'Required. Unique string identifier.',
|
|
@@ -227,20 +269,19 @@ export async function exampleAgentHandler() {
|
|
|
227
269
|
widgetCallEnabled: true
|
|
228
270
|
},
|
|
229
271
|
_voice_doc: {
|
|
230
|
-
profile: 'Display name of a voice profile. Resolved to internal ID on save. Use one from the
|
|
272
|
+
profile: 'Display name of a voice profile. Resolved to internal ID on save. Use one from the list below.',
|
|
231
273
|
widgetCallEnabled: 'Boolean. Enables the phone icon in the widget for browser-based voice calls.',
|
|
232
|
-
_adminOnly: 'liveModel (e.g. "gemini-2.0-flash-live-001") is admin-only and auto-preserved on import.',
|
|
233
274
|
_availableProfiles: [
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
275
|
+
'Profesional Femenina',
|
|
276
|
+
'Amigable Femenina',
|
|
277
|
+
'Serena Femenina',
|
|
278
|
+
'Energético Masculino',
|
|
279
|
+
'Formal Masculino',
|
|
280
|
+
'Cálido Masculino',
|
|
281
|
+
'Neutro Profesional',
|
|
282
|
+
'Suave Neutral'
|
|
242
283
|
],
|
|
243
|
-
_importNote: '
|
|
284
|
+
_importNote: 'Pasá el nombre del perfil tal cual aparece en la lista (ej: "Profesional Femenina"). Se resuelve automáticamente al ID interno.'
|
|
244
285
|
},
|
|
245
286
|
// ─── PER-CHANNEL PROMPTS ───────────────────────────────────────
|
|
246
287
|
channelPrompts: {
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"example_agent.js","sourceRoot":"","sources":["../../src/tools/example_agent.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,kBAAkB,GAAS;IACtC,IAAI,EAAE,eAAe;IACrB,WAAW,EAAE;;;;;;;;;2FAS4E;IACzF,WAAW,EAAE;QACX,IAAI,EAAE,QAAQ;QACd,UAAU,EAAE,EAAE;QACd,QAAQ,EAAE,EAAE;KACb;CACF,CAAA;AAED,MAAM,CAAC,KAAK,UAAU,mBAAmB;IACvC,MAAM,SAAS,GAAG;QAChB,sEAAsE;QACtE,gCAAgC;QAChC,kEAAkE;QAClE,6DAA6D;QAC7D,sEAAsE;QAEtE,kEAAkE;QAClE,IAAI,EAAE,sBAAsB;QAC5B,SAAS,EAAE,wEAAwE;QAEnF,QAAQ,EAAE;YACR,IAAI,EAAE,wEAAwE;YAC9E,QAAQ,EAAE,OAAO;YACjB,SAAS,EAAE,mFAAmF;YAC9F,kBAAkB,EAAE,+GAA+G;SACpI;QACD,aAAa,EAAE;YACb,IAAI,EAAE,oFAAoF;YAC1F,QAAQ,EAAE,0FAA0F;YACpG,SAAS,EAAE,iEAAiE;YAC5E,kBAAkB,EAAE,kGAAkG;SACvH;QAED,kEAAkE;QAClE,MAAM,EAAE;YACN;gBACE,EAAE,EAAE,UAAU;gBACd,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,OAAO;gBACb,WAAW,EAAE,wEAAwE;gBACrF,KAAK,EAAE,EAAE;aACV;YACD;gBACE,EAAE,EAAE,iBAAiB;gBACrB,IAAI,EAAE,gBAAgB;gBACtB,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,2DAA2D;gBACxE,KAAK,EAAE,CAAC,uBAAuB,EAAE,uBAAuB,CAAC;aAC1D;YACD;gBACE,EAAE,EAAE,eAAe;gBACnB,IAAI,EAAE,SAAS;gBACf,IAAI,EAAE,QAAQ;gBACd,WAAW,EAAE,4CAA4C;gBACzD,KAAK,EAAE,CAAC,wBAAwB,EAAE,2BAA2B,CAAC;aAC/D;YACD;gBACE,EAAE,EAAE,UAAU;gBACd,IAAI,EAAE,WAAW;gBACjB,IAAI,EAAE,KAAK;gBACX,WAAW,EAAE,
|
|
1
|
+
{"version":3,"file":"example_agent.js","sourceRoot":"","sources":["../../src/tools/example_agent.ts"],"names":[],"mappings":"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"}
|