mirror of
https://github.com/moltbot/moltbot.git
synced 2026-05-08 00:16:24 +00:00
* fix(onboarding): skip redundant install prompt when only one source exists When the channel-setup flow asks 'Install <plugin>?' after the user has already picked the channel in the previous menu, and the only real install source available is npm (or local), the prompt degenerates into '<that source> vs Skip'. The user already expressed intent by picking the channel, so re-confirming adds friction without offering a meaningful choice. Resolve directly to the available source in that case. Keep the prompt when both npm and local sources exist so the user can still pick which to use, and keep it when no real source exists (the prompt then only offers Skip, which is informative). * fix ci * fix ci * fix(channel-setup): skip redundant install prompt when only one source exists Add autoConfirmSingleSource opt-in parameter to promptInstallChoice / ensureOnboardingPluginInstalled / ensureChannelSetupPluginInstalled. When set and only one real install source (npm or local, not both) exists, the 'Install <plugin>? / Skip' prompt is skipped and the single source is used directly. Only channel-setup.ts passes autoConfirmSingleSource: true — the user already expressed intent by picking the channel in the previous menu, so re-confirming adds friction without a meaningful choice. The onboarding and quickstart entry points keep the existing prompt behavior unchanged. Also fix findBundledPluginSourceInMap mock type in onboarding-plugin-install.test.ts to avoid TS2345. * fix(tests): revert auto-confirm test expectations and fix mock leak - Revert 'offers registry npm specs' test to expect the prompt (autoConfirmSingleSource not passed) - Revert channel-setup 'does not default to bundled local path' test to expect the prompt - Reset findBundledPluginSourceInMap and resolveBundledInstallPlanForCatalogEntry mocks after the bundled prompt test to prevent cross-test leakage * fix ci * docs(changelog): add #73419