This is one chat - “shipping the checkout page” - in a splitscreen room called Storefront. Priya owns the room and has the API key and the credits. Sam has neither, and still asks GPT and Gemini - because Priya’s budget covers the replies, and the receipt under each one says so. It is rendered by the same components the real room uses.
A curated transcript, written by us to show what the product does - not a recording of a session, not a live room, and not real people. The prices are the ordinary rates on what each AI can do.
| after | Priya’s Anthropic budget | Cover, today |
|---|---|---|
| Priya opens the room | $2.0000 | $2.0000 |
| Sam asks GPT | $2.0000 | $1.9931 |
| Priya asks Claude | $1.9818 | $1.9931 |
| Sam asks Gemini | $1.9818 | $1.9524 |
We need the checkout page live by Friday - Stripe Elements, guest checkout, and a promo code field. Give me a build order, and say what you would cut if we run out of time.
Build order - each step ships on its own, so Friday becomes a decision about where to stop rather than a scramble.
/checkout/complete, read the intent status on the server, and send the receipt from the webhook rather than from the browser - a customer who closes the tab still gets one.What I would cut, in this order: saved cards, then address autocomplete, then the promo field. The promo field is last because it is the only one of the three a support agent can apply by hand afterwards.
Auto picked GPT-5.6 Terra · $0.0069 · covered by Priya
Claude - review GPT’s build order against how we actually build. The cart is rendered on the server and we have never used a client-side redirect for payment. Read https://stripe.com/docs/payments/payment-element and tell me where the plan breaks.
read 1 page
Two of the four steps fight the way you build.
Step 2 assumes the browser confirms. Nothing in your checkout has ever redirected from the client, and the plan quietly changes that. If you keep the rule, the server confirms the intent and the browser only collects details - that is a different integration, not a different flag, so decide it now rather than discovering it in step 4.
Step 3 prices the order twice. The panel from step 1 has already rendered a total by the time the promo code is checked, so a code that expires between the two shows a discount the payment will not honour. Recompute the total in the same request that creates the intent and treat the panel as display only.
Steps 1 and 4 read fine to me. The webhook receipt in particular is the part most teams get wrong first time round. Longer notes, line by line, are in the file below.
Run inside Claude's own sandbox - it cannot reach your computer, your repositories or this app.
checkout-plan-review.mdexit 0$0.0182 · billed to Priya's Anthropic key
Gemini - rewrite step 3 to Claude’s rule so the total is computed once, and check the current guidance on autocomplete attributes while you are in there. Search, do not guess.
searched the web (2)
wcag 2.1 identify input purpose 1.3.5 level · html autocomplete tokens payment form accessibility
Step 3, to Claude's rule - one price, computed once, in the request that creates the intent:
PaymentIntent.create;That closes the window Claude found without adding a round trip.
On the autocomplete attributes: a requirement, at AA. WCAG 2.1 added 1.3.5 Identify Input Purpose: fields that collect information about the user have to be programmatically identifiable, and the HTML autocomplete tokens - cc-number, cc-exp, cc-csc, postal-code, email - are the ordinary way to meet it. Two things worth knowing before you cite it in review: it arrived in 2.1, so a checklist written against WCAG 2.0 will not mention it at all; and it is about fields describing the user, so a gift-message box needs nothing.
$0.0407 · covered by Priya
tools: $0.03 · 2 searches
Perfect. I will take the promo field, you take the summary panel - server confirm, agreed.
Two of the three replies answered Sam, and both are bylined “covered by Priya”. Nobody had to add a card to join the room.
What it cost and whose money paid - Priya’s credits on two of them, her own Anthropic key on the one she asked for herself.
The last message has no tag and no receipt. Only messages pointed at an assistant are read by one, and only those are charged.
Bring your own keys or use splitscreen credits, set the budget, invite the people who have neither. You start with this room’s question in the box.