feat(v3): agent preview terminal — read-only xterm.js tracking agent activity
This commit is contained in:
parent
975f03e75d
commit
90c1fb94e2
4 changed files with 245 additions and 9 deletions
|
|
@ -7,9 +7,11 @@ export type WorkspaceTab = 'sessions' | 'docs' | 'context' | 'settings';
|
|||
export interface TerminalTab {
|
||||
id: string;
|
||||
title: string;
|
||||
type: 'shell' | 'ssh' | 'agent-terminal';
|
||||
type: 'shell' | 'ssh' | 'agent-terminal' | 'agent-preview';
|
||||
/** SSH session ID if type === 'ssh' */
|
||||
sshSessionId?: string;
|
||||
/** Agent session ID if type === 'agent-preview' */
|
||||
agentSessionId?: string;
|
||||
}
|
||||
|
||||
// --- Core state ---
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue