What problem does it solve? Building a checkout funnel involves coordinating cart state, server-side pricing, tax and shipping calculation, coupon validation, inventory locking, and payment confirmation, where mistakes cause overselling, double charges, or PCI compliance violations. ## Core Features & Use Cases - Server-Side Pricing and Discounts: Recalculates all line items, taxes, and shipping server-side, and applies coupons atomically with row-level locks to prevent race conditions. - Inventory and Idempotency Safety: Uses two-phase atomic inventory holds and idempotency keys so double submissions never produce duplicate charges or oversold stock. - PCI DSS and Agentic Checkout Compliance: Enforces SRI hashes, CSP nonces, tamper detection, EMV 3DS authentication, and 2026 agentic checkout patterns like spending limits and address validation. - Use Case: When adding a coupon feature to a storefront, use this Skill to implement server-side validation with atomic usage increments, recalculate totals, and verify the full funnel from cart to confirmation email. ## Quick Start Use the handle-checkout-flow skill to build a checkout flow with server-side pricing, coupon validation, and idempotent payment submission for my storefront.