@runtypelabs/cli 2.22.10 → 2.22.11
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/index.js +22 -3
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -35752,7 +35752,7 @@ var CORE_BUILTIN_TOOLS_REGISTRY = [
|
|
|
35752
35752
|
{
|
|
35753
35753
|
id: "bash",
|
|
35754
35754
|
name: "Bash",
|
|
35755
|
-
description: "Run a shell command on your Linux computer (Node 22, Python 3.12, git, pnpm, uv preinstalled). Commands run in /workspace; files you write there
|
|
35755
|
+
description: "Run a shell command on your Linux computer (Node 22, Python 3.12, git, pnpm, uv preinstalled). Commands run in /workspace; files you write there are available to later commands, but system-level changes outside /workspace may not persist. Combined stdout/stderr is returned. Long output is truncated (head + tail) with the full output spilled to a file. Pass slow_ok=true for commands that take a while (installs, builds, test suites).",
|
|
35756
35756
|
category: BuiltInToolCategory.SANDBOX,
|
|
35757
35757
|
toolGroup: BuiltInToolGroup.SANDBOX_AGENT,
|
|
35758
35758
|
providers: [BuiltInToolProvider.MULTI],
|
|
@@ -39335,6 +39335,17 @@ var MANUAL_PROVIDER_MAP_OVERRIDES = {
|
|
|
39335
39335
|
"glm-5.2": {
|
|
39336
39336
|
"workers-ai": "@cf/zai-org/glm-5.2"
|
|
39337
39337
|
},
|
|
39338
|
+
// Alias + gateway/catalog id forms share the same provider-specific ids so
|
|
39339
|
+
// every form routes Workers-AI-primary (`@cf/zai-org/glm-5.2`) with the Vercel
|
|
39340
|
+
// gateway listing (`zai/glm-5.2`) as fallback.
|
|
39341
|
+
"glm-5-2": {
|
|
39342
|
+
"workers-ai": "@cf/zai-org/glm-5.2",
|
|
39343
|
+
"vercel": "zai/glm-5.2"
|
|
39344
|
+
},
|
|
39345
|
+
"zai/glm-5.2": {
|
|
39346
|
+
"workers-ai": "@cf/zai-org/glm-5.2",
|
|
39347
|
+
"vercel": "zai/glm-5.2"
|
|
39348
|
+
},
|
|
39338
39349
|
// MiniMax M2.7: explicit provider IDs for the GC-primary / Vercel-fallback route.
|
|
39339
39350
|
// `general-compute` is NOT in PROVIDERS_WITHOUT_PREFIX, so resolveRoutedFamily
|
|
39340
39351
|
// prepends `general-compute/` itself — store the BARE id here to avoid a double
|
|
@@ -43687,6 +43698,12 @@ var DispatchRequestSchema = external_exports.object({
|
|
|
43687
43698
|
content: MessageContentSchema
|
|
43688
43699
|
})
|
|
43689
43700
|
).optional(),
|
|
43701
|
+
/**
|
|
43702
|
+
* Stable caller-provided conversation/session id. Used to scope
|
|
43703
|
+
* conversation-persistent agent sandbox workspaces and other per-turn caches
|
|
43704
|
+
* across separate dispatch requests without leaking across unrelated chats.
|
|
43705
|
+
*/
|
|
43706
|
+
conversationId: external_exports.string().min(1).optional(),
|
|
43690
43707
|
/**
|
|
43691
43708
|
* Per-dispatch client tools. The page (or any SDK caller) snapshots its
|
|
43692
43709
|
* locally-executable tools at the start of every user turn and ships
|
|
@@ -43837,6 +43854,8 @@ var SANDBOX_TTL_OPTIONS = [
|
|
|
43837
43854
|
{ label: "2 hours", value: 2 * 60 * 60 },
|
|
43838
43855
|
{ label: "Unlimited", value: null }
|
|
43839
43856
|
];
|
|
43857
|
+
var SANDBOX_RETENTION_DEFAULT_SECONDS = 60 * 60;
|
|
43858
|
+
var SANDBOX_BACKUP_UNLIMITED_TTL_SECONDS = 365 * 24 * 60 * 60;
|
|
43840
43859
|
var APP_MANIFEST_LIMITS = {
|
|
43841
43860
|
nameMaxLength: 255,
|
|
43842
43861
|
maxFlows: 20,
|
|
@@ -64885,8 +64904,8 @@ import { execFileSync } from "child_process";
|
|
|
64885
64904
|
// src/lib/persona-init.ts
|
|
64886
64905
|
init_credential_store();
|
|
64887
64906
|
|
|
64888
|
-
// ../../node_modules/.pnpm/@runtypelabs+persona@4.
|
|
64889
|
-
var S = "4.
|
|
64907
|
+
// ../../node_modules/.pnpm/@runtypelabs+persona@4.2.0/node_modules/@runtypelabs/persona/dist/codegen.js
|
|
64908
|
+
var S = "4.2.0";
|
|
64890
64909
|
var c = S;
|
|
64891
64910
|
function u(e) {
|
|
64892
64911
|
if (e !== void 0) return typeof e == "string" ? e : Array.isArray(e) ? `[${e.map((r) => r.toString()).join(", ")}]` : e.toString();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runtypelabs/cli",
|
|
3
|
-
"version": "2.22.
|
|
3
|
+
"version": "2.22.11",
|
|
4
4
|
"description": "Command-line interface for Runtype AI platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@runtypelabs/terminal-animations": "0.2.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@runtypelabs/persona": "4.
|
|
31
|
+
"@runtypelabs/persona": "4.2.0",
|
|
32
32
|
"@types/express": "^5.0.6",
|
|
33
33
|
"@types/micromatch": "^4.0.9",
|
|
34
34
|
"@types/node": "^25.3.3",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"tsx": "^4.7.1",
|
|
40
40
|
"typescript": "^5.3.3",
|
|
41
41
|
"vitest": "^4.1.0",
|
|
42
|
-
"@runtypelabs/shared": "1.
|
|
42
|
+
"@runtypelabs/shared": "1.41.2"
|
|
43
43
|
},
|
|
44
44
|
"engines": {
|
|
45
45
|
"node": ">=22.0.0"
|