agentuity-vscode 0.1.14 → 0.1.16
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/package.json +2 -2
- package/src/core/cliClient.ts +10 -0
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "agentuity-vscode",
|
|
3
3
|
"displayName": "Agentuity VSCode Extension",
|
|
4
4
|
"description": "Build, deploy, and manage AI agents with Agentuity",
|
|
5
|
-
"version": "0.1.
|
|
5
|
+
"version": "0.1.16",
|
|
6
6
|
"publisher": "agentuity",
|
|
7
7
|
"license": "Apache-2.0",
|
|
8
8
|
"repository": {
|
|
@@ -1111,7 +1111,7 @@
|
|
|
1111
1111
|
"typecheck": "bunx tsc --noEmit",
|
|
1112
1112
|
"vscode:prepublish": "bun run build",
|
|
1113
1113
|
"package": "bunx @vscode/vsce package --no-dependencies",
|
|
1114
|
-
"clean": "rm -rf dist *.vsix"
|
|
1114
|
+
"clean": "rm -rf dist tsconfig.tsbuildinfo *.vsix"
|
|
1115
1115
|
},
|
|
1116
1116
|
"devDependencies": {
|
|
1117
1117
|
"@types/node": "^22.10.2",
|
package/src/core/cliClient.ts
CHANGED
|
@@ -1303,13 +1303,23 @@ export interface SandboxEnvResult {
|
|
|
1303
1303
|
}
|
|
1304
1304
|
|
|
1305
1305
|
// Sandbox runtime types
|
|
1306
|
+
export interface SandboxRuntimeRequirements {
|
|
1307
|
+
memory?: string;
|
|
1308
|
+
cpu?: string;
|
|
1309
|
+
disk?: string;
|
|
1310
|
+
networkEnabled: boolean;
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1306
1313
|
export interface SandboxRuntime {
|
|
1307
1314
|
id: string;
|
|
1308
1315
|
name: string;
|
|
1309
1316
|
description?: string;
|
|
1310
1317
|
iconUrl?: string;
|
|
1318
|
+
brandColor?: string;
|
|
1311
1319
|
url?: string;
|
|
1312
1320
|
tags?: string[];
|
|
1321
|
+
requirements?: SandboxRuntimeRequirements;
|
|
1322
|
+
readme?: string;
|
|
1313
1323
|
}
|
|
1314
1324
|
|
|
1315
1325
|
export interface SandboxRuntimeListParams {
|