Files
orca/src/shared/workspace-source.ts
T
Jinjing f0448fa261 Fork agent sessions from terminal context menu (#3976)
- Add a terminal action to create a top-level workspace fork with captured agent context
- Pre-mark local and SSH agent trust before launching forked Codex/Cursor/Copilot sessions
- Use remote/Linux startup behavior for SSH and WSL forks, with Windows draft size fallback
- Cover fork prompt cleanup, launch behavior, remote trust writes, and dialog busy-state tests
2026-05-30 21:20:37 -07:00

12 lines
242 B
TypeScript

export const WORKSPACE_SOURCE_VALUES = [
'command_palette',
'sidebar',
'shortcut',
'drag_drop',
'onboarding',
'terminal_context_menu',
'unknown'
] as const
export type WorkspaceSource = (typeof WORKSPACE_SOURCE_VALUES)[number]