Files
Thomas PetersenandCursor dace91462b fix(desktop): keep one personal onboarding agent and make it testable
Ensure the assistant onboarding maintains exactly one personal agent:
recognize prior agents by a stable system-prompt marker, reuse the
single keeper, and delete duplicates left over from earlier sessions.
Reset now reuses that agent and bounces its process so each session
gets a fresh relay connection, fixing silent non-responses from a
wedged long-lived agent. Add a dev-only force flag (localStorage /
?onboarding=force) to replay onboarding even after completion, cleared
on finish/skip.

Split AssistantSetupStep into pure helpers (lib/assistantSetupHelpers)
and terminal UI (ui/AssistantTerminal) to stay near the file-size gate.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-05-29 08:30:22 -04:00
..
2026-03-09 19:32:56 -07:00
2026-03-09 13:02:11 -07:00
2026-03-09 13:02:11 -07:00
2026-03-09 13:02:11 -07:00

Sprout

Desktop chat shell with:

  • Tauri + React + TypeScript + Vite
  • Tailwind CSS
  • shadcn/ui-ready shared components
  • Biome (lint/format/check)
  • Feature-driven frontend structure

Scripts

  • pnpm dev - run the web frontend
  • pnpm tauri dev - run the desktop app
  • pnpm build - typecheck and build frontend
  • pnpm typecheck - TypeScript checks
  • pnpm lint - Biome lint
  • pnpm format - Biome format (write)
  • pnpm check - Biome check

Structure

  • src/shared - reusable app-wide code (ui, lib, styles)
  • src/features - feature modules (vertical slices)
  • src/app - top-level app composition