wp.org-compliant 28-file PHP plugin scaffold
Production-ready WP plugin with the main file's required headers, readme.txt with all 5 wp.org sections (Description / Installation / FAQ / Screenshots / Changelog), PHPCS + PHPStan (level 7) + PHPUnit + WP coding standards + WC sniffs all wired in composer.json.
30-rule checker-woo package
Auto-rejects (eval / shell_exec) + nonce verification + capability checks + output escaping + $wpdb->prepare + plugin-version-matches-readme + text-domain-matches-slug + multi-user enabled + WC Blocks preferred over shortcodes.
WordPress Playground live preview
Browser-side WASM-WP runs your generated plugin against a real WP + WooCommerce instance. No hosting needed, stateful for the session, seeds 3 demo products. Optional wp-env config for local CI parity.
wp.org Submission Companion
2-phase walkthrough: Phase 1 ships the packaged zip via GH Actions release.yml + uploads to wordpress.org/plugins/developers/add. Phase 2 (post-acceptance) ships a copyable SVN runbook for ongoing updates — the wp.org-standard flow, no API exists.
Per-platform rejection-loop
13 wp.org-specific categories sourced from Plugin Directory review checklist + WC.com Marketplace patterns: GPL violations, unsanitized input, missing nonces, eval/shell_exec, readme format, text-domain mismatch, WC Blocks required, plugin-slug collisions.
Stripe Checkout billing scaffold
WC has no first-party billing primitive. The scaffold ships includes/class-billing.php with Stripe Checkout integration + hash_hmac + hash_equals signature verification, plus a license-gate class for premium-feature gating.