feat: rename AI builder to "Flow Assist" and add sidebar nav item

- Rename all "Build with AI" labels to "Flow Assist"
- Update CreateFlowDropdown description to "AI-powered flow builder"
- Add Flow Assist nav item with Sparkles icon to sidebar (both
  expanded and collapsed states)
- Update AIFlowBuilderModal titles for consistency

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-02-28 10:55:51 -05:00
parent 1f404a20ca
commit 2196886cd2
6 changed files with 12 additions and 10 deletions

View File

@@ -98,7 +98,7 @@ export function AIFlowBuilderModal({ isOpen, onClose }: AIFlowBuilderModalProps)
const getTitle = () => {
switch (phase) {
case 'foundation':
return 'Build with AI'
return 'Flow Assist'
case 'scaffolding':
case 'generating':
return 'AI Scaffold'
@@ -107,9 +107,9 @@ export function AIFlowBuilderModal({ isOpen, onClose }: AIFlowBuilderModalProps)
case 'reviewing':
return 'Review & Assemble'
case 'error':
return 'AI Flow Builder'
return 'Flow Assist'
default:
return 'Build with AI'
return 'Flow Assist'
}
}