Fix Stripe Projects browser API access pricing#458
Conversation
…e rates The stripe-projects docs listed usage-based pricing as $0.01/min standard / $0.02/min stealth, which does not match actual billing. Real usage rates are by browser type: $0.001/min headless, $0.008/min headful, $0.048/min GPU, with stealth included. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |
There was a problem hiding this comment.
Risk assessment: Very Low
The diff changes two pricing sentences in MDX documentation and keeps the values consistent across both pages. It doesn't modify executable code, site configuration, infrastructure, permissions, billing implementation, or other shared runtime behavior, so the blast radius is limited to displayed documentation. No CODEOWNERS rule applies to these files, and the PR had no existing approval at assessment time.
Sent by Cursor Automation: Assign PR reviewers
There was a problem hiding this comment.
Cursor Bugbot has reviewed your changes using high effort and found 1 potential issue.
❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.
Reviewed by Cursor Bugbot for commit d0cbec5. Configure here.
| | Situation | Price | | ||
| |-----------|--------| | ||
| | No active Kernel plan on the org | Usage-based: **$0.01/min** (standard), **$0.02/min** (stealth) | | ||
| | No active Kernel plan on the org | Usage-based by browser type: **$0.001/min** headless, **$0.008/min** headful, **$0.048/min** headful + GPU (stealth included) | |
There was a problem hiding this comment.
Unescaped dollar signs in MDX
Medium Severity
The updated pricing cell uses unescaped $ for currency amounts. Mintlify treats paired $ as LaTeX math delimiters, so this Pricing table can render as garbled math instead of readable rates. The sibling update in stripe-projects.mdx already escapes the same amounts with \$, so this page is inconsistent with that pattern and with the MDX dollar-escaping rule.
Triggered by learned rule: Escape dollar signs in MDX to prevent Mintlify LaTeX rendering
Reviewed by Cursor Bugbot for commit d0cbec5. Configure here.
|
Preview deployment for your docs. Learn more about Mintlify Previews.
💡 Tip: Enable Workflows to automatically generate PRs for you. |




Summary
The two Stripe Projects docs pages listed usage-based pricing for
browser:api-accessas $0.01/min (standard), $0.02/min (stealth). This does not match actual billing.The real usage-based rates are by browser type, and stealth is included (there is no separate/doubled stealth rate):
This matches both the public pricing page (
info/pricingper-second rates × 60) and the Stripe Projects service catalog served to Stripe (theprojectdeployable's pricing string), which derives its amounts fromPLAN_CONFIGso they stay aligned with billing reality.Changes
integrations/stripe-projects-browser.mdx— Pricing table rowintegrations/stripe-projects.mdx— service catalog noteNo code or generated files touched. Docs-only change, verified against the public pricing page and the service catalog source.
Note
Low Risk
Documentation-only edits to pricing text; no runtime, billing, or API behavior changes.
Overview
Corrects usage-based pricing for
kernel/browser:api-accessin the Stripe Projects integration docs so they match real billing (and the public pricing / service catalog).Both
integrations/stripe-projects-browser.mdx(pricing table) andintegrations/stripe-projects.mdx(catalog note) replace the old $0.01/min standard / $0.02/min stealth wording with by browser type: $0.001/min headless, $0.008/min headful, $0.048/min headful + GPU, with stealth included (no separate stealth multiplier). Plan-included behavior is unchanged.Reviewed by Cursor Bugbot for commit d0cbec5. Bugbot is set up for automated code reviews on this repo. Configure here.