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