feat: reorder Enable Orca CLI step in feature wall setup (#4722)

Co-authored-by: Orca <help@stably.ai>
This commit is contained in:
Brennan Benson
2026-06-05 14:20:33 -07:00
committed by GitHub
co-authored by Orca
parent 60e47944cd
commit 1a694ef679
2 changed files with 11 additions and 10 deletions
@@ -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'
])
})
+7 -6
View File
@@ -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