agentxjs 2.9.0-dev-20260317060607 → 2.9.0-dev-20260317112104

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.
@@ -163,9 +163,9 @@ export interface FileTreeEntry {
163
163
  }
164
164
 
165
165
  /**
166
- * Workspace state — real-time workspace view
166
+ * OS state — real-time file tree view
167
167
  */
168
- export interface WorkspaceState {
168
+ export interface OSState {
169
169
  /**
170
170
  * Current file tree (recursive).
171
171
  * Frontend just renders this tree directly.
@@ -174,14 +174,14 @@ export interface WorkspaceState {
174
174
  }
175
175
 
176
176
  // ============================================================================
177
- // Presentation Workspace Operations
177
+ // Presentation OS Operations
178
178
  // ============================================================================
179
179
 
180
180
  /**
181
- * PresentationWorkspace — file operations exposed to the consumer.
182
- * Wraps the underlying Workspace with a simple API.
181
+ * PresentationOS — file operations exposed to the consumer.
182
+ * Wraps the underlying AgentOS with a simple API.
183
183
  */
184
- export interface PresentationWorkspace {
184
+ export interface PresentationOS {
185
185
  /** Read file content */
186
186
  read(path: string): Promise<string>;
187
187
  /** Write content to a file */
@@ -232,10 +232,10 @@ export interface PresentationState {
232
232
  metrics: PresentationMetrics;
233
233
 
234
234
  /**
235
- * Workspace state — real-time file tree.
236
- * null when agent has no workspace.
235
+ * OS state — real-time file tree.
236
+ * null when agent has no OS.
237
237
  */
238
- workspace: WorkspaceState | null;
238
+ os: OSState | null;
239
239
  }
240
240
 
241
241
  /**
@@ -262,5 +262,5 @@ export const initialPresentationState: PresentationState = {
262
262
  status: "idle",
263
263
  connection: "connected",
264
264
  metrics: initialMetrics,
265
- workspace: null,
265
+ os: null,
266
266
  };