@botpress/adk-cli 1.15.4 → 1.16.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.
- package/dist/cli.js +14116 -12291
- package/dist/commands.json +67 -2
- package/package.json +5 -3
package/dist/commands.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.
|
|
3
|
-
"generatedAt": "2026-03-
|
|
2
|
+
"version": "1.16.1",
|
|
3
|
+
"generatedAt": "2026-03-05T22:05:01.378Z",
|
|
4
4
|
"cliName": "adk",
|
|
5
5
|
"globalOptions": [
|
|
6
6
|
{
|
|
@@ -226,6 +226,46 @@
|
|
|
226
226
|
}
|
|
227
227
|
]
|
|
228
228
|
},
|
|
229
|
+
{
|
|
230
|
+
"name": "evals",
|
|
231
|
+
"fullName": "evals",
|
|
232
|
+
"description": "Run and manage eval suites",
|
|
233
|
+
"aliases": [],
|
|
234
|
+
"arguments": [],
|
|
235
|
+
"options": []
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
"name": "runs",
|
|
239
|
+
"fullName": "evals runs",
|
|
240
|
+
"description": "List or show eval run history",
|
|
241
|
+
"aliases": [],
|
|
242
|
+
"arguments": [
|
|
243
|
+
{
|
|
244
|
+
"name": "runId",
|
|
245
|
+
"description": "Show a specific run by ID",
|
|
246
|
+
"required": false
|
|
247
|
+
}
|
|
248
|
+
],
|
|
249
|
+
"options": [
|
|
250
|
+
{
|
|
251
|
+
"flags": "--latest",
|
|
252
|
+
"description": "Show the latest run"
|
|
253
|
+
},
|
|
254
|
+
{
|
|
255
|
+
"flags": "--limit <n>",
|
|
256
|
+
"description": "Max runs to list",
|
|
257
|
+
"defaultValue": "10"
|
|
258
|
+
},
|
|
259
|
+
{
|
|
260
|
+
"flags": "-v, --verbose",
|
|
261
|
+
"description": "Show full details for all evals in a run"
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
"flags": "--json",
|
|
265
|
+
"description": "Output results as JSON"
|
|
266
|
+
}
|
|
267
|
+
]
|
|
268
|
+
},
|
|
229
269
|
{
|
|
230
270
|
"name": "info",
|
|
231
271
|
"fullName": "info",
|
|
@@ -278,6 +318,18 @@
|
|
|
278
318
|
{
|
|
279
319
|
"flags": "-t, --template <template>",
|
|
280
320
|
"description": "template to use (default: blank)"
|
|
321
|
+
},
|
|
322
|
+
{
|
|
323
|
+
"flags": "-y, --yes",
|
|
324
|
+
"description": "skip prompts and use sensible defaults"
|
|
325
|
+
},
|
|
326
|
+
{
|
|
327
|
+
"flags": "--defaults",
|
|
328
|
+
"description": "alias for --yes"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"flags": "--skip-link",
|
|
332
|
+
"description": "skip the interactive linking step"
|
|
281
333
|
}
|
|
282
334
|
]
|
|
283
335
|
},
|
|
@@ -562,6 +614,19 @@
|
|
|
562
614
|
}
|
|
563
615
|
]
|
|
564
616
|
},
|
|
617
|
+
{
|
|
618
|
+
"name": "theme",
|
|
619
|
+
"fullName": "theme",
|
|
620
|
+
"description": "Manage CLI theme preferences",
|
|
621
|
+
"aliases": [],
|
|
622
|
+
"arguments": [],
|
|
623
|
+
"options": [
|
|
624
|
+
{
|
|
625
|
+
"flags": "--set <theme>",
|
|
626
|
+
"description": "set theme (dark or light)"
|
|
627
|
+
}
|
|
628
|
+
]
|
|
629
|
+
},
|
|
565
630
|
{
|
|
566
631
|
"name": "upgrade",
|
|
567
632
|
"fullName": "upgrade",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@botpress/adk-cli",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.1",
|
|
4
4
|
"description": "Command-line interface for the Botpress Agent Development Kit (ADK)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -41,10 +41,11 @@
|
|
|
41
41
|
"url": "https://github.com/botpress/adk"
|
|
42
42
|
},
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@botpress/adk": "^1.
|
|
44
|
+
"@botpress/adk": "^1.16.1",
|
|
45
|
+
"@botpress/chat": "^0.5.5",
|
|
45
46
|
"@botpress/cli": "^5.2.0",
|
|
46
47
|
"@botpress/client": "^1.35.0",
|
|
47
|
-
"@botpress/runtime": "^1.
|
|
48
|
+
"@botpress/runtime": "^1.16.1",
|
|
48
49
|
"@botpress/sdk": "^5.4.3",
|
|
49
50
|
"@botpress/webchat-client": "^0.4.0",
|
|
50
51
|
"@modelcontextprotocol/sdk": "^1.25.1",
|
|
@@ -57,6 +58,7 @@
|
|
|
57
58
|
"glob": "^11.1.0",
|
|
58
59
|
"highlight.js": "^11.10.0",
|
|
59
60
|
"ink": "^6.5.1",
|
|
61
|
+
"jsonc-parser": "^3.3.1",
|
|
60
62
|
"open": "^10.2.0",
|
|
61
63
|
"posthog-node": "^5.17.4",
|
|
62
64
|
"prettier": "^3.7.4",
|