nexus/ui
Nexus Dev d478cc3daf feat(nexus): nexus-first navigation and first-run onboarding trigger
Stop showing Paperclip's board UI by default. First-time users now
land on Personal Assistant (v1.5), see a Nexus-first sidebar, and the
NexusOnboardingWizard (built in v1.5) actually fires on first run
instead of sitting behind a dead "Start Onboarding" button click.

App.tsx
  - CompanyRootRedirect now reads useNexusMode() and lands the user
    at /${prefix}/assistant by default. Only project_builder mode
    lands at /${prefix}/dashboard. "personal_ai" and "both" (the
    default) both go to the Assistant.
  - NoCompaniesStartPage gutted: the old "Create your first company"
    button is gone. Single-workspace mode doesn't ask users to name
    workspaces; the onboarding wizard handles it. Replaced with a
    minimal "Setting up your workspace..." loading shim.
  - OnboardingRoutePage now auto-opens the wizard on mount when no
    companies exist. Closes the dead-button gap: previously the user
    had to click "Start Onboarding" to actually get the wizard; now
    the wizard opens itself as soon as they land.

Sidebar.tsx
  - Restructured around two mode-gated sections:
    * Always visible (Nexus essentials): Assistant, Content Studio,
      Convert, Inbox, Skills, Settings. Plus the New Issue button and
      plugin sidebar items.
    * project_builder-only: Work (Issues, Routines, Goals), Projects,
      Agents, and the remaining Workspace items (Org, Costs, Activity).
  - Top bar no longer renders a company switcher dropdown — single-
    workspace mode shows the workspace name as a static label with
    the search button beside it.
  - Dashboard link removed from the always-visible section. The
    default landing is /assistant; users who explicitly want the
    Paperclip dashboard can type the URL or switch to project_builder
    mode.

Layout.tsx
  - Removed both <CompanyRail /> renderings (mobile and desktop
    branches). Single-workspace mode doesn't need a multi-company
    icon rail. Import preserved with a [nexus] comment for upstream
    rebase compat.
  - Onboarding useEffect's authenticated-mode gate removed (root
    cause of the v1.5 wizard-not-firing bug on fresh DB). This
    effect is now a belt-and-suspenders fallback; the real auto-
    trigger lives in OnboardingRoutePage because Layout isn't
    actually mounted during the zero-company first-run state
    (CompanyRootRedirect navigates to /onboarding before Layout
    ever renders).

NexusOnboardingWizard.tsx
  - handleSubmit and handleStartChat both used to hardcode the post-
    creation navigation to /${prefix}/dashboard. Now mode-aware:
    project_builder lands at /dashboard, everything else lands at
    /assistant. Matches the Sidebar and CompanyRootRedirect logic —
    a fresh user never touches the Paperclip dashboard unless they
    explicitly chose project_builder during the wizard.

Not changed:
  - The Paperclip pages themselves (Dashboard, Issues, Projects,
    Agents, Org, etc.) — still present, still accessible by URL,
    still upstream-mergeable. Just hidden from the default nav.
  - CompanyRail.tsx, CompanySwitcher.tsx, NewCompanyDialog — files
    preserved for upstream rebase diff minimization. No call sites
    remain.
  - /NEX/companies route still registered in boardRoutes(), just
    unlinked from the default UI.

TypeScript: zero new errors (pre-existing errors in AgentConfigForm,
command.tsx, useKeyboardShortcuts, usePiperTts, useVadRecorder,
OnboardingSummaryStep.test, PersonalAssistant unchanged).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-10 18:19:14 +00:00
..
public feat(nexus): design system phase 1 tokens and inter font 2026-04-10 17:19:56 +00:00
src feat(nexus): nexus-first navigation and first-run onboarding trigger 2026-04-10 18:19:14 +00:00
components.json Overhaul UI with shadcn components and new pages 2026-02-17 09:07:32 -06:00
index.html feat(nexus): design system phase 1 tokens and inter font 2026-04-10 17:19:56 +00:00
package.json feat: Phase 41 — Diagrams, Icons & Theme Engine (Mermaid, SVG icons, OKLCH palettes) 2026-04-05 09:56:37 +00:00
README.md Publish @paperclipai/ui from release automation 2026-03-26 11:13:11 -05:00
tsconfig.json Fix atomic markdown mention deletion 2026-03-23 16:57:27 -05:00
vite.config.ts fix(nexus): auto-bootstrap invite and vite onnxruntime middleware 2026-04-10 16:50:28 +00:00
vitest.config.ts feat: Phase 41 — Diagrams, Icons & Theme Engine (Mermaid, SVG icons, OKLCH palettes) 2026-04-05 09:56:37 +00:00

@paperclipai/ui

Published static assets for the Paperclip board UI.

What gets published

The npm package contains the production build under dist/. It does not ship the UI source tree or workspace-only dependencies.

Typical use

Install the package, then serve or copy the built files from node_modules/@paperclipai/ui/dist.