fix(C-P1-S2): honest booking-tool routing (kill the Google-only dead-end)#593
Merged
Victor "David" Medina (Victor-David-Medina) merged 1 commit intoJun 27, 2026
Conversation
…end)
Customer value: a spa/dental/fitness owner is never shown a connect path that can't
read their data. Before, ANY booking_tool answer except 'Paper or phone' emitted
'Connect [tool]' -> /settings/integrations (Google-only) — an honest-looking dead-end
for Acuity/Mindbody/Vagaro/Square shops.
Fix in seedSetupActions(): only Google Calendar (the one live self-serve connector
today) routes to the connect card; every other tool gets the HONEST CSV path
('Export a client list from [tool] to start today' -> /import), never a false connect
promise. Also added the real ICP tools (Acuity, Mindbody, Jane) to the wellness +
generic booking_tool options, aligned with the /import wording.
Updated the cold-start honesty-contract test to assert the FIXED routing (Vagaro ->
import-booking-csv -> /import) + added a Google-Calendar -> connect-booking case, so
the test now guards the dead-end fix. tsc: 0 errors (vitest runs in CI — junction
can't load its config locally).
Deferred fast-follow: the 'notify me when one-click [tool] is ready' demand-signal
endpoint/table + the StarterOnboardingWizard step-3 alignment (additive + gated).
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
🛡️ Cascade Quality Score: 100/100
Threshold: 85/100 | Result: PASS ✅ |
a771890
into
main
9 of 10 checks passed
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.
Customer-evolution Phase 1. Fixes a real onboarding dead-end: a non-Google booking-tool answer (Acuity/Mindbody/Vagaro/Square) used to route to the Google-only
/settings/integrations— a path that can't read their data.seedSetupActions()now splits: Google Calendar (the one live self-serve connector) → connect card; every other tool → the honest CSV path (/import), never a false 'connect' promise. Added the real ICP tools (Acuity/Mindbody/Jane) to the booking-tool options.Updated the honesty-contract test to assert the fixed routing + a new Google-Calendar case — the test now guards the dead-end fix. tsc 0 errors; vitest runs in CI.