diff --git a/apps/web/components/configure-view.tsx b/apps/web/components/configure-view.tsx index c36ea5e4..21206920 100644 --- a/apps/web/components/configure-view.tsx +++ b/apps/web/components/configure-view.tsx @@ -5,7 +5,9 @@ import { Blocks, CalendarClock, Cpu, ScrollText } from "lucide-react" import { useState } from "react" import CompanyBrainConnections from "@/components/settings/company-brain-connections" import CompanyBrainModels from "@/components/settings/company-brain-models" +import CompanyBrainProactivity from "@/components/settings/company-brain-proactivity" import Proactiveness from "@/components/settings/proactiveness" +import { ProactivenessIcon } from "@/components/settings/proactiveness-icon" import { WorkspacePrompt } from "@/components/settings/workspace-prompt" import { ErrorBoundary } from "@/components/error-boundary" import { useAuth } from "@lib/auth-context" @@ -15,13 +17,14 @@ type ConfigureSection = | "company-brain" | "models" | "workspace-prompt" + | "proactivity" | "automations" const SECTIONS: { id: ConfigureSection label: string description: string - icon: typeof Blocks + icon: React.ComponentType<{ className?: string }> }[] = [ { id: "company-brain", @@ -44,6 +47,13 @@ const SECTIONS: { "Persistent guidance for how your brain works across the workspace. Fixed safety, access, and approval constraints still apply.", icon: ScrollText, }, + { + id: "proactivity", + label: "Proactivity", + description: + "When Company Brain speaks up in Slack without being asked. Quiet channels are still read and remembered.", + icon: ProactivenessIcon, + }, { id: "automations", label: "Automations", @@ -62,16 +72,13 @@ export function ConfigureView() { return (
-
+