nvdigitalsolutions/mcp-ai-wpoos

NV Digital Open Operator System (NV oOS) is an Object-Oriented AI framework for WordPress connecting your data with OpenAI, Gemini, Anthropic, DeepSeek, Hugging Face, Cloudflare, OpenRouter & Ollama (Local) models. Create & manage AI Assistants that can interact with users, access WordPress (API) data, & perform as a MCP Server & Chat Agent

This repository also configures its own agents. See what mcp-ai-wpoos tells them →

5Stars on the repository
138Mods indexed here, across every type
todayLast push, which is what freshness is scored on
customA LICENSE file GitHub cannot name, so bodies are not copied

wc-coupon-dynamic

25

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Synthesize WooCommerce coupons at runtime without creating shopcoupon posts in the DB — via the woocommercegetshopcoupondata filter, the hidden-but-powerful virtual-coupon mechanism. Filter fires inside WCCoupon::construct, and a non-false return becomes a fully functional coupon read through readmanualcoupon. Plus…

not rated 5 today A 202 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Use WooCommerce's customer and session APIs correctly — WC ships its own session handler (WCSessionHandler, single wpwoocommercesessions table for both guests and logged-in users) and its own customer object (WCCustomer via WC()->customer), separate from $SESSION / native PHP sessions / wpgetcurrentuser. AI…

not rated 5 today A 228 tokens

wc-emails-classic

27

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Customize WooCommerce transactional emails the classic PHP-template way (NOT the block email editor) — extend WCEmail, declare $id / $title / $templatehtml / $templateplain / $placeholders, hook trigger() to a woocommerceorderstatusnotification action, register via the woocommerceemailclasses filter. Plus the…

not rated 5 today A 199 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Make a WooCommerce plugin HPOS-compatible (High-Performance Order Storage, default-on in WC 10.x) — declare via FeaturesUtil::declarecompatibility on beforewoocommerceinit, replace $wpdb->postmeta / WPQuery order code with wcgetorders + WCOrder::getmeta / updatemetadata, gate runtime branches on…

not rated 5 today A 171 tokens

wc-payment-gateway

29

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Register a custom WooCommerce payment gateway — extend WCPaymentGateway, declare $id / $title / $supports, implement processpayment returning array(result, redirect), optionally processrefund when refunds is in supports, register via the woocommercepaymentgateways filter. The single most-confused thing AI gets wrong…

not rated 5 today A 185 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Builds a WooCommerce-style AJAX product search select (the selectWoo / wooselect dropdown) — class="wc-product-search" + the data-action attribute pointing to woocommercejsonsearchproducts (products only) or woocommercejsonsearchproductsandvariations (products AND variations, often the right choice). Pre-selected…

not rated 5 today A 209 tokens

wc-rest-api-v4

31

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Use the WooCommerce REST API v4 (namespace wc/v4, since WC 10.2) alongside or in place of v3 — verified route catalog (Customers, Orders, Refunds, Products, ShippingZones with DELETE, ShippingZoneMethod, Fulfillments, segmented Settings under /wc/v4/settings/ ), the hook prefix pattern woocommercerestapiv4 , shared…

not rated 5 today A 208 tokens

wc-shipping-method

32

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Registers a custom WooCommerce shipping method with explicit control over which fields appear in the per-zone settings modal — extend WCShippingMethod, declare your fields in initformfields (and ONLY those fields, no unset / DOM hacks / CSS hides), set the $supports array to control whether the modal opens (omit…

not rated 5 today A 199 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Register a custom WooCommerce shipping provider — extend AbstractShippingProvider and add it via the woocommercefulfillmentshippingproviders filter (WC 10.1+). Distinct from shipping methods (rate at checkout) — a provider is a carrier identity (UPS, FedEx, DHL, your custom carrier) used by the Fulfillments system for…

not rated 5 today A 201 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

WooCommerce Stripe Gateway skill for the fragile My Account payment-methods and add-payment-method flows. Use when editing or replacing Woo account templates, payment-methods.php, form-add-payment-method.php, Stripe card/token UI, saved cards, SetupIntent, Payment Element/UPE, billing details, WC payment tokens…

not rated 5 today A 151 tokens

wc-variations-data

35

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Read, query, and write WooCommerce product variations correctly — the WCProductVariable (parent) vs WCProductVariation (child) class split, the parent's getvariationprices( $fordisplay ) cached aggregation and how to bust the wcvarprices transient, programmatic variation creation via WCProductVariation + setparentid +…

not rated 5 today A 205 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Mutate WooCommerce variation prices via filters — pick the right layer (woocommerceproductgetprice for simple/non-variation products, woocommerceproductvariationgetprice for variations, the woocommercevariationprices family for the parent min/max aggregation that feeds the catalog "From X to Y" range), and the…

not rated 5 today A 180 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

WooCommerce Memberships access, restriction, drip-content, product-grant, and member-discount playbook. Use when code checks whether a user can view/purchase content or products, changes scheduled access dates, customizes protected/public content, maps parent or variation products that grant membership access, applies…

not rated 5 today A 119 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

WooCommerce Memberships storage and relationship map for membership plan CPTs, user membership CPTs, post statuses, plan/user membership meta keys, rule storage, profile-field storage, order grant meta, and WooCommerce Subscriptions-linked memberships. Use when code reads or writes wcmembershipplan, wcusermembership…

not rated 5 today A 130 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Curated WooCommerce Memberships hook and extension-point map for plugins that build on user memberships, membership plans, status transitions, purchase/free-signup grants, profile fields, REST API, webhooks, members-area templates, CSV import/export, and Woo Subscriptions-linked memberships. Use when the user asks for…

not rated 5 today A 154 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

WooCommerce Subscriptions data model, switcher, and gifting reference for exact order type names, product type slugs, subscription meta keys, schedule/date keys, related-order relation meta, switch cart data, switch order data, switched item types/meta, proration hooks, and WCS Gifting recipient storage. Use when code…

not rated 5 today A 159 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Safely integrate with WooCommerce Subscriptions renewal, next-payment scheduling, Action Scheduler events, and retry flow. Shows when to use WCSubscription::updatedates, updatestatus, wcscreaterenewalorder, wcsrenewalordercreated, woocommercescheduledsubscriptionpayment…

not rated 5 today A 124 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Curated WooCommerce Subscriptions hook and extension-point map for choosing the right action/filter around WCSubscription creation, status transitions, date changes, renewal orders, scheduled payments, payment retries, gateway events, switching, gifting, related orders, REST/API responses, and account/admin UI. Use…

not rated 5 today A 160 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Programmatically clear WP Rocket cache from a third-party plugin / theme when data changes — the public rocketclean function family (rocketcleanpost, rocketcleanfiles, rocketcleanterm, rocketcleanuser, rocketcleanhome, rocketcleanminify, rocketcleancachebusting, rocketcleandomain, rocketcleancachedir). Critical…

not rated 5 today A 216 tokens

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Customize WP Rocket behavior from a third-party plugin / theme via filter hooks — exclude URIs / cookies / user agents / REST API namespaces from caching, configure CDN URL rewrites, extend lazy load handling, override capability requirements, hook into Action Scheduler integration. Critical guidance …

not rated 5 today A 176 tokens

algorithmic-art

45

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Creating algorithmic art using p5.js with seeded randomness and interactive parameter exploration. Use this when users request creating art using code, generative art, algorithmic art, flow fields, or particle systems. Create original algorithmic art rather than copying existing artists' work to avoid copyright…

not rated 5 today A 62 tokens

brand-guidelines

46

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Applies Anthropic's official brand colors and typography to any sort of artifact that may benefit from having Anthropic's look-and-feel. Use it when brand colors or style guidelines, visual formatting, or company design standards apply.

not rated 5 today A 50 tokens

browser-use

47

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Control a headless browser to navigate URLs, click elements, fill forms, extract content from JavaScript-rendered pages, take screenshots, and automate end-to-end web workflows.

not rated 5 today A 38 tokens

canvas-design

48

nvdigitalsolutions/mcp-ai-wpoos

Skill Claude CodeCodex

Create beautiful visual art in .png and .pdf documents using design philosophy. You should use this skill when the user asks to create a poster, piece of art, design, or other static piece. Create original visual designs, never copying existing artists' work to avoid copyright violations.

not rated 5 today A 59 tokens

At most 3 mods per repository are shown here, and a mod shipped inside a plugin is left to that plugin's page — the rest are on their repository pages: