| name | orca-cli |
| description | Use the `orca` CLI to drive a running Orca editor — manage Orca worktrees; create and manage scheduled automations; create, read, and run shell commands in Orca-managed terminals; and automate Orca's built-in browser (snapshot/click/fill/screenshot/tabs). Use this instead of raw `git worktree`, ad hoc shell PTYs, or Playwright whenever the task touches Orca state. Coding agents inside an Orca worktree should also use it to keep the worktree comment fresh at meaningful checkpoints. Boundary with `orchestration`: if the recipient of a terminal write is another AI agent (Claude Code, Gemini, Codex, a worker), use `orchestration` — it is the only correct way to send messages, nudges, replies, or task hand-offs to agents. orca-cli writes are for non-agent terminals (shells, build/test commands); reading or `wait`ing on any terminal — including agent terminals — stays in orca-cli. |
Orca CLI
Use this skill when the task should go through Orca's control plane rather than directly through git, shell PTYs, or ad hoc filesystem access.
Platform Note
On Linux, the CLI command is orca-ide (not orca) to avoid conflicting with GNOME Orca, the accessibility screen reader. Everywhere this document says orca <subcommand>, Linux users should substitute orca-ide <subcommand>. macOS and Windows are unaffected.
When To Use
Use orca (or orca-ide on Linux) for:
- worktree orchestration inside a running Orca app
- updating the current worktree comment with meaningful progress checkpoints
- reading Orca-managed terminals and sending input to non-agent terminals
- stopping or waiting on Orca-managed terminals
- creating and managing scheduled Orca automations
- accessing repos known to Orca
Do not use
orca / orca-ide when plain shell tools are simpler and Orca state does not matter.
Examples:
- creating one Orca worktree per GitHub issue
- updating the current worktree comment after a significant checkpoint, such as reproducing a bug, validating a fix, or handing off for review
- finding the Claude Code terminal for a worktree and reading its status
- checking which Orca worktrees have live terminal activity
- creating a scheduled automation that runs a prompt against a known repo or worktree
Preconditions
- Prefer the public
orca command first (orca-ide on Linux)
- Orca editor/runtime should already be running, or the agent should start it with
orca open
- Do not begin by inspecting Orca source files just to decide how to invoke the CLI. The first step is to check whether the installed
orca / orca-ide command exists.
- Do not assume a generic shell environment variable proves the agent is "inside Orca". For normal agent flows, the public CLI is the supported surface, but avoid wasting a round trip on probe-only checks when a direct Orca action would answer the question.
First verify the public CLI is installed:
command -v orca
command -v orca-ide
Then use the public command:
orca status --json
If the task is about Orca worktrees or Orca terminals, do this before any codebase exploration:
command -v orca
orca status --json
If the agent truly needs to confirm that the current directory is inside an Orca-managed worktree, use:
orca worktree current --json
If orca / orca-ide is not on PATH, say so explicitly and stop or ask the user to install/register the CLI before continuing.
Core Workflow
- Confirm Orca runtime availability:
orca status --json
If Orca is not running yet:
orca open --json
orca status --json
- Discover current Orca state:
orca worktree ps --json
orca terminal list --json
-
Resolve a target worktree or terminal handle.
-
Act through Orca:
worktree create/set/rm
automations list/show/create/edit/remove/run/runs
terminal read/send/wait/stop
- When the agent reaches a significant checkpoint in the current worktree, update the Orca worktree comment so the UI reflects the latest work-in-progress:
orca worktree set --worktree active --comment "reproduced auth failure with aws sts; testing credential-chain fix" --json
Why: the worktree comment is Orca's lightweight, agent-writable status field. Keeping it current gives the user an at-a-glance summary of what the agent most recently proved, changed, or is waiting on.
Command Surface
Repo
orca repo list --json
orca repo show --repo id:<repoId> --json
orca repo add --path /abs/repo --json
orca repo set-base-ref --repo id:<repoId> --ref origin/main --json
orca repo search-refs --repo id:<repoId> --query main --limit 10 --json
Worktree
orca worktree list --repo id:<repoId> --json
orca worktree ps --json
orca worktree current --json
orca worktree show --worktree id:<worktreeId> --json
orca worktree create --repo id:<repoId> --name my-task --issue 123 --comment "seed" --json
orca worktree create --repo id:<repoId> --name related-task --parent-worktree active --json
orca worktree create --repo id:<repoId> --name independent-task --no-parent --json
orca worktree set --worktree id:<worktreeId> --display-name "My Task" --json
orca worktree set --worktree active --comment "reproduced bug; collecting logs from staging" --json
orca worktree set --worktree active --comment "waiting on review" --json
orca worktree rm --worktree id:<worktreeId> --force --json
Worktree selectors supported in focused v1:
id:<worktree-id>
path:<absolute-path>
branch:<branch-name>
issue:<number>
active / current to resolve the enclosing Orca-managed worktree from the shell cwd
Worktree Lineage
Worktree lineage records intent; it is not a required flag sequence. When creating a worktree from inside an Orca-managed worktree, decide whether the new work is related to the current work or independent of it.
For related work, rely on Orca's inferred parent. Use --parent-worktree active when the current worktree relationship should be explicit or when the shell context might not make the intended parent obvious.
orca worktree create --repo id:<repoId> --name related-task --json
orca worktree create --repo id:<repoId> --name related-task --parent-worktree active --json
For independent work, pass --no-parent.
orca worktree create --repo id:<repoId> --name independent-task --no-parent --json
A different branch, issue, or name is not enough by itself to make the work independent. Treat lineage as a record of why the workspace exists, not as a property of the branch name.
Automations
orca automations list --json
orca automations show <automationId> --json
orca automations create --name "Daily review" --trigger daily --time 09:00 --prompt "Review open changes" --provider codex --repo id:<repoId> --json
orca automations create --name "Weekday triage" --trigger "0 9 * * 1-5" --prompt "Triage issues" --provider claude --repo path:/abs/repo --disabled --json
orca automations create --name "Inbox digest" --trigger hourly --prompt "Summarize unread mail" --provider codex --workspace active --reuse-session --json
orca automations edit <automationId> --name "Weekday review" --trigger weekdays --time 09:30 --fresh-session --json
orca automations run <automationId> --json
orca automations runs --id <automationId> --json
orca automations remove <automationId> --json
Automation schedules accept hourly, daily, weekdays, weekly, a 5-field cron expression, or an RRULE string. Use --time <HH:MM> with daily, weekdays, or weekly; use --day <0-6> only with weekly, where Sunday is 0.
Use --repo <selector> for a new worktree per run, or --workspace <selector> / --workspace-mode existing when the automation should run in an existing Orca worktree. --repo and --workspace are mutually exclusive.
Use --reuse-session only for existing-workspace automations when later runs should submit into the previous live automation terminal. Use --fresh-session to turn reuse back off. If the previous live terminal is gone, Orca falls back to a fresh session.
Why: automations are persisted through the running Orca runtime, so use the CLI instead of editing automation storage files directly. Prefer --disabled when creating an automation during tests or setup so it cannot run before the user reviews it.
Terminal
Use selectors to discover terminals, then use the returned handle for repeated live interaction.
orca terminal list --worktree id:<worktreeId> --json
orca terminal show --terminal <handle> --json
orca terminal read --terminal <handle> --json
orca terminal read --terminal <handle> --cursor <oldestCursor> --limit 1000 --json
orca terminal send --terminal <handle> --text "continue" --enter --json
orca terminal wait --terminal <handle> --for exit --timeout-ms 5000 --json
orca terminal wait --terminal <handle> --for tui-idle --timeout-ms 30000 --json
orca terminal stop --worktree id:<worktreeId> --json
orca terminal create --json
orca terminal create --title "My Terminal" --json
orca terminal create --worktree path:/projects/myapp --command "npm test" --json
orca terminal split --terminal <handle> --direction vertical --json
orca terminal split --terminal <handle> --direction horizontal --command "npm run dev" --json
orca terminal rename --terminal <handle> --title "New Name" --json
orca terminal switch --terminal <handle> --json
orca terminal close --terminal <handle> --json
orca terminal send --text "echo hello" --enter --json
orca terminal read --json
Why: --terminal is optional for most commands. When omitted, Orca auto-resolves to the active terminal in the current worktree (same as browser commands target the active tab). Use explicit --terminal <handle> when operating on a specific pane.
Why: terminal create creates a background session unless --focus is explicit. Interactive local agent commands such as bare codex or bare claude use Orca's renderer-backed terminal path so they can start at the app's measured terminal geometry without stealing focus from the user.
Why: long terminal transcripts should be read with cursors. After a limited tail preview without an input cursor, page retained transcript from oldestCursor; in that case nextCursor already equals latestCursor and would skip omitted output. After a cursor read, if limited remains true and nextCursor !== latestCursor, continue with the returned nextCursor. Cursor reads default to the retained transcript size; --limit can request a smaller page. If truncated is true, older output has already fallen out of the retained buffer; use oldestCursor as the earliest available cursor.
Why: terminal handles are runtime-scoped and may go stale after reloads. If Orca returns terminal_handle_stale, reacquire a fresh handle with terminal list.
Why: --direction horizontal splits the pane left and right (new pane appears to the right). --direction vertical splits the pane top and bottom (new pane appears below). This matches VS Code's split convention. Default is horizontal.
Agent Guidance
- If the user says to create/manage an Orca worktree, use
orca worktree ..., not raw git worktree ....
- If the user says to create/manage a scheduled Orca automation, use
orca automations ..., not direct persistence edits.
- Treat Orca as the source of truth for Orca worktree and terminal tasks. Do not mix Orca-managed state with ad hoc git worktree commands unless Orca explicitly cannot perform the requested action.
- Prefer
--json for all machine-driven use.
- Use
worktree ps as the first summary view when many worktrees may exist.
- Use
worktree current or --worktree active when the agent is already running inside the target worktree.
- When creating a worktree from an existing workspace, choose lineage based on intent: related work should keep parent context, independent work should use
--no-parent.
- Let Orca infer the parent when the current/caller workspace is the right parent; use
--parent-worktree active when making that relationship explicit is useful.
- Treat
orca worktree set --worktree active --comment ... --json as a default coding-agent behavior whenever the agent reaches a meaningful checkpoint in the current Orca-managed worktree; the user does not need to explicitly ask for each update.
- Update the worktree comment at significant checkpoints, not every trivial command. Good checkpoints include reproducing a bug, confirming a hypothesis, starting a risky migration, finishing a meaningful implementation slice, switching from investigation to fix, or blocking on external input.
- Write comments as short status snapshots of the current state, for example
debugging AWS CLI profile resolution, confirmed flaky test is caused by temp-dir race, or fix implemented; running integration tests.
- Prefer optimistic execution over probe-first flows for checkpoint updates: if
orca (or orca-ide on Linux) is on PATH, call orca worktree set --worktree active --comment ... --json directly at the checkpoint instead of spending an extra cycle on orca worktree current.
- If that direct update fails because Orca is unavailable or the shell is not inside an Orca-managed worktree, continue the main task and treat the comment update as best-effort unless the user explicitly made Orca state part of the task.
- Use
orca worktree current --json only when the agent actually needs the worktree identity for later logic, not as a preflight before every comment update.
- Orca only injects
ORCA_WORKTREE_PATH-style variables for some setup-hook flows, so they are not a general detection contract for agents.
- Use
terminal list to reacquire handles after Orca reloads.
- Use
terminal read before terminal send unless the next input is obvious.
- For long agent responses, use
terminal read --json with oldestCursor, nextCursor, --cursor, and --limit instead of relying on the default human preview. After a limited tail preview, start at oldestCursor; after a cursor read, continue with nextCursor only while limited is true and nextCursor !== latestCursor. Treat truncated as a signal that the requested cursor was older than the retained output.
- Use
terminal wait --terminal <handle> --for exit only when the task actually depends on process completion.
- Use
terminal wait --terminal <handle> --for tui-idle to wait for an agent CLI (Claude Code, Gemini, Codex, etc.) to finish its current task. This detects the working→idle OSC title transition. Always pass --timeout-ms as a safety net — unsupported CLIs will hang until timeout.
- Use
terminal create to spin up new terminal tabs programmatically, optionally with a --command for startup (e.g. --command "claude" to launch Claude Code) and --title for labeling. In local Orca sessions, --command "codex" is routed through Orca's visible terminal path automatically so Codex does not start as a headless/background PTY. After creating a --command terminal, use terminal wait --for tui-idle to wait for the agent to boot before dispatching.
- Use
terminal split to create split panes within an existing terminal tab. Pass --command to run a command in the new pane.
- Prefer Orca worktree selectors over hardcoded paths when Orca identity already exists.
- If the user asks for CLI UX feedback, test the public
orca / orca-ide command first. Only inspect src/cli or use node out/cli/index.js if the public command is missing or the task is explicitly about implementation internals.
- If a command fails, prefer retrying with the public
orca / orca-ide command before concluding the CLI is broken, unless the failure already came from the CLI itself.
Browser Automation
The orca CLI (or orca-ide on Linux) also drives the built-in Orca browser. The core workflow is a snapshot-interact-re-snapshot loop:
- Snapshot the page to see interactive elements and their refs.
- Interact using refs (
@e1, @e3, etc.) to click, fill, or select.
- Re-snapshot after interactions to see the updated page state.
orca goto --url https://example.com --json
orca snapshot --json
orca click --element @e3 --json
orca snapshot --json
Element Refs
Refs like @e1, @e5 are short identifiers assigned to interactive page elements during a snapshot. They are:
- Assigned by snapshot: Run
orca snapshot to get current refs.
- Scoped to one tab: Refs from one tab are not valid in another.
- Invalidated by navigation: If the page navigates after a snapshot, refs become stale. Re-snapshot to get fresh refs.
- Invalidated by tab switch: Switching tabs with
orca tab switch invalidates refs. Re-snapshot after switching.
If a ref is stale, the command returns browser_stale_ref — re-snapshot and retry.
Worktree Scoping
Browser commands default to the current worktree — only tabs belonging to the agent's worktree are visible and targetable. Tab indices are relative to the filtered tab list.
orca snapshot --json
orca snapshot --worktree all --json
orca tab list --json
orca tab switch --index 1 --json
If no tabs are open in the current worktree, commands return browser_no_tab.
Stable Page Targeting
For single-agent flows, bare browser commands are fine: Orca will target the active browser tab in the current worktree.
For concurrent or multi-process browser automation, prefer a stable page id instead of ambient active-tab state:
- Run
orca tab list --json.
- Read
tabs[].browserPageId from the result.
- Pass
--page <browserPageId> to follow-up commands like snapshot, click, goto, screenshot, tab switch, or tab close.
Why: active-tab state and tab indices can change while another Orca CLI process is working. browserPageId pins the command to one concrete tab.
orca tab list --json
orca snapshot --page page-123 --json
orca click --page page-123 --element @e3 --json
orca screenshot --page page-123 --json
orca tab switch --page page-123 --json
orca tab close --page page-123 --json
If you also pass --worktree, Orca treats it as extra scoping/validation for that page id. Without --page, commands still fall back to the current worktree's active tab.
Navigation
orca goto --url <url> [--json]
orca back [--json]
orca forward [--json]
orca reload [--json]
Observation
orca snapshot [--page <browserPageId>] [--json]
orca screenshot [--page <browserPageId>] [--format <png|jpeg>] [--json]
orca full-screenshot [--page <browserPageId>] [--format <png|jpeg>] [--json]
orca pdf [--page <browserPageId>] [--json]
Interaction
orca click --element <ref> [--page <browserPageId>] [--json]
orca dblclick --element <ref> [--page <browserPageId>] [--json]
orca fill --element <ref> --value <text> [--page <browserPageId>] [--json]
orca type --input <text> [--page <browserPageId>] [--json]
orca select --element <ref> --value <value> [--page <browserPageId>] [--json]
orca check --element <ref> [--page <browserPageId>] [--json]
orca uncheck --element <ref> [--page <browserPageId>] [--json]
orca scroll --direction <up|down> [--amount <pixels>] [--page <browserPageId>] [--json]
orca scrollintoview --element <ref> [--page <browserPageId>] [--json]
orca hover --element <ref> [--page <browserPageId>] [--json]
orca focus --element <ref> [--page <browserPageId>] [--json]
orca drag --from <ref> --to <ref> [--page <browserPageId>] [--json]
orca clear --element <ref> [--page <browserPageId>] [--json]
orca select-all --element <ref> [--page <browserPageId>] [--json]
orca keypress --key <key> [--page <browserPageId>] [--json]
orca upload --element <ref> --files <paths> [--page <browserPageId>] [--json]
Tab Management
orca tab list [--json]
orca tab switch (--index <n> | --page <browserPageId>) [--json]
orca tab create [--url <url>] [--json]
orca tab close [--index <n> | --page <browserPageId>] [--json]
Wait / Synchronization
orca wait [--timeout <ms>] [--json]
orca wait --selector <css> [--state <visible|hidden>] [--timeout <ms>] [--json]
orca wait --text <string> [--timeout <ms>] [--json]
orca wait --url <substring> [--timeout <ms>] [--json]
orca wait --load <networkidle|load|domcontentloaded> [--timeout <ms>] [--json]
orca wait --fn <js-expression> [--timeout <ms>] [--json]
After any page-changing action, pick one:
- Wait for specific content:
orca wait --text "Dashboard" --json
- Wait for URL change:
orca wait --url "/dashboard" --json
- Wait for network idle (catch-all for SPA navigation):
orca wait --load networkidle --json
- Wait for an element:
orca wait --selector ".results" --json
Avoid bare orca wait --timeout 2000 except when debugging — it makes scripts slow and flaky.
Data Extraction
orca exec --command "get text @e1" [--json]
orca exec --command "get html @e1" [--json]
orca exec --command "get value @e1" [--json]
orca exec --command "get attr @e1 href" [--json]
orca exec --command "get title" [--json]
orca exec --command "get url" [--json]
orca exec --command "get count .item" [--json]
State Checks
orca exec --command "is visible @e1" [--json]
orca exec --command "is enabled @e1" [--json]
orca exec --command "is checked @e1" [--json]
Page Inspection
orca eval --expression <js> [--json]
Cookie Management
orca cookie get [--url <url>] [--json]
orca cookie set --name <n> --value <v> [--domain <d>] [--json]
orca cookie delete --name <n> [--domain <d>] [--json]
Emulation
orca viewport --width <w> --height <h> [--scale <n>] [--mobile] [--json]
orca geolocation --latitude <lat> --longitude <lng> [--accuracy <m>] [--json]
Request Interception
orca intercept enable [--patterns <list>] [--json]
orca intercept disable [--json]
orca intercept list [--json]
Note: Per-request intercept continue and intercept block are not yet supported.
They will be added once agent-browser supports per-request interception decisions.
Console / Network Capture
orca capture start [--json]
orca capture stop [--json]
orca console [--limit <n>] [--json]
orca network [--limit <n>] [--json]
Mouse Control
orca exec --command "mouse move 100 200" [--json]
orca exec --command "mouse down left" [--json]
orca exec --command "mouse up left" [--json]
orca exec --command "mouse wheel 100" [--json]
Keyboard
orca exec --command "keyboard inserttext \"text\"" [--json]
orca exec --command "keyboard type \"text\"" [--json]
orca exec --command "keydown Shift" [--json]
orca exec --command "keyup Shift" [--json]
Frames (Iframes)
Iframes are auto-inlined in snapshots — refs inside iframes work transparently. For scoped interaction:
orca exec --command "frame @e3" [--json]
orca exec --command "frame \"#iframe\"" [--json]
orca exec --command "frame main" [--json]
Semantic Locators (alternative to refs)
When refs aren't available or you want to skip a snapshot:
orca exec --command "find role button click --name \"Submit\"" [--json]
orca exec --command "find text \"Sign In\" click" [--json]
orca exec --command "find label \"Email\" fill \"user@test.com\"" [--json]
orca exec --command "find placeholder \"Search\" type \"query\"" [--json]
orca exec --command "find testid \"submit-btn\" click" [--json]
Dialogs
alert and beforeunload are auto-accepted. For confirm and prompt:
orca exec --command "dialog status" [--json]
orca exec --command "dialog accept" [--json]
orca exec --command "dialog accept \"text\"" [--json]
orca exec --command "dialog dismiss" [--json]
Extended Commands (Passthrough)
orca exec --command "<agent-browser command>" [--json]
The exec command provides access to agent-browser's full command surface. Useful for commands without typed Orca handlers:
orca exec --command "set device \"iPhone 14\"" --json
orca exec --command "set offline on" --json
orca exec --command "set media dark" --json
orca exec --command "network requests" --json
orca exec --command "help" --json
Important: Do not use orca exec --command "tab ..." for tab management. Use orca tab list/create/close/switch instead — those operate at the Orca level and keep the UI synchronized.
fill vs type
fill targets a specific element by ref, clears its value first, then enters text. Use for form fields.
type types at whatever currently has focus. Use for search boxes or after clicking into an input.
If neither works on a custom input component, try:
orca focus --element @e1 --json
orca exec --command "keyboard inserttext \"text\"" --json
Browser Error Codes
| Error Code | Meaning | Recovery |
|---|
browser_no_tab | No browser tab is open in this worktree | Open a tab, or use --worktree all to check other worktrees |
browser_stale_ref | Ref is invalid (page changed since snapshot) | Run orca snapshot to get fresh refs |
browser_tab_not_found | Tab index does not exist | Run orca tab list to see available tabs |
browser_error | Error from the browser automation engine | Read the message for details; common causes: element not found, navigation timeout, JS error |
Browser Worked Example
Agent fills a login form and verifies the dashboard loads:
orca goto --url https://app.example.com/login --json
orca snapshot --json
orca fill --element @e1 --value "user@example.com" --json
orca fill --element @e2 --value "s3cret" --json
orca click --element @e3 --json
orca snapshot --json
Browser Troubleshooting
"Ref not found" / browser_stale_ref
Page changed since the snapshot. Run orca snapshot --json again, then use the new refs.
Element exists but not in snapshot
It may be off-screen or not yet rendered. Try:
orca scroll --direction down --amount 1000 --json
orca snapshot --json
orca wait --text "..." --json
orca snapshot --json
Click does nothing / overlay swallows the click
Modals or cookie banners may be blocking. Snapshot, find the dismiss button, click it, then re-snapshot.
Fill/type doesn't work on a custom input
Some components intercept key events. Use keyboard inserttext:
orca focus --element @e1 --json
orca exec --command "keyboard inserttext \"text\"" --json
browser_no_tab error
No browser tab is open in the current worktree. Open one with orca tab create --url <url> --json.
Auto-Switch Worktree
Browser commands automatically activate the target worktree in the Orca UI when needed. If the agent issues a browser command targeting a worktree that isn't currently active, Orca will switch to that worktree before executing the command.
Tab Create Auto-Activation
When orca tab create opens a new tab, it is automatically set as the active tab for the worktree. Subsequent commands (snapshot, click, etc.) will target the newly created tab without needing an explicit tab switch.
Browser Agent Guidance
- Always snapshot before interacting with elements.
- After navigation (
goto, back, reload, clicking a link), re-snapshot to get fresh refs.
- After switching tabs, re-snapshot.
- If you get
browser_stale_ref, re-snapshot and retry with the new refs.
- Use
orca tab list before orca tab switch to know which tabs exist.
- For concurrent browser workflows, prefer
orca tab list --json and reuse tabs[].browserPageId with --page on later commands.
- Use
orca wait to synchronize after actions that trigger async updates (form submits, SPA navigation, modals) instead of arbitrary sleeps.
- Use
orca eval as an escape hatch for interactions not covered by other commands.
- Use
orca exec --command "help" to discover extended commands.
- Worktree scoping is automatic — you'll only see tabs from your worktree by default.
- Bare browser commands without
--page still target the current worktree's active tab, which is convenient but less robust for multi-process automation.
- Tab creation auto-activates the new tab — no need for
tab switch after tab create.
- Browser commands auto-switch the active worktree if needed — no manual worktree activation required.
Important Constraints
- Orca CLI only talks to a running Orca editor.
- Terminal handles are ephemeral and tied to the current Orca runtime. If Orca restarts, handles change.
terminal wait supports --for exit (wait for process exit) and --for tui-idle (wait for a recognized agent CLI like Claude Code, Gemini, or Codex to finish its current task, detected via OSC title transitions). tui-idle defaults to a 5-minute timeout if --timeout-ms is not specified. Real coding tasks routinely take 15-60 minutes — always pass --timeout-ms explicitly.
- Orca is the source of truth for worktree/terminal state; do not duplicate that state with manual assumptions.
- The public
orca command (orca-ide on Linux) is the interface users experience. Agents should validate and use that surface, not repo-local implementation entrypoints.
- The default bounded
terminal read preview is for status monitoring. For retained transcript extraction, use terminal read --json with oldestCursor/nextCursor, --cursor, and --limit.
References
See these docs in this repo when behavior is unclear:
docs/orca-cli-focused-v1-status.md
docs/orca-cli-v1-spec.md
docs/orca-runtime-layer-design.md