feat(billing): add Max plan to nova with cancel/resume flow#1024
Conversation
Deploying with
|
| Status | Name | Latest Commit | Preview URL | Updated (UTC) |
|---|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-app | 53c971a | Commit Preview URL Branch Preview URL |
May 31 2026, 07:13 PM |
How to use the Graphite Merge QueueAdd the label Main to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
|
Claude finished @MaheshtheDev's task in 1m 1s —— View job Re-reviewing PR after new commits
Overview: Re-reviewed after commit 594a9da which addresses the timestamp normalization bug from the previous review. Fix verified: The Issues found: None — the previous issue has been fixed correctly. Score: 10/10 Clean implementation. The fix properly reuses the existing |
Deploying with
|
| Status | Name | Latest Commit | Updated (UTC) |
|---|---|---|---|
| ✅ Deployment successful! View logs |
supermemory-mcp | 53c971a | May 31 2026, 07:11 PM |
There was a problem hiding this comment.
Overview: Adds Max plan ($100/mo) between Pro and Scale with full cancel/resume flow mirroring the console experience.
Issues found:
- One potential timestamp normalization bug in the cancel countdown calculation — if the backend returns Unix timestamps in seconds (common for Stripe), the "days left" display will be incorrect. See inline comment.
Score: 9/10
Clean implementation overall. The plan tier ordering is consistent across all files, the cancel confirmation UX with type-to-confirm is solid, and the resume flow properly uses the autumn SDK's uncancel action. The auto-open carousel logic for advanced plan users is a nice touch. Just needs the timestamp fix before shipping.
Merge activity
|
Integrate the new api_max plan ($100/mo, $130 credits) from mono into the
nova web app, mirroring mono's tier semantics.
- Tiers: insert api_max between pro and scale; resolves to Pro-tier for feature gates while displaying as "Max" (queries.ts, use-token-usage)
- Billing page: Max plan card ("Most Popular"), checkout/cancel/invoice wiring; advanced carousel page now 3-up (Max/Scale/Enterprise); Scale builds on Max
- Carousel auto-opens to the page holding the current plan (Max/Scale/ Enterprise users land on their own card instead of Free+Pro)
- Cancel: retention dialog listing what you lose + type-to-confirm "CANCEL"
- Cancel/resume state mirroring console: detect canceledAt-scheduled cancellation, show "Cancelling" pill + "Cancels on {date} · N days left", and a "Resume plan" (uncancel) action
594a9da to
53c971a
Compare

Integrate the new api_max plan ($100/mo, $130 credits) from mono into the
nova web app, mirroring mono's tier semantics.