restack on main after SpaceState DO merge (#1376)

Parent stack PR landed on main. Keep the revamp SpaceState implementation and
server entrypoint; drop the pre-revamp apps/mcp/src/index.ts from trunk.

Co-authored-by: Dhravya Shah <dhravya@supermemory.com>
This commit is contained in:
Cursor Agent 2026-07-30 21:50:26 +00:00
commit f6b1816be4
No known key found for this signature in database
7 changed files with 246 additions and 129 deletions

View file

@ -0,0 +1,17 @@
import { notFound, redirect } from "next/navigation"
import {
DEFAULT_CONFIGURE_SECTION,
isConfigureSection,
} from "@/lib/configure-routes"
export default async function ConfigureSectionPage({
params,
}: {
params: Promise<{ section: string }>
}) {
const { section } = await params
// Default section is canonical at /configure.
if (section === DEFAULT_CONFIGURE_SECTION) redirect("/configure")
if (!isConfigureSection(section)) notFound()
return null
}

View file

@ -0,0 +1,15 @@
import { AppExperience } from "@/components/app-experience"
// Shell lives here so section nav doesn't remount the app.
export default function ConfigureLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<>
<AppExperience />
{children}
</>
)
}

View file

@ -0,0 +1,4 @@
// Shell renders in layout.tsx.
export default function ConfigurePage() {
return null
}

View file

@ -2,7 +2,8 @@
import { cn } from "@lib/utils"
import { Blocks, CalendarClock, Cpu, ScrollText } from "lucide-react"
import { useState } from "react"
import Link from "next/link"
import { usePathname } from "next/navigation"
import CompanyBrainConnections from "@/components/settings/company-brain-connections"
import CompanyBrainModels from "@/components/settings/company-brain-models"
import CompanyBrainProactivity from "@/components/settings/company-brain-proactivity"
@ -11,15 +12,14 @@ 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"
import {
type ConfigureSection,
configureSectionToPath,
DEFAULT_CONFIGURE_SECTION,
pathToConfigureSection,
} from "@/lib/configure-routes"
import { dmSans125ClassName } from "@/lib/fonts"
type ConfigureSection =
| "company-brain"
| "models"
| "workspace-prompt"
| "proactivity"
| "automations"
const SECTIONS: {
id: ConfigureSection
label: string
@ -27,7 +27,7 @@ const SECTIONS: {
icon: React.ComponentType<{ className?: string }>
}[] = [
{
id: "company-brain",
id: "tools",
label: "Integrations",
description:
"Connect the tools your brain works with. Your account covers your own actions and reads; workspace accounts are a shared fallback.",
@ -65,8 +65,10 @@ const SECTIONS: {
export function ConfigureView() {
const { org } = useAuth()
const [activeSection, setActiveSection] =
useState<ConfigureSection>("company-brain")
const pathname = usePathname()
// Reachable via ?view=configure too, where the path carries no section.
const activeSection =
pathToConfigureSection(pathname) ?? DEFAULT_CONFIGURE_SECTION
const active = SECTIONS.find((section) => section.id === activeSection)
if (!active) return null
@ -90,11 +92,10 @@ export function ConfigureView() {
const isActive = section.id === activeSection
const Icon = section.icon
return (
<button
<Link
key={section.id}
type="button"
href={configureSectionToPath(section.id)}
aria-current={isActive ? "page" : undefined}
onClick={() => setActiveSection(section.id)}
className={cn(
"flex shrink-0 items-center gap-2.5 rounded-[8px] px-3 py-2 text-left text-[13px] font-medium transition-colors",
isActive
@ -109,7 +110,7 @@ export function ConfigureView() {
)}
/>
{section.label}
</button>
</Link>
)
})}
</nav>
@ -135,7 +136,7 @@ export function ConfigureView() {
</p>
}
>
{activeSection === "company-brain" ? (
{activeSection === "tools" ? (
<CompanyBrainConnections />
) : activeSection === "models" ? (
<CompanyBrainModels showHeading={false} />

View file

@ -2,15 +2,18 @@
import { useQuery } from "@tanstack/react-query"
import { cn } from "@lib/utils"
import { Check, Loader2, Lock, X } from "lucide-react"
import { Check, Loader2, Lock, Plus, X } from "lucide-react"
import { useState } from "react"
import { useAuth } from "@lib/auth-context"
import {
Select,
SelectContent,
SelectItem,
SelectTrigger,
SelectValue,
} from "@ui/components/select"
Command,
CommandEmpty,
CommandGroup,
CommandInput,
CommandItem,
CommandList,
} from "@ui/components/command"
import { Popover, PopoverContent, PopoverTrigger } from "@ui/components/popover"
import {
type BrainChannelProactivity,
type BrainProactivityDefault,
@ -27,7 +30,6 @@ const BACKEND =
type Channel = { id: string; name: string; isPrivate: boolean }
const HOME_CHANNEL_NAME = "company-brain"
const ADD_PLACEHOLDER = "__add__"
const MODES: {
id: BrainProactivityDefault
@ -50,16 +52,12 @@ const fieldLabel = cn(
dmSans125ClassName(),
"text-[11px] font-medium uppercase tracking-[0.06em] text-[#5B6675]",
)
const controlClass = cn(
dmSans125ClassName(),
"h-9 w-full rounded-full border border-[#1E293B] bg-[#0D121A] px-3.5 text-[13px] text-[#FAFAFA] outline-none disabled:opacity-50",
)
const selectContentClass = cn(
dmSans125ClassName(),
"rounded-[10px] border-white/[0.08] bg-[#1B1F24] text-[#FAFAFA] shadow-[0px_8px_24px_rgba(0,0,0,0.5)]",
)
const selectItemClass =
"cursor-pointer rounded-[8px] text-[13px] text-[#FAFAFA] hover:bg-white/10 hover:text-white data-[highlighted]:bg-white/10 data-[highlighted]:text-white focus:bg-white/10 focus:text-white"
const commandItemClass =
"cursor-pointer rounded-[8px] text-[13px] text-[#FAFAFA] data-[selected=true]:bg-white/10 data-[selected=true]:text-white"
export default function CompanyBrainProactivity() {
const isCompanyBrain = useHasCompanyBrain()
@ -68,6 +66,7 @@ export default function CompanyBrainProactivity() {
const settingsQuery = useBrainSettings(isCompanyBrain)
const update = useUpdateBrainSettings()
const [pickerOpen, setPickerOpen] = useState(false)
const slackStatusQuery = useQuery({
queryKey: ["brain", "slack-status", org?.id],
@ -129,7 +128,7 @@ export default function CompanyBrainProactivity() {
}
return (
<section className="flex flex-col gap-4 px-1">
<section className="flex w-full max-w-3xl flex-col gap-4 px-1">
{settingsQuery.isLoading ? (
<div className="flex items-center gap-2 text-[13px] text-[#9A9A9A]">
<Loader2 className="size-4 animate-spin" />
@ -183,100 +182,130 @@ export default function CompanyBrainProactivity() {
<div className="flex flex-col gap-2">
<span className={fieldLabel}>Channel exceptions</span>
{Object.entries(overrides).map(([channelId, value]) => (
<div
key={channelId}
className="flex items-center justify-between gap-3 rounded-xl bg-[#14161A] px-4 py-2.5 shadow-[inset_2.42px_2.42px_4.263px_rgba(11,15,21,0.7)]"
>
<span
<div className="overflow-hidden rounded-xl bg-[#14161A] shadow-[inset_2.42px_2.42px_4.263px_rgba(11,15,21,0.7)]">
<div className="max-h-[420px] overflow-y-auto">
{Object.entries(overrides).map(([channelId, value]) => (
<div
key={channelId}
className="flex min-h-[52px] items-center justify-between gap-3 border-white/[0.06] border-b px-4 py-2"
>
<span
className={cn(
dmSans125ClassName(),
"min-w-0 truncate text-[13px] font-medium text-[#FAFAFA]",
)}
>
#{channelName(channelId)}
</span>
<div className="flex shrink-0 items-center gap-2">
<div className="flex items-center gap-0.5 rounded-full bg-[#0D121A] p-0.5 shadow-[inset_1.5px_1.5px_4.5px_rgba(0,0,0,0.5)]">
{(["proactive", "quiet"] as const).map((option) => (
<button
key={option}
type="button"
aria-pressed={value === option}
disabled={disabled}
onClick={() => {
if (value !== option)
setOverride(channelId, option)
}}
className={cn(
dmSans125ClassName(),
"h-7 cursor-pointer rounded-full px-3 text-[11.5px] font-medium transition-colors disabled:cursor-not-allowed disabled:opacity-50",
value === option
? "bg-white/[0.10] text-[#FAFAFA]"
: "text-[#8B929E] hover:text-[#FAFAFA]",
)}
>
{option === "proactive" ? "Proactive" : "Quiet"}
</button>
))}
</div>
<button
type="button"
disabled={disabled}
onClick={() => setOverride(channelId, null)}
className="cursor-pointer text-[#6B6B6B] transition-colors hover:text-[#FAFAFA] disabled:cursor-not-allowed disabled:opacity-50"
aria-label={`Remove exception for #${channelName(channelId)}`}
>
<X className="size-4" />
</button>
</div>
</div>
))}
</div>
{addable.length > 0 ? (
<Popover open={pickerOpen} onOpenChange={setPickerOpen}>
<PopoverTrigger asChild>
<button
type="button"
disabled={disabled}
aria-expanded={pickerOpen}
className={cn(
dmSans125ClassName(),
"flex min-h-[52px] w-full cursor-pointer items-center gap-2 px-4 py-2 text-left text-[13px] text-[#8B929E] outline-none transition-colors hover:bg-white/[0.03] hover:text-[#FAFAFA] disabled:cursor-not-allowed disabled:opacity-50",
)}
>
<Plus className="size-4 shrink-0" />
<span className="truncate">Add a channel exception</span>
</button>
</PopoverTrigger>
<PopoverContent
align="start"
className={cn(
selectContentClass,
"w-(--radix-popover-trigger-width) min-w-64 p-0",
)}
>
<Command className="bg-transparent text-[#FAFAFA]">
<CommandInput
placeholder="Search channels…"
className="text-[13px] text-[#FAFAFA] placeholder:text-[#737373]"
/>
<CommandList>
<CommandEmpty className="py-6 text-center text-[13px] text-[#737373]">
No channels found.
</CommandEmpty>
<CommandGroup>
{addable.map((ch) => (
<CommandItem
key={ch.id}
value={ch.id}
keywords={[ch.name]}
className={commandItemClass}
onSelect={() => {
setOverride(
ch.id,
activeMode === "all_channels"
? "quiet"
: "proactive",
)
setPickerOpen(false)
}}
>
{ch.isPrivate ? "🔒 " : "# "}
{ch.name}
</CommandItem>
))}
</CommandGroup>
</CommandList>
</Command>
</PopoverContent>
</Popover>
) : channelsQuery.isLoading ||
slackStatusQuery.isLoading ? null : (
<p
className={cn(
dmSans125ClassName(),
"truncate text-[13px] font-medium text-[#FAFAFA]",
"px-4 py-3 text-[12px] text-[#737373]",
)}
>
#{channelName(channelId)}
</span>
<div className="flex items-center gap-2">
<div className="flex items-center gap-0.5 rounded-full bg-[#0D121A] p-0.5 shadow-[inset_1.5px_1.5px_4.5px_rgba(0,0,0,0.5)]">
{(["proactive", "quiet"] as const).map((option) => (
<button
key={option}
type="button"
aria-pressed={value === option}
disabled={disabled}
onClick={() => {
if (value !== option) setOverride(channelId, option)
}}
className={cn(
dmSans125ClassName(),
"h-7 cursor-pointer rounded-full px-3 text-[11.5px] font-medium transition-colors disabled:cursor-not-allowed disabled:opacity-50",
value === option
? "bg-white/[0.10] text-[#FAFAFA]"
: "text-[#8B929E] hover:text-[#FAFAFA]",
)}
>
{option === "proactive" ? "Proactive" : "Quiet"}
</button>
))}
</div>
<button
type="button"
disabled={disabled}
onClick={() => setOverride(channelId, null)}
className="cursor-pointer text-[#6B6B6B] transition-colors hover:text-[#FAFAFA] disabled:cursor-not-allowed disabled:opacity-50"
aria-label={`Remove exception for #${channelName(channelId)}`}
>
<X className="size-4" />
</button>
</div>
</div>
))}
{addable.length > 0 ? (
<Select
value={ADD_PLACEHOLDER}
disabled={disabled}
onValueChange={(channelId) => {
if (channelId === ADD_PLACEHOLDER) return
setOverride(
channelId,
activeMode === "all_channels" ? "quiet" : "proactive",
)
}}
>
<SelectTrigger className={cn(controlClass, "sm:w-72")}>
<SelectValue />
</SelectTrigger>
<SelectContent className={selectContentClass}>
<SelectItem
value={ADD_PLACEHOLDER}
className={selectItemClass}
>
Add a channel exception
</SelectItem>
{addable.map((ch) => (
<SelectItem
key={ch.id}
value={ch.id}
className={selectItemClass}
>
{ch.isPrivate ? "🔒 " : "# "}
{ch.name}
</SelectItem>
))}
</SelectContent>
</Select>
) : channelsQuery.isLoading || slackStatusQuery.isLoading ? null : (
<p
className={cn(
dmSans125ClassName(),
"text-[12px] text-[#737373]",
)}
>
{slackStatusQuery.data?.connected === false
? "Connect Slack to set per-channel exceptions."
: "Invite Company Brain to a Slack channel to list it here."}
</p>
)}
{slackStatusQuery.data?.connected === false
? "Connect Slack to set per-channel exceptions."
: "Invite Company Brain to a Slack channel to list it here."}
</p>
)}
</div>
</div>
{!isAdmin ? (

View file

@ -0,0 +1,37 @@
// Sections under the /configure route.
// "tools" is the "Integrations" section, slugged to avoid clashing with /integrations.
export const CONFIGURE_SECTIONS = [
"tools",
"models",
"workspace-prompt",
"proactivity",
"automations",
] as const
export type ConfigureSection = (typeof CONFIGURE_SECTIONS)[number]
export const DEFAULT_CONFIGURE_SECTION: ConfigureSection = "tools"
export function isConfigureSection(slug: string): slug is ConfigureSection {
return (CONFIGURE_SECTIONS as readonly string[]).includes(slug)
}
export function configureSectionToPath(section: ConfigureSection): string {
return section === DEFAULT_CONFIGURE_SECTION
? "/configure"
: `/configure/${section}`
}
export function pathToConfigureSection(
pathname: string,
): ConfigureSection | null {
const trimmed = pathname.replace(/\/$/, "")
if (trimmed === "/configure") return DEFAULT_CONFIGURE_SECTION
const slug = trimmed.match(/^\/configure\/([^/]+)$/)?.[1]
if (slug && isConfigureSection(slug)) return slug
return null
}
export function isConfigurePath(pathname: string): boolean {
return pathToConfigureSection(pathname) !== null
}

View file

@ -8,6 +8,7 @@ import {
isIntegrationView,
pathToIntegrationView,
} from "@/lib/integration-routes"
import { isConfigurePath } from "@/lib/configure-routes"
import { analytics } from "@/lib/analytics"
import { useCallback, useEffect } from "react"
@ -33,8 +34,11 @@ export function useViewMode() {
const router = useRouter()
const [paramView, setParamView] = useQueryState("view", viewParam)
// On /integrations[/card] the path is the source of truth; elsewhere the ?view param is.
const pathView = pathToIntegrationView(pathname)
// On /integrations[/card] and /configure[/section] the path is the source of truth;
// elsewhere the ?view param is.
const pathView: ViewMode | null =
pathToIntegrationView(pathname) ??
(isConfigurePath(pathname) ? "configure" : null)
const viewMode: ViewMode = pathView ?? paramView
const setViewMode = useCallback(
@ -44,8 +48,12 @@ export function useViewMode() {
router.push(integrationViewToPath(mode))
return
}
// Leaving (or already off) the integrations route for a non-integration view.
if (pathToIntegrationView(pathname)) {
if (mode === "configure") {
router.push("/configure")
return
}
// Leaving (or already off) a path-owned route for a param-owned view.
if (pathToIntegrationView(pathname) || isConfigurePath(pathname)) {
router.push(mode === "dashboard" ? "/" : `/?view=${mode}`)
return
}
@ -57,8 +65,8 @@ export function useViewMode() {
return { viewMode, setViewMode, isInitialized: true }
}
// Forwards legacy /?view=integrations (and sub-views) to the canonical /integrations route,
// preserving any other query params. Call once near the app root.
// Forwards legacy /?view=integrations (and sub-views) and /?view=configure to their
// canonical routes, preserving any other query params. Call once near the app root.
export function useLegacyViewRedirect() {
const pathname = usePathname()
const router = useRouter()
@ -67,10 +75,16 @@ export function useLegacyViewRedirect() {
useEffect(() => {
if (pathname !== "/") return
const view = searchParams.get("view")
if (!view || !isIntegrationView(view)) return
if (!view) return
const target = isIntegrationView(view)
? integrationViewToPath(view)
: view === "configure"
? "/configure"
: null
if (!target) return
const params = new URLSearchParams(searchParams.toString())
params.delete("view")
const qs = params.toString()
router.replace(integrationViewToPath(view) + (qs ? `?${qs}` : ""))
router.replace(target + (qs ? `?${qs}` : ""))
}, [pathname, searchParams, router])
}