Add welcome guide onboarding flow for first-time users - #67
Open
its-mash wants to merge 5 commits into
Open
Conversation
Implement a 5-step welcome guide modal that appears on first launch to walk users through the key features of McpMux: discovering servers, organizing with spaces, connecting AI clients, and controlling access with FeatureSets. The guide is persisted via localStorage so it only shows once. - Add WelcomeGuide component with step navigation (next/back/skip) - Add hasSeenWelcome flag to Zustand store with persistence - Add 22 unit tests for the WelcomeGuide component - Add 3 unit tests for the new store action - Add Playwright e2e spec (14 tests across 4 describe blocks) - Add WebdriverIO desktop e2e spec (16 tests across 3 describe blocks) - Add WelcomeGuidePage page object for e2e tests https://claude.ai/code/session_01TY5YfV9R31MfrJDtovKqmi
Move WELCOME_STEPS constant and WelcomeStep type to welcomeSteps.tsx so the WelcomeGuide component file only exports a component, fixing the react-refresh/only-export-components ESLint warning. https://claude.ai/code/session_01TY5YfV9R31MfrJDtovKqmi
its-mash
force-pushed
the
main
branch
2 times, most recently
from
July 15, 2026 01:36
04e4d51 to
9e481e7
Compare
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
Implements a comprehensive welcome guide modal that appears on first launch to onboard new users with McpMux features and functionality. The guide includes 5 interactive steps covering key concepts like server discovery, spaces, client connections, and feature sets.
Key Changes
Component & UI
apps/desktop/src/components/WelcomeGuide.tsx): New modal component with 5-step onboarding flow featuring:State Management
App store updates (
apps/desktop/src/stores/appStore.ts):hasSeenWelcomeboolean state to track first-time user statussetHasSeenWelcomeaction to persist dismissal stateAppStateinterface andAppStoretype definitionsuseHasSeenWelcomeselector for component accessType definitions (
apps/desktop/src/stores/types.ts):hasSeenWelcometoAppStateinterfacesetHasSeenWelcometoAppActionsinterfaceIntegration
WelcomeGuidecomponent into main app layout to display on first launchTesting
Unit tests (
tests/ts/components/WelcomeGuide.test.tsx):E2E tests (Playwright & WebdriverIO):
Store tests (
tests/ts/stores/appStore.test.ts):hasSeenWelcomestate managementPage Objects
tests/e2e/pages/WelcomeGuidePage.ts): Page object for E2E testing with helper methods for navigation and dismissalImplementation Details
@mcpmux/uidata-testidattributes for reliable testinghttps://claude.ai/code/session_01TY5YfV9R31MfrJDtovKqmi