Loading...
Loading...
Deep expertise in E-commerce domain logic (Cart, Checkout, SKU). Trigger this when building shopping features on top of MVC or ADR.
npx skill4agent add gravito-framework/gravito commerce-blueprintDRAFTADDRESS_SETSHIPPING_SELECTEDPAYMENT_PENDINGCOMPLETEDFAILEDexport interface CartItem {
sku: string;
quantity: number;
unitPrice: number; // Snapshot
attributes: Record<string, any>; // Color, Size
}async function validateInventory(items: CartItem[]) {
// Rule: Lock inventory during checkout to avoid overselling.
}mvc-masteradr-scaffoldSKUInventoryOrdercommerce-blueprintDomain Services