From 1a694ef6799b856c356652bfd39e5a69ef9521ff Mon Sep 17 00:00:00 2001 From: Brennan Benson <79079362+brennanb2025@users.noreply.github.com> Date: Fri, 5 Jun 2026 14:20:33 -0700 Subject: [PATCH] feat: reorder Enable Orca CLI step in feature wall setup (#4722) Co-authored-by: Orca --- .../feature-wall-setup-progress.test.ts | 8 ++++---- src/shared/feature-wall-setup-steps.ts | 13 +++++++------ 2 files changed, 11 insertions(+), 10 deletions(-) diff --git a/src/renderer/src/components/feature-wall/feature-wall-setup-progress.test.ts b/src/renderer/src/components/feature-wall/feature-wall-setup-progress.test.ts index e5718677ace..38df2683ca3 100644 --- a/src/renderer/src/components/feature-wall/feature-wall-setup-progress.test.ts +++ b/src/renderer/src/components/feature-wall/feature-wall-setup-progress.test.ts @@ -73,10 +73,10 @@ describe('getFeatureWallSetupProgress', () => { 'two-worktrees', 'notifications', 'default-agent', + 'agent-capabilities', 'task-sources', 'setup-script', - 'add-two-repos', - 'agent-capabilities' + 'add-two-repos' ]) }) @@ -88,10 +88,10 @@ describe('getFeatureWallSetupProgress', () => { expect(getFeatureWallSetupStepsForSection('setup').map((step) => step.id)).toEqual([ 'notifications', 'default-agent', + 'agent-capabilities', 'task-sources', 'setup-script', - 'add-two-repos', - 'agent-capabilities' + 'add-two-repos' ]) }) diff --git a/src/shared/feature-wall-setup-steps.ts b/src/shared/feature-wall-setup-steps.ts index aa0d7365575..c624a4dcda4 100644 --- a/src/shared/feature-wall-setup-steps.ts +++ b/src/shared/feature-wall-setup-steps.ts @@ -49,6 +49,13 @@ export const FEATURE_WALL_SETUP_STEPS: readonly FeatureWallSetupStep[] = [ subtitle: 'Choose your default agent', description: 'Start new work faster with your preferred agent already selected.' }, + { + id: 'agent-capabilities', + name: 'Enable Orca CLI', + subtitle: 'Enable Orca CLI', + description: + 'Register the Orca shell command and install agent skills for browser, computer, and orchestration workflows.' + }, { id: 'task-sources', name: 'Connect integrations', @@ -68,12 +75,6 @@ export const FEATURE_WALL_SETUP_STEPS: readonly FeatureWallSetupStep[] = [ subtitle: 'Start work in multiple repos', description: 'Bring your key repos into Orca so you can start agent work without hunting for folders.' - }, - { - id: 'agent-capabilities', - name: 'Enable Orca CLI', - subtitle: 'Enable Orca CLI', - description: 'Let agents use the browser, computer, and orchestration tools.' } ] as const