agentuity-vscode 0.1.8 → 0.1.9

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 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.8",
5
+ "version": "0.1.9",
6
6
  "publisher": "agentuity",
7
7
  "license": "Apache-2.0",
8
8
  "repository": {
@@ -653,7 +653,7 @@
653
653
  },
654
654
  "agentuity.sandbox.defaultRemotePath": {
655
655
  "type": "string",
656
- "default": "/home/agentuity/app",
656
+ "default": "/home/agentuity",
657
657
  "description": "Default path in sandbox for synced files"
658
658
  }
659
659
  }
@@ -978,8 +978,8 @@
978
978
  },
979
979
  "remotePath": {
980
980
  "type": "string",
981
- "description": "Remote path in sandbox (default: /home/agentuity/app)",
982
- "default": "/home/agentuity/app"
981
+ "description": "Remote path in sandbox (default: /home/agentuity)",
982
+ "default": "/home/agentuity"
983
983
  },
984
984
  "respectGitignore": {
985
985
  "type": "boolean",
@@ -521,7 +521,7 @@ export class CliClient {
521
521
  }
522
522
 
523
523
  /** Default home path in sandboxes */
524
- static readonly SANDBOX_HOME = '/home/agentuity/app';
524
+ static readonly SANDBOX_HOME = '/home/agentuity';
525
525
 
526
526
  /**
527
527
  * Create a new sandbox.
@@ -1246,7 +1246,7 @@ export interface SessionLog {
1246
1246
  }
1247
1247
 
1248
1248
  // Sandbox types
1249
- export type SandboxStatus = 'creating' | 'idle' | 'running' | 'terminated' | 'failed';
1249
+ export type SandboxStatus = 'creating' | 'idle' | 'running' | 'terminated' | 'failed' | 'deleted';
1250
1250
  export type ExecutionStatus =
1251
1251
  | 'queued'
1252
1252
  | 'running'