chore(m5): cut connector UI from renderer (PR1 of 7)#112
Merged
Conversation
PR1 of M5 (Spool Daemon split — Spool-side cleanup). Removes the connector / capture surface from the renderer and App entry point, without touching core types, preload, main process, or DB. Captures returned by existing IPC are filtered out at the App boundary. - SettingsPanel: drop Connectors tab; move Agent Sessions into General - HomeView: drop CaptureSuggestionRow + capture chips + + Connect button - FragmentResults: narrow to fragment-only; drop CaptureRow - StarredItems: narrow to session-only; drop StarredCaptureRow - StarButton: simplify (always session) - App.tsx: drop captureSources/platformColors/starredCaptures state, connector event listener, refreshCaptureSources, handleConnectClick, connectorToast; filter results/preview/starred at the boundary - Delete dead components: ManualInstallModal, PackageSetupCard, SourcesPanel; drop unused PlatformBadge Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
The "home dropdown surfaces a capture" test asserts a UI behavior that PR1 just removed (capture suggestions no longer render). Drop the test + its seedCapture beforeAll. helpers/seed.ts stays — referenced by __spoolSeedCapture in main, will go in PR4. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Reverts the GeneralTab folding from the previous PR1 commit. Connectors tab is renamed to Sources (with a layers icon) and now hosts only the Agent Sessions section. Leaves headroom for future source-import features without crowding General. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This was referenced Apr 28, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
First of 7 PRs implementing M5 — drop connector subsystem from Spool.
This PR removes the renderer / App surface area for connectors and captures. It is intentionally narrow:
packages/app/src/renderer/and one e2e specconnectorsnamespace, main-process IPC handlers, core/connectors engine, DB schema, CLICaptures still returned by existing IPC are filtered out at the App.tsx boundary (
fragmentSources,fragmentPreview,fragmentScopedResults, session-onlystarredItems). Subsequent PRs will trim the data path itself.Changes
general | appearance | sources | agent.CaptureSuggestionRow, capture chips, and+ Connectbutton removedCaptureRowremovedStarredCaptureRowremovedkindpropcaptureSources/platformColors/starredCaptures/connectorToaststate; dropped connector event listener,refreshCaptureSources,handleConnectClick;SettingsTabunion updatedManualInstallModal.tsx,PackageSetupCard.tsx,SourcesPanel.tsx(last was already dead), unusedPlatformBadgehome-preview.spec.tstest that asserted captures appeared in the dropdown (it tests a removed UI behavior); kepthelpers/seed.tssince it depends on main-side__spoolSeedCapture(will go in PR4)-1490 / +106net.Test plan
pnpm exec tsc --noEmitclean (packages/app)pnpm build:electronpasses (core + connector-sdk + main + preload + renderer)connectorsAPI still resolves (handlers untouched), even though renderer no longer calls them🤖 Generated with Claude Code