orca/docs
Jinjing 099c4089a7
refactor(search): share rg/git-grep logic between main and relay (#1157)
Extracts rg and git-grep search logic into src/shared/text-search.ts so
the local main and SSH relay paths stop reinventing arg construction,
JSON parsing, submatch regex, and accumulator/truncation semantics.

Fixes silent truncation in the relay: searchWithRg used execFile with
a 50MB maxBuffer cap that rg --json easily exceeds on large repos,
dropping matches with no error surfaced to the user. The relay now
streams via spawn, matching the local path.

See docs/design/share-text-search.md for full rationale.

Co-authored-by: Orca <help@stably.ai>
2026-04-27 00:06:00 -07:00
..
assets docs(readme): add Annotate AI Diff feature, SSH support, and Spanish translation (#1080) 2026-04-25 00:01:53 -07:00
design refactor(search): share rg/git-grep logic between main and relay (#1157) 2026-04-27 00:06:00 -07:00
superpowers feat: add .mmd/.mermaid file viewer with rendered diagram toggle (#597) 2026-04-14 19:26:55 -07:00
README.es.md docs(readme): add Annotate AI Diff feature, SSH support, and Spanish translation (#1080) 2026-04-25 00:01:53 -07:00
README.ja.md docs(readme): add Annotate AI Diff feature, SSH support, and Spanish translation (#1080) 2026-04-25 00:01:53 -07:00
README.md
README.zh-CN.md docs(readme): add Annotate AI Diff feature, SSH support, and Spanish translation (#1080) 2026-04-25 00:01:53 -07:00
cmd-j-scoped-jump-palette-plan.md feat: add browser tab search to Cmd+J jump palette (#675) 2026-04-15 12:54:56 -07:00
codex-account-switching-design.md feat(codex-accounts): shared runtime home for account switching (#768) 2026-04-17 21:51:06 -07:00
create-from-start-field.md fix: address review findings (#1078) 2026-04-24 21:58:21 -07:00
design-379.md feat: add searchable repo picker to new worktree dialog (#559) 2026-04-12 18:50:24 -07:00
design-preserve-scroll-position.md
file-explorer-external-drop.md feat: allow dropping external files into the file explorer (#618) 2026-04-13 22:04:49 -07:00
focus-follows-mouse-design.md feat: focus-follows-mouse setting for terminal panes (#389) 2026-04-09 17:02:01 -07:00
focus-follows-mouse-plan.md feat: focus-follows-mouse setting for terminal panes (#389) 2026-04-09 17:02:01 -07:00
performance-audit.md perf: systematic performance optimizations (#623) 2026-04-14 00:28:56 -07:00
performance-implementation-plan.md perf: systematic performance optimizations (#623) 2026-04-14 00:28:56 -07:00
quickly-jump-to-worktree.md fix: address review findings (#1078) 2026-04-24 21:58:21 -07:00
split-groups-rollout-pr1.md refactor: add split group model foundations (#644) 2026-04-14 14:39:01 -07:00
split-groups-rollout-pr2.md fix: harden terminal pane lifecycle for split groups (#641) 2026-04-14 16:23:01 -07:00
split-groups-rollout-pr3.md fix: restore worktrees through tab group ownership (#645) 2026-04-14 17:01:58 -07:00
split-groups-rollout-pr4.md feat: add split group UI with tab-bar context menus and resize handles (#646) 2026-04-14 19:01:11 -07:00
split-groups-rollout-pr5.md refactor: gate split group surface ownership in Terminal.tsx (#642) 2026-04-14 20:19:11 -07:00
split-groups-rollout-pr6.md feat: enable split groups renderer path (#669) 2026-04-15 13:12:54 -07:00
tab-group-model-follow-up.md feat: add split group UI with tab-bar context menus and resize handles (#646) 2026-04-14 19:01:11 -07:00
term-shortcut-fix.md fix: audit terminal shortcut interception (#519) 2026-04-11 23:24:04 -07:00

README.md

Orca CLI Docs

Keep this folder focused on the durable references for Orca's public CLI and runtime model.

Keep These Docs

  • orca-cli-focused-v1-status.md
    • What is actually implemented and intentionally in scope now.
  • orca-cli-v1-spec.md
    • The public CLI contract, selector grammar, JSON envelope, and command semantics.
  • orca-runtime-layer-design.md
    • Why the runtime layer exists and which boundaries it owns.
  • orca-cli-bundled-distribution.md
    • How the bundled desktop-app distribution and PATH registration model works.

Why The Folder Is Small

Earlier design and implementation work produced several planning and evaluation docs. Those were useful while the feature was taking shape, but they were intentionally removed once the implementation converged so future readers are not forced to choose between multiple overlapping sources of truth.