@dreb/coding-agent 2.55.3 → 2.55.5

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.
@@ -397,6 +397,11 @@ export declare class AgentSession {
397
397
  get sessionId(): string;
398
398
  /** Current session display name, if set */
399
399
  get sessionName(): string | undefined;
400
+ /**
401
+ * UI surface this session was launched for (e.g. "tui", "rpc", "dashboard",
402
+ * "agent", "cli"), from the --ui flag or the mode-based default.
403
+ */
404
+ get uiType(): string | undefined;
400
405
  /** Scoped models for cycling (from --models flag) */
401
406
  get scopedModels(): ReadonlyArray<{
402
407
  model: Model<any>;