ecommerce-integration-review

Reviews ecommerce integration code for payment, inventory, webhook, and order lifecycle correctness.

2|Updated Jun 1, 2026
One-click install
npx skills add https://github.com/FluxonLab/Skillry --skill ecommerce-integration-review-fluxonlab
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: ecommerce-integration-review
Source: https://github.com/FluxonLab/Skillry/tree/main/plugins/optional-specialist/skills/77-ecommerce-integration-review
Command: npx skills add https://github.com/FluxonLab/Skillry --skill ecommerce-integration-review-fluxonlab

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve? Ecommerce integrations fail in costly ways: double charges from missing idempotency keys, oversold inventory from race conditions, spoofed webhooks fulfilling unpaid orders, and PCI violations from card data touching application servers. This Skill provides a structured audit procedure to catch these defects before deployment. ## Core Features & Use Cases - Payment Integration Audit: Verifies Stripe, PayPal, and Adyen flows including PaymentIntent amounts, idempotency keys, webhook signature validation, and partial capture/refund handling. - Inventory & Order Integrity: Checks stock reservation patterns, atomic decrements, catalog sync retry logic, and order state machine transitions. - WordPress/WooCommerce Review: A merged reference covers nonces, capability checks, $wpdb->prepare usage, sanitization/escaping, and WooCommerce hook correctness. - Use Case: Before launching a WooCommerce store with a custom Stripe gateway, run this review to confirm webhook signature checks, idempotent order fulfillment, and absence of test credentials in production config. ## Quick Start Review this checkout and payment integration code for idempotency, webhook security, and inventory race conditions, then return a structured findings report.

Frequently Asked Questions about ecommerce-integration-review

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
Why is fulfilling orders on client redirect a problem?▼

Relying on the browser returning to a success URL fails when network errors interrupt the redirect, leaving paid orders unfulfilled. Always confirm payment through server-side webhooks with verified signatures before fulfilling orders.