Agent Plugins Marketplace
All plugins

web-commerce

v0.1.2

Web commerce integration specialist — scaffolds production-ready payment/commerce backends (Stripe, Square, or Shopify; one per site) into static or JS-framework sites at full depth: catalog, cart, hosted/embedded checkout, verified webhooks, idempotency, POS/inventory reconciliation, and order handling. Three first-class provider tracks behind a thin shared payment-lifecycle contract — NOT a leaky unified adapter. Generates first-party code (no dormant/deprecated deps), with PCI card-isolation, webhook signature verification, idempotency, and env-only secrets as GENERATED-CODE invariants. The backend-integration lane that plugs into web-design's build pipeline; every payment/PII security verdict routes to ravenclaude-core/security-reviewer. Inherits ravenclaude-core protocols.

Claude Code5 Skills

By Matt CorbettLicense: MIT7 GitHub starsUpdated last week

Directory evidence

Runtimes
Claude Code
Parsed components
5 skill or MCP entries
Source updated
Sep 15, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install web-commerce for Claude Code

Installs for the current user
claude plugin marketplace add IchenDEV/agent-plugin-mkt
claude plugin marketplace update agent-plugin-marketplace
claude plugin install web-commerce@agent-plugin-marketplace

Paste and run these commands in a terminal with Claude Code. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/mcorbett51090/RavenClaude

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The plugin root is plugins/web-commerce/.

Plugin files

plugins/web-commerce/
├── .claude-plugin/plugin.json
├── skills/commerce-gold-standard-rubric/SKILL.md
├── skills/payment-lifecycle-contract/SKILL.md
├── skills/pos-reconciliation-loop/SKILL.md
├── skills/provider-track-selection/SKILL.md
└── skills/webhook-hardening/SKILL.md

Included Skills5

commerce-gold-standard-rubricskills/commerce-gold-standard-rubric/SKILL.md

Score a scaffolded commerce integration against the seven-dimension gold-standard rubric and run the BUILD-measure-fix iteration loop until it passes. Use after scaffolding a provider track, before calling it done. Each dimension is a falsifiable test; a live provider-sandbox test is required beyond the static checks.

payment-lifecycle-contractskills/payment-lifecycle-contract/SKILL.md

Understand and extend the thin shared contract every provider track implements — the payment-lifecycle interface plus advertised capabilities. Use when adding a provider, wiring a track to the contract, or deciding what belongs in the shared seam vs a track. The ONLY cross-provider abstraction; catalog/cart/inventory are track-specific.

pos-reconciliation-loopskills/pos-reconciliation-loop/SKILL.md

Reconcile online inventory/catalog with an in-store POS (Square), keeping the POS as the source of truth. Use when a storefront's online store must mirror in-store stock. One-way sync driven by catalog/inventory webhooks, de-duped by event id — never bidirectional. Square-specific; Shopify inverts and Stripe has no catalog.

provider-track-selectionskills/provider-track-selection/SKILL.md

Choose the commerce provider (Stripe / Square / Shopify) and the tier (static hosted-checkout vs framework embedded-SDK) for a site, then point at the right template set. Use at the START of any commerce integration, before scaffolding. Routes on how the merchant's inventory truth already lives and the site's runtime.

webhook-hardeningskills/webhook-hardening/SKILL.md

Harden a commerce webhook handler: verify the provider signature with a constant-time compare BEFORE parsing the body, then de-duplicate retried deliveries by provider event id. Use when writing or reviewing any Stripe/Square/Shopify webhook receiver. Two invariants (verify-before-parse, event-id idempotency) that are non-negotiable.

Plugin manifests1

plugins/web-commerce/.claude-plugin/plugin.json
{
  "name": "web-commerce",
  "version": "0.1.2",
  "description": "Web commerce integration specialist — scaffolds production-ready payment/commerce backends (Stripe, Square, or Shopify; one per site) into static or JS-framework sites at full depth: catalog, cart, hosted/embedded checkout, verified webhooks, idempotency, POS/inventory reconciliation, and order handling. Three first-class provider tracks behind a thin shared payment-lifecycle contract — NOT a leaky unified adapter. Generates first-party code (no dormant/deprecated deps), with PCI card-isolation, webhook signature verification, idempotency, and env-only secrets as GENERATED-CODE invariants. The backend-integration lane that plugs into web-design's build pipeline; every payment/PII security verdict routes to ravenclaude-core/security-reviewer. Inherits ravenclaude-core protocols.",
  "author": {
    "name": "Matt Corbett"
  },
  "homepage": "https://github.com/mcorbett51090/RavenClaude",
  "license": "MIT",
  "keywords": [
    "commerce",
    "payments",
    "stripe",
    "square",
    "shopify",
    "checkout",
    "webhooks",
    "pci",
    "pos-integration",
    "ecommerce-integration"
  ],
  "requires": {
    "plugins": [
      "ravenclaude-core@>=0.7.0"
    ]
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[web-commerce on Agent Plugins Marketplace](https://pluginsmp.com/plugins/web-commerce)