@decocms/bindings 0.2.4-beta.3 → 0.2.4
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.
- package/dist/core/binder.js +2 -6
- package/dist/core/binder.js.map +1 -1
- package/dist/core/subset.js +1 -3
- package/dist/core/subset.js.map +1 -1
- package/dist/well-known/{agents.js → agent.js} +2 -3
- package/dist/well-known/agent.js.map +1 -0
- package/dist/well-known/language-model.d.ts +382 -382
- package/package.json +4 -4
- package/dist/well-known/agents.js.map +0 -1
- package/dist/well-known/{agents.d.ts → agent.d.ts} +50 -50
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@decocms/bindings",
|
|
3
|
-
"version": "0.2.4
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsup",
|
|
@@ -40,9 +40,9 @@
|
|
|
40
40
|
"types": "./dist/well-known/collections.d.ts",
|
|
41
41
|
"default": "./dist/well-known/collections.js"
|
|
42
42
|
},
|
|
43
|
-
"./
|
|
44
|
-
"types": "./dist/well-known/
|
|
45
|
-
"default": "./dist/well-known/
|
|
43
|
+
"./agent": {
|
|
44
|
+
"types": "./dist/well-known/agent.d.ts",
|
|
45
|
+
"default": "./dist/well-known/agent.js"
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/well-known/agents.ts"],"sourcesContent":["/**\n * Agents Well-Known Binding\n *\n * Defines the interface for AI agent providers.\n * Any MCP that implements this binding can provide configurable AI agents\n * with custom instructions and tool access controls.\n *\n * This binding uses collection bindings for LIST and GET operations (read-only).\n */\n\nimport { z } from \"zod/v3\";\nimport type { Binder } from \"../core/binder\";\nimport {\n BaseCollectionEntitySchema,\n createCollectionBindings,\n} from \"./collections\";\n\n/**\n * Agent entity schema for AI agents\n * Extends BaseCollectionEntitySchema with agent-specific fields\n * Base schema already includes: id, title, created_at, updated_at, created_by, updated_by\n */\nexport const AgentSchema = BaseCollectionEntitySchema.extend({\n // Agent-specific fields\n description: z.string().describe(\"Brief description of the agent's purpose\"),\n instructions: z\n .string()\n .describe(\"System instructions that define the agent's behavior\"),\n tool_set: z\n .record(z.string(), z.array(z.string()))\n .describe(\n \"Map of connection IDs to arrays of allowed tool names for this agent\",\n ),\n avatar: z.string().url().describe(\"URL to the agent's avatar image\"),\n});\n\n/**\n * AGENT Collection Binding\n *\n * Collection bindings for agents (read-only).\n * Provides LIST and GET operations for AI agents.\n */\nexport const AGENTS_COLLECTION_BINDING = createCollectionBindings(\n \"agent\",\n AgentSchema,\n { readOnly: true },\n);\n\n/**\n * AGENTS Binding\n *\n * Defines the interface for AI agent providers.\n * Any MCP that implements this binding can provide configurable AI agents.\n *\n * Required tools:\n * - COLLECTION_AGENT_LIST: List available AI agents with their configurations\n * - COLLECTION_AGENT_GET: Get a single agent by ID (includes instructions and tool_set)\n */\nexport const AGENTS_BINDING = [\n ...AGENTS_COLLECTION_BINDING,\n] as const satisfies Binder;\n"],"mappings":"AAUA,SAAS,SAAS;AAElB;AAAA,EACE;AAAA,EACA;AAAA,OACK;AAOA,MAAM,cAAc,2BAA2B,OAAO;AAAA;AAAA,EAE3D,aAAa,EAAE,OAAO,EAAE,SAAS,0CAA0C;AAAA,EAC3E,cAAc,EACX,OAAO,EACP,SAAS,sDAAsD;AAAA,EAClE,UAAU,EACP,OAAO,EAAE,OAAO,GAAG,EAAE,MAAM,EAAE,OAAO,CAAC,CAAC,EACtC;AAAA,IACC;AAAA,EACF;AAAA,EACF,QAAQ,EAAE,OAAO,EAAE,IAAI,EAAE,SAAS,iCAAiC;AACrE,CAAC;AAQM,MAAM,4BAA4B;AAAA,EACvC;AAAA,EACA;AAAA,EACA,EAAE,UAAU,KAAK;AACnB;AAYO,MAAM,iBAAiB;AAAA,EAC5B,GAAG;AACL;","names":[]}
|
|
@@ -19,22 +19,22 @@ declare const AgentSchema: z.ZodObject<{
|
|
|
19
19
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
20
20
|
avatar: z.ZodString;
|
|
21
21
|
}, "strip", z.ZodTypeAny, {
|
|
22
|
-
description: string;
|
|
23
22
|
id: string;
|
|
24
23
|
title: string;
|
|
25
24
|
created_at: string;
|
|
26
25
|
updated_at: string;
|
|
26
|
+
description: string;
|
|
27
27
|
instructions: string;
|
|
28
28
|
tool_set: Record<string, string[]>;
|
|
29
29
|
avatar: string;
|
|
30
30
|
created_by?: string | undefined;
|
|
31
31
|
updated_by?: string | undefined;
|
|
32
32
|
}, {
|
|
33
|
-
description: string;
|
|
34
33
|
id: string;
|
|
35
34
|
title: string;
|
|
36
35
|
created_at: string;
|
|
37
36
|
updated_at: string;
|
|
37
|
+
description: string;
|
|
38
38
|
instructions: string;
|
|
39
39
|
tool_set: Record<string, string[]>;
|
|
40
40
|
avatar: string;
|
|
@@ -64,22 +64,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
64
64
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
65
65
|
avatar: z.ZodString;
|
|
66
66
|
}, "strip", z.ZodTypeAny, {
|
|
67
|
-
description: string;
|
|
68
67
|
id: string;
|
|
69
68
|
title: string;
|
|
70
69
|
created_at: string;
|
|
71
70
|
updated_at: string;
|
|
71
|
+
description: string;
|
|
72
72
|
instructions: string;
|
|
73
73
|
tool_set: Record<string, string[]>;
|
|
74
74
|
avatar: string;
|
|
75
75
|
created_by?: string | undefined;
|
|
76
76
|
updated_by?: string | undefined;
|
|
77
77
|
}, {
|
|
78
|
-
description: string;
|
|
79
78
|
id: string;
|
|
80
79
|
title: string;
|
|
81
80
|
created_at: string;
|
|
82
81
|
updated_at: string;
|
|
82
|
+
description: string;
|
|
83
83
|
instructions: string;
|
|
84
84
|
tool_set: Record<string, string[]>;
|
|
85
85
|
avatar: string;
|
|
@@ -90,11 +90,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
90
90
|
hasMore: z.ZodOptional<z.ZodBoolean>;
|
|
91
91
|
}, "strip", z.ZodTypeAny, {
|
|
92
92
|
items: {
|
|
93
|
-
description: string;
|
|
94
93
|
id: string;
|
|
95
94
|
title: string;
|
|
96
95
|
created_at: string;
|
|
97
96
|
updated_at: string;
|
|
97
|
+
description: string;
|
|
98
98
|
instructions: string;
|
|
99
99
|
tool_set: Record<string, string[]>;
|
|
100
100
|
avatar: string;
|
|
@@ -105,11 +105,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
105
105
|
hasMore?: boolean | undefined;
|
|
106
106
|
}, {
|
|
107
107
|
items: {
|
|
108
|
-
description: string;
|
|
109
108
|
id: string;
|
|
110
109
|
title: string;
|
|
111
110
|
created_at: string;
|
|
112
111
|
updated_at: string;
|
|
112
|
+
description: string;
|
|
113
113
|
instructions: string;
|
|
114
114
|
tool_set: Record<string, string[]>;
|
|
115
115
|
avatar: string;
|
|
@@ -136,22 +136,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
136
136
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
137
137
|
avatar: z.ZodString;
|
|
138
138
|
}, "strip", z.ZodTypeAny, {
|
|
139
|
-
description: string;
|
|
140
139
|
id: string;
|
|
141
140
|
title: string;
|
|
142
141
|
created_at: string;
|
|
143
142
|
updated_at: string;
|
|
143
|
+
description: string;
|
|
144
144
|
instructions: string;
|
|
145
145
|
tool_set: Record<string, string[]>;
|
|
146
146
|
avatar: string;
|
|
147
147
|
created_by?: string | undefined;
|
|
148
148
|
updated_by?: string | undefined;
|
|
149
149
|
}, {
|
|
150
|
-
description: string;
|
|
151
150
|
id: string;
|
|
152
151
|
title: string;
|
|
153
152
|
created_at: string;
|
|
154
153
|
updated_at: string;
|
|
154
|
+
description: string;
|
|
155
155
|
instructions: string;
|
|
156
156
|
tool_set: Record<string, string[]>;
|
|
157
157
|
avatar: string;
|
|
@@ -160,11 +160,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
160
160
|
}>>;
|
|
161
161
|
}, "strip", z.ZodTypeAny, {
|
|
162
162
|
item: {
|
|
163
|
-
description: string;
|
|
164
163
|
id: string;
|
|
165
164
|
title: string;
|
|
166
165
|
created_at: string;
|
|
167
166
|
updated_at: string;
|
|
167
|
+
description: string;
|
|
168
168
|
instructions: string;
|
|
169
169
|
tool_set: Record<string, string[]>;
|
|
170
170
|
avatar: string;
|
|
@@ -173,11 +173,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
173
173
|
} | null;
|
|
174
174
|
}, {
|
|
175
175
|
item: {
|
|
176
|
-
description: string;
|
|
177
176
|
id: string;
|
|
178
177
|
title: string;
|
|
179
178
|
created_at: string;
|
|
180
179
|
updated_at: string;
|
|
180
|
+
description: string;
|
|
181
181
|
instructions: string;
|
|
182
182
|
tool_set: Record<string, string[]>;
|
|
183
183
|
avatar: string;
|
|
@@ -201,22 +201,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
201
201
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
202
202
|
avatar: z.ZodString;
|
|
203
203
|
}, "strip", z.ZodTypeAny, {
|
|
204
|
-
description: string;
|
|
205
204
|
id: string;
|
|
206
205
|
title: string;
|
|
207
206
|
created_at: string;
|
|
208
207
|
updated_at: string;
|
|
208
|
+
description: string;
|
|
209
209
|
instructions: string;
|
|
210
210
|
tool_set: Record<string, string[]>;
|
|
211
211
|
avatar: string;
|
|
212
212
|
created_by?: string | undefined;
|
|
213
213
|
updated_by?: string | undefined;
|
|
214
214
|
}, {
|
|
215
|
-
description: string;
|
|
216
215
|
id: string;
|
|
217
216
|
title: string;
|
|
218
217
|
created_at: string;
|
|
219
218
|
updated_at: string;
|
|
219
|
+
description: string;
|
|
220
220
|
instructions: string;
|
|
221
221
|
tool_set: Record<string, string[]>;
|
|
222
222
|
avatar: string;
|
|
@@ -225,11 +225,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
225
225
|
}>;
|
|
226
226
|
}, "strip", z.ZodTypeAny, {
|
|
227
227
|
data: {
|
|
228
|
-
description: string;
|
|
229
228
|
id: string;
|
|
230
229
|
title: string;
|
|
231
230
|
created_at: string;
|
|
232
231
|
updated_at: string;
|
|
232
|
+
description: string;
|
|
233
233
|
instructions: string;
|
|
234
234
|
tool_set: Record<string, string[]>;
|
|
235
235
|
avatar: string;
|
|
@@ -238,11 +238,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
238
238
|
};
|
|
239
239
|
}, {
|
|
240
240
|
data: {
|
|
241
|
-
description: string;
|
|
242
241
|
id: string;
|
|
243
242
|
title: string;
|
|
244
243
|
created_at: string;
|
|
245
244
|
updated_at: string;
|
|
245
|
+
description: string;
|
|
246
246
|
instructions: string;
|
|
247
247
|
tool_set: Record<string, string[]>;
|
|
248
248
|
avatar: string;
|
|
@@ -264,22 +264,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
264
264
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
265
265
|
avatar: z.ZodString;
|
|
266
266
|
}, "strip", z.ZodTypeAny, {
|
|
267
|
-
description: string;
|
|
268
267
|
id: string;
|
|
269
268
|
title: string;
|
|
270
269
|
created_at: string;
|
|
271
270
|
updated_at: string;
|
|
271
|
+
description: string;
|
|
272
272
|
instructions: string;
|
|
273
273
|
tool_set: Record<string, string[]>;
|
|
274
274
|
avatar: string;
|
|
275
275
|
created_by?: string | undefined;
|
|
276
276
|
updated_by?: string | undefined;
|
|
277
277
|
}, {
|
|
278
|
-
description: string;
|
|
279
278
|
id: string;
|
|
280
279
|
title: string;
|
|
281
280
|
created_at: string;
|
|
282
281
|
updated_at: string;
|
|
282
|
+
description: string;
|
|
283
283
|
instructions: string;
|
|
284
284
|
tool_set: Record<string, string[]>;
|
|
285
285
|
avatar: string;
|
|
@@ -288,11 +288,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
288
288
|
}>;
|
|
289
289
|
}, "strip", z.ZodTypeAny, {
|
|
290
290
|
item: {
|
|
291
|
-
description: string;
|
|
292
291
|
id: string;
|
|
293
292
|
title: string;
|
|
294
293
|
created_at: string;
|
|
295
294
|
updated_at: string;
|
|
295
|
+
description: string;
|
|
296
296
|
instructions: string;
|
|
297
297
|
tool_set: Record<string, string[]>;
|
|
298
298
|
avatar: string;
|
|
@@ -301,11 +301,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
301
301
|
};
|
|
302
302
|
}, {
|
|
303
303
|
item: {
|
|
304
|
-
description: string;
|
|
305
304
|
id: string;
|
|
306
305
|
title: string;
|
|
307
306
|
created_at: string;
|
|
308
307
|
updated_at: string;
|
|
308
|
+
description: string;
|
|
309
309
|
instructions: string;
|
|
310
310
|
tool_set: Record<string, string[]>;
|
|
311
311
|
avatar: string;
|
|
@@ -350,22 +350,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
350
350
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
351
351
|
avatar: z.ZodString;
|
|
352
352
|
}, "strip", z.ZodTypeAny, {
|
|
353
|
-
description: string;
|
|
354
353
|
id: string;
|
|
355
354
|
title: string;
|
|
356
355
|
created_at: string;
|
|
357
356
|
updated_at: string;
|
|
357
|
+
description: string;
|
|
358
358
|
instructions: string;
|
|
359
359
|
tool_set: Record<string, string[]>;
|
|
360
360
|
avatar: string;
|
|
361
361
|
created_by?: string | undefined;
|
|
362
362
|
updated_by?: string | undefined;
|
|
363
363
|
}, {
|
|
364
|
-
description: string;
|
|
365
364
|
id: string;
|
|
366
365
|
title: string;
|
|
367
366
|
created_at: string;
|
|
368
367
|
updated_at: string;
|
|
368
|
+
description: string;
|
|
369
369
|
instructions: string;
|
|
370
370
|
tool_set: Record<string, string[]>;
|
|
371
371
|
avatar: string;
|
|
@@ -374,11 +374,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
374
374
|
}>;
|
|
375
375
|
}, "strip", z.ZodTypeAny, {
|
|
376
376
|
item: {
|
|
377
|
-
description: string;
|
|
378
377
|
id: string;
|
|
379
378
|
title: string;
|
|
380
379
|
created_at: string;
|
|
381
380
|
updated_at: string;
|
|
381
|
+
description: string;
|
|
382
382
|
instructions: string;
|
|
383
383
|
tool_set: Record<string, string[]>;
|
|
384
384
|
avatar: string;
|
|
@@ -387,11 +387,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
387
387
|
};
|
|
388
388
|
}, {
|
|
389
389
|
item: {
|
|
390
|
-
description: string;
|
|
391
390
|
id: string;
|
|
392
391
|
title: string;
|
|
393
392
|
created_at: string;
|
|
394
393
|
updated_at: string;
|
|
394
|
+
description: string;
|
|
395
395
|
instructions: string;
|
|
396
396
|
tool_set: Record<string, string[]>;
|
|
397
397
|
avatar: string;
|
|
@@ -417,22 +417,22 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
417
417
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
418
418
|
avatar: z.ZodString;
|
|
419
419
|
}, "strip", z.ZodTypeAny, {
|
|
420
|
-
description: string;
|
|
421
420
|
id: string;
|
|
422
421
|
title: string;
|
|
423
422
|
created_at: string;
|
|
424
423
|
updated_at: string;
|
|
424
|
+
description: string;
|
|
425
425
|
instructions: string;
|
|
426
426
|
tool_set: Record<string, string[]>;
|
|
427
427
|
avatar: string;
|
|
428
428
|
created_by?: string | undefined;
|
|
429
429
|
updated_by?: string | undefined;
|
|
430
430
|
}, {
|
|
431
|
-
description: string;
|
|
432
431
|
id: string;
|
|
433
432
|
title: string;
|
|
434
433
|
created_at: string;
|
|
435
434
|
updated_at: string;
|
|
435
|
+
description: string;
|
|
436
436
|
instructions: string;
|
|
437
437
|
tool_set: Record<string, string[]>;
|
|
438
438
|
avatar: string;
|
|
@@ -441,11 +441,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
441
441
|
}>;
|
|
442
442
|
}, "strip", z.ZodTypeAny, {
|
|
443
443
|
item: {
|
|
444
|
-
description: string;
|
|
445
444
|
id: string;
|
|
446
445
|
title: string;
|
|
447
446
|
created_at: string;
|
|
448
447
|
updated_at: string;
|
|
448
|
+
description: string;
|
|
449
449
|
instructions: string;
|
|
450
450
|
tool_set: Record<string, string[]>;
|
|
451
451
|
avatar: string;
|
|
@@ -454,11 +454,11 @@ declare const AGENTS_COLLECTION_BINDING: ({
|
|
|
454
454
|
};
|
|
455
455
|
}, {
|
|
456
456
|
item: {
|
|
457
|
-
description: string;
|
|
458
457
|
id: string;
|
|
459
458
|
title: string;
|
|
460
459
|
created_at: string;
|
|
461
460
|
updated_at: string;
|
|
461
|
+
description: string;
|
|
462
462
|
instructions: string;
|
|
463
463
|
tool_set: Record<string, string[]>;
|
|
464
464
|
avatar: string;
|
|
@@ -495,22 +495,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
495
495
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
496
496
|
avatar: z.ZodString;
|
|
497
497
|
}, "strip", z.ZodTypeAny, {
|
|
498
|
-
description: string;
|
|
499
498
|
id: string;
|
|
500
499
|
title: string;
|
|
501
500
|
created_at: string;
|
|
502
501
|
updated_at: string;
|
|
502
|
+
description: string;
|
|
503
503
|
instructions: string;
|
|
504
504
|
tool_set: Record<string, string[]>;
|
|
505
505
|
avatar: string;
|
|
506
506
|
created_by?: string | undefined;
|
|
507
507
|
updated_by?: string | undefined;
|
|
508
508
|
}, {
|
|
509
|
-
description: string;
|
|
510
509
|
id: string;
|
|
511
510
|
title: string;
|
|
512
511
|
created_at: string;
|
|
513
512
|
updated_at: string;
|
|
513
|
+
description: string;
|
|
514
514
|
instructions: string;
|
|
515
515
|
tool_set: Record<string, string[]>;
|
|
516
516
|
avatar: string;
|
|
@@ -521,11 +521,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
521
521
|
hasMore: z.ZodOptional<z.ZodBoolean>;
|
|
522
522
|
}, "strip", z.ZodTypeAny, {
|
|
523
523
|
items: {
|
|
524
|
-
description: string;
|
|
525
524
|
id: string;
|
|
526
525
|
title: string;
|
|
527
526
|
created_at: string;
|
|
528
527
|
updated_at: string;
|
|
528
|
+
description: string;
|
|
529
529
|
instructions: string;
|
|
530
530
|
tool_set: Record<string, string[]>;
|
|
531
531
|
avatar: string;
|
|
@@ -536,11 +536,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
536
536
|
hasMore?: boolean | undefined;
|
|
537
537
|
}, {
|
|
538
538
|
items: {
|
|
539
|
-
description: string;
|
|
540
539
|
id: string;
|
|
541
540
|
title: string;
|
|
542
541
|
created_at: string;
|
|
543
542
|
updated_at: string;
|
|
543
|
+
description: string;
|
|
544
544
|
instructions: string;
|
|
545
545
|
tool_set: Record<string, string[]>;
|
|
546
546
|
avatar: string;
|
|
@@ -567,22 +567,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
567
567
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
568
568
|
avatar: z.ZodString;
|
|
569
569
|
}, "strip", z.ZodTypeAny, {
|
|
570
|
-
description: string;
|
|
571
570
|
id: string;
|
|
572
571
|
title: string;
|
|
573
572
|
created_at: string;
|
|
574
573
|
updated_at: string;
|
|
574
|
+
description: string;
|
|
575
575
|
instructions: string;
|
|
576
576
|
tool_set: Record<string, string[]>;
|
|
577
577
|
avatar: string;
|
|
578
578
|
created_by?: string | undefined;
|
|
579
579
|
updated_by?: string | undefined;
|
|
580
580
|
}, {
|
|
581
|
-
description: string;
|
|
582
581
|
id: string;
|
|
583
582
|
title: string;
|
|
584
583
|
created_at: string;
|
|
585
584
|
updated_at: string;
|
|
585
|
+
description: string;
|
|
586
586
|
instructions: string;
|
|
587
587
|
tool_set: Record<string, string[]>;
|
|
588
588
|
avatar: string;
|
|
@@ -591,11 +591,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
591
591
|
}>>;
|
|
592
592
|
}, "strip", z.ZodTypeAny, {
|
|
593
593
|
item: {
|
|
594
|
-
description: string;
|
|
595
594
|
id: string;
|
|
596
595
|
title: string;
|
|
597
596
|
created_at: string;
|
|
598
597
|
updated_at: string;
|
|
598
|
+
description: string;
|
|
599
599
|
instructions: string;
|
|
600
600
|
tool_set: Record<string, string[]>;
|
|
601
601
|
avatar: string;
|
|
@@ -604,11 +604,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
604
604
|
} | null;
|
|
605
605
|
}, {
|
|
606
606
|
item: {
|
|
607
|
-
description: string;
|
|
608
607
|
id: string;
|
|
609
608
|
title: string;
|
|
610
609
|
created_at: string;
|
|
611
610
|
updated_at: string;
|
|
611
|
+
description: string;
|
|
612
612
|
instructions: string;
|
|
613
613
|
tool_set: Record<string, string[]>;
|
|
614
614
|
avatar: string;
|
|
@@ -632,22 +632,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
632
632
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
633
633
|
avatar: z.ZodString;
|
|
634
634
|
}, "strip", z.ZodTypeAny, {
|
|
635
|
-
description: string;
|
|
636
635
|
id: string;
|
|
637
636
|
title: string;
|
|
638
637
|
created_at: string;
|
|
639
638
|
updated_at: string;
|
|
639
|
+
description: string;
|
|
640
640
|
instructions: string;
|
|
641
641
|
tool_set: Record<string, string[]>;
|
|
642
642
|
avatar: string;
|
|
643
643
|
created_by?: string | undefined;
|
|
644
644
|
updated_by?: string | undefined;
|
|
645
645
|
}, {
|
|
646
|
-
description: string;
|
|
647
646
|
id: string;
|
|
648
647
|
title: string;
|
|
649
648
|
created_at: string;
|
|
650
649
|
updated_at: string;
|
|
650
|
+
description: string;
|
|
651
651
|
instructions: string;
|
|
652
652
|
tool_set: Record<string, string[]>;
|
|
653
653
|
avatar: string;
|
|
@@ -656,11 +656,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
656
656
|
}>;
|
|
657
657
|
}, "strip", z.ZodTypeAny, {
|
|
658
658
|
data: {
|
|
659
|
-
description: string;
|
|
660
659
|
id: string;
|
|
661
660
|
title: string;
|
|
662
661
|
created_at: string;
|
|
663
662
|
updated_at: string;
|
|
663
|
+
description: string;
|
|
664
664
|
instructions: string;
|
|
665
665
|
tool_set: Record<string, string[]>;
|
|
666
666
|
avatar: string;
|
|
@@ -669,11 +669,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
669
669
|
};
|
|
670
670
|
}, {
|
|
671
671
|
data: {
|
|
672
|
-
description: string;
|
|
673
672
|
id: string;
|
|
674
673
|
title: string;
|
|
675
674
|
created_at: string;
|
|
676
675
|
updated_at: string;
|
|
676
|
+
description: string;
|
|
677
677
|
instructions: string;
|
|
678
678
|
tool_set: Record<string, string[]>;
|
|
679
679
|
avatar: string;
|
|
@@ -695,22 +695,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
695
695
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
696
696
|
avatar: z.ZodString;
|
|
697
697
|
}, "strip", z.ZodTypeAny, {
|
|
698
|
-
description: string;
|
|
699
698
|
id: string;
|
|
700
699
|
title: string;
|
|
701
700
|
created_at: string;
|
|
702
701
|
updated_at: string;
|
|
702
|
+
description: string;
|
|
703
703
|
instructions: string;
|
|
704
704
|
tool_set: Record<string, string[]>;
|
|
705
705
|
avatar: string;
|
|
706
706
|
created_by?: string | undefined;
|
|
707
707
|
updated_by?: string | undefined;
|
|
708
708
|
}, {
|
|
709
|
-
description: string;
|
|
710
709
|
id: string;
|
|
711
710
|
title: string;
|
|
712
711
|
created_at: string;
|
|
713
712
|
updated_at: string;
|
|
713
|
+
description: string;
|
|
714
714
|
instructions: string;
|
|
715
715
|
tool_set: Record<string, string[]>;
|
|
716
716
|
avatar: string;
|
|
@@ -719,11 +719,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
719
719
|
}>;
|
|
720
720
|
}, "strip", z.ZodTypeAny, {
|
|
721
721
|
item: {
|
|
722
|
-
description: string;
|
|
723
722
|
id: string;
|
|
724
723
|
title: string;
|
|
725
724
|
created_at: string;
|
|
726
725
|
updated_at: string;
|
|
726
|
+
description: string;
|
|
727
727
|
instructions: string;
|
|
728
728
|
tool_set: Record<string, string[]>;
|
|
729
729
|
avatar: string;
|
|
@@ -732,11 +732,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
732
732
|
};
|
|
733
733
|
}, {
|
|
734
734
|
item: {
|
|
735
|
-
description: string;
|
|
736
735
|
id: string;
|
|
737
736
|
title: string;
|
|
738
737
|
created_at: string;
|
|
739
738
|
updated_at: string;
|
|
739
|
+
description: string;
|
|
740
740
|
instructions: string;
|
|
741
741
|
tool_set: Record<string, string[]>;
|
|
742
742
|
avatar: string;
|
|
@@ -781,22 +781,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
781
781
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
782
782
|
avatar: z.ZodString;
|
|
783
783
|
}, "strip", z.ZodTypeAny, {
|
|
784
|
-
description: string;
|
|
785
784
|
id: string;
|
|
786
785
|
title: string;
|
|
787
786
|
created_at: string;
|
|
788
787
|
updated_at: string;
|
|
788
|
+
description: string;
|
|
789
789
|
instructions: string;
|
|
790
790
|
tool_set: Record<string, string[]>;
|
|
791
791
|
avatar: string;
|
|
792
792
|
created_by?: string | undefined;
|
|
793
793
|
updated_by?: string | undefined;
|
|
794
794
|
}, {
|
|
795
|
-
description: string;
|
|
796
795
|
id: string;
|
|
797
796
|
title: string;
|
|
798
797
|
created_at: string;
|
|
799
798
|
updated_at: string;
|
|
799
|
+
description: string;
|
|
800
800
|
instructions: string;
|
|
801
801
|
tool_set: Record<string, string[]>;
|
|
802
802
|
avatar: string;
|
|
@@ -805,11 +805,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
805
805
|
}>;
|
|
806
806
|
}, "strip", z.ZodTypeAny, {
|
|
807
807
|
item: {
|
|
808
|
-
description: string;
|
|
809
808
|
id: string;
|
|
810
809
|
title: string;
|
|
811
810
|
created_at: string;
|
|
812
811
|
updated_at: string;
|
|
812
|
+
description: string;
|
|
813
813
|
instructions: string;
|
|
814
814
|
tool_set: Record<string, string[]>;
|
|
815
815
|
avatar: string;
|
|
@@ -818,11 +818,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
818
818
|
};
|
|
819
819
|
}, {
|
|
820
820
|
item: {
|
|
821
|
-
description: string;
|
|
822
821
|
id: string;
|
|
823
822
|
title: string;
|
|
824
823
|
created_at: string;
|
|
825
824
|
updated_at: string;
|
|
825
|
+
description: string;
|
|
826
826
|
instructions: string;
|
|
827
827
|
tool_set: Record<string, string[]>;
|
|
828
828
|
avatar: string;
|
|
@@ -848,22 +848,22 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
848
848
|
tool_set: z.ZodRecord<z.ZodString, z.ZodArray<z.ZodString, "many">>;
|
|
849
849
|
avatar: z.ZodString;
|
|
850
850
|
}, "strip", z.ZodTypeAny, {
|
|
851
|
-
description: string;
|
|
852
851
|
id: string;
|
|
853
852
|
title: string;
|
|
854
853
|
created_at: string;
|
|
855
854
|
updated_at: string;
|
|
855
|
+
description: string;
|
|
856
856
|
instructions: string;
|
|
857
857
|
tool_set: Record<string, string[]>;
|
|
858
858
|
avatar: string;
|
|
859
859
|
created_by?: string | undefined;
|
|
860
860
|
updated_by?: string | undefined;
|
|
861
861
|
}, {
|
|
862
|
-
description: string;
|
|
863
862
|
id: string;
|
|
864
863
|
title: string;
|
|
865
864
|
created_at: string;
|
|
866
865
|
updated_at: string;
|
|
866
|
+
description: string;
|
|
867
867
|
instructions: string;
|
|
868
868
|
tool_set: Record<string, string[]>;
|
|
869
869
|
avatar: string;
|
|
@@ -872,11 +872,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
872
872
|
}>;
|
|
873
873
|
}, "strip", z.ZodTypeAny, {
|
|
874
874
|
item: {
|
|
875
|
-
description: string;
|
|
876
875
|
id: string;
|
|
877
876
|
title: string;
|
|
878
877
|
created_at: string;
|
|
879
878
|
updated_at: string;
|
|
879
|
+
description: string;
|
|
880
880
|
instructions: string;
|
|
881
881
|
tool_set: Record<string, string[]>;
|
|
882
882
|
avatar: string;
|
|
@@ -885,11 +885,11 @@ declare const AGENTS_BINDING: readonly ({
|
|
|
885
885
|
};
|
|
886
886
|
}, {
|
|
887
887
|
item: {
|
|
888
|
-
description: string;
|
|
889
888
|
id: string;
|
|
890
889
|
title: string;
|
|
891
890
|
created_at: string;
|
|
892
891
|
updated_at: string;
|
|
892
|
+
description: string;
|
|
893
893
|
instructions: string;
|
|
894
894
|
tool_set: Record<string, string[]>;
|
|
895
895
|
avatar: string;
|