diff --git a/frontend/src/components/layout/CommandPalette.tsx b/frontend/src/components/layout/CommandPalette.tsx index a83f8e28..26ebf05b 100644 --- a/frontend/src/components/layout/CommandPalette.tsx +++ b/frontend/src/components/layout/CommandPalette.tsx @@ -42,7 +42,7 @@ const PAGES: PaletteItem[] = [ { id: 'page-dashboard', group: 'pages', title: 'Dashboard', path: '/', icon: 'page' }, { id: 'page-flows', group: 'pages', title: 'All Flows', subtitle: 'Browse your flow library', path: '/trees', icon: 'page' }, { id: 'page-sessions', group: 'pages', title: 'Sessions', subtitle: 'View session history', path: '/sessions', icon: 'page' }, - { id: 'page-assistant', group: 'pages', title: 'AI Assistant', subtitle: 'FlowPilot chat', path: '/assistant', icon: 'page' }, + { id: 'page-assistant', group: 'pages', title: 'FlowPilot', subtitle: 'AI-powered troubleshooting chat', path: '/assistant', icon: 'page' }, { id: 'page-scripts', group: 'pages', title: 'Script Generator', subtitle: 'Generate PowerShell scripts', path: '/scripts', icon: 'page' }, { id: 'page-analytics', group: 'pages', title: 'Analytics', subtitle: 'Team usage & metrics', path: '/analytics', icon: 'page' }, { id: 'page-settings', group: 'pages', title: 'Settings', subtitle: 'Account & preferences', path: '/account', icon: 'page' }, @@ -247,7 +247,7 @@ export function CommandPalette({ open, onClose }: CommandPaletteProps) { if (intent === 'question') { // FlowPilot prominent at top - result.push({ type: 'flowpilot', label: 'AI Assistant', items: [flowPilotItem] }) + result.push({ type: 'flowpilot', label: 'FlowPilot', items: [flowPilotItem] }) if (flowItems.length > 0) result.push({ type: 'flows', label: 'Flows', items: flowItems }) if (sessionItems.length > 0) result.push({ type: 'sessions', label: 'Sessions', items: sessionItems }) if (aiSessionItems.length > 0) result.push({ type: 'ai-sessions', label: 'FlowPilot Sessions', items: aiSessionItems }) @@ -259,10 +259,10 @@ export function CommandPalette({ open, onClose }: CommandPaletteProps) { if (sessionItems.length > 0) result.push({ type: 'sessions', label: 'Sessions', items: sessionItems }) if (aiSessionItems.length > 0) result.push({ type: 'ai-sessions', label: 'FlowPilot Sessions', items: aiSessionItems }) if (tagItems.length > 0) result.push({ type: 'tags', label: 'Tags', items: tagItems }) - result.push({ type: 'flowpilot', label: 'AI Assistant', items: [flowPilotItem] }) + result.push({ type: 'flowpilot', label: 'FlowPilot', items: [flowPilotItem] }) } else { // keyword: FlowPilot at top, flows/sessions/tags below - result.push({ type: 'flowpilot', label: 'AI Assistant', items: [flowPilotItem] }) + result.push({ type: 'flowpilot', label: 'FlowPilot', items: [flowPilotItem] }) if (flowItems.length > 0) result.push({ type: 'flows', label: 'Flows', items: flowItems }) if (sessionItems.length > 0) result.push({ type: 'sessions', label: 'Sessions', items: sessionItems }) if (aiSessionItems.length > 0) result.push({ type: 'ai-sessions', label: 'FlowPilot Sessions', items: aiSessionItems }) diff --git a/frontend/src/data/guides.ts b/frontend/src/data/guides.ts index 413c8192..de73e489 100644 --- a/frontend/src/data/guides.ts +++ b/frontend/src/data/guides.ts @@ -297,14 +297,14 @@ export const guides: Guide[] = [ }, { slug: 'ai-assistant', - title: 'AI Assistant', + title: 'FlowPilot', icon: BotMessageSquare, summary: 'Standalone AI chat for IT questions and flow recommendations.', sections: [ { title: 'Starting a Conversation', steps: [ - { instruction: 'Click **AI Assistant** in the sidebar to open the chat page.' }, + { instruction: 'Click **FlowPilot** in the sidebar to open the chat page.' }, { instruction: 'Click **Start a Conversation** or the **+ New Chat** button in the left panel.' }, { instruction: 'Type your question in the message box and press Enter or click the send button.' }, { instruction: 'The AI responds as a Senior Systems & Network Engineer with MSP expertise.' },