mirror of
https://github.com/stablyai/orca.git
synced 2026-09-22 16:02:32 +00:00
- 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
12 lines
242 B
TypeScript
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]
|