npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

woocommerce-ai-skills

v1.0.2

Published

Community-maintained AI agent skills for operating WooCommerce stores — products, orders, customers, coupons, finance, and more

Downloads

276

Readme

WooCommerce AI Skills

Community-maintained AI agent skills for operating WooCommerce stores — products, orders, customers, coupons, finance, and more.

npm version npm downloads Skills License Validate Website skills.sh

Website: agenticwoo.dev · npm: woocommerce-ai-skills · skills.sh: navarroido/Woocommerce-skill


What Is This?

WooCommerce AI Skills is a collection of markdown-based workflow files that teach any AI agent (Claude, Cursor, Cline, Copilot, Gemini CLI, Codex) how to operate a WooCommerce store via the REST API.

Each skill is a single markdown file with YAML frontmatter that describes:

  • What the skill does
  • Which WooCommerce REST endpoints it uses
  • Step-by-step instructions for the agent
  • Dry-run preview before any mutations
  • Authentication requirements

Install

For Claude Code

/plugin install navarroido/Woocommerce-skill

For GitHub Copilot (via gh CLI)

gh skill install navarroido/Woocommerce-skill

For all other agents (Cursor, Cline, Gemini CLI, Codex)

npx skills add navarroido/Woocommerce-skill

Full documentation at agenticwoo.dev


Quick Start

After installing, connect to your store:

store_url: https://mystore.com
consumer_key: ck_xxxxxxxxxxxxxxxxxxxx
consumer_secret: cs_xxxxxxxxxxxxxxxxxxxx

Generate API keys at: WooCommerce → Settings → Advanced → REST API → Add Key

Then ask your agent:

  • "Adjust all products in the Accessories category down 10%"
  • "Show me all orders stuck in processing for more than 3 days"
  • "Find customers who haven't ordered in 90 days for a win-back campaign"
  • "Generate 50 unique coupon codes for 15% off, expires end of month"
  • "Audit all products missing SEO descriptions"

Skill Categories

| Category | Skills | Description | |----------|--------|-------------| | merchandising | 15 | Products, pricing, inventory, SEO, images | | order-management | 8 | Orders, fulfillment, tracking, cancellations | | customer-ops | 6 | Segmentation, LTV tiers, B2B, duplicates | | customer-support | 5 | Refunds, returns, WISMO, address corrections | | marketing | 5 | Coupons, abandoned cart, win-back, loyalty | | finance | 7 | Revenue, tax, AOV, refund rate, shipping cost | | store-management | 5 | Shipping zones, tax rates, gateways, webhooks | | analytics | 5 | Top products, repeat purchase, cross-sell |

Total: 56 skills

See CATALOG.md for the full skill list with descriptions.


How Skills Work

Each skill follows a 4-phase execution model:

  1. Query — Fetch data from WooCommerce REST API (/wp-json/wc/v3/)
  2. Preview — Compute planned changes, output preview (dry_run mode)
  3. Confirm — Agent requests user approval before any mutations
  4. Report — Document exactly what changed, export CSV if applicable

All mutating skills default to dry_run: true on first run.


Authentication

WooCommerce uses Consumer Key / Consumer Secret authentication.

Set these environment variables for your agent session:

WC_STORE_URL=https://mystore.com
WC_CONSUMER_KEY=ck_xxxxxxxxxxxxxxxxxxxx
WC_CONSUMER_SECRET=cs_xxxxxxxxxxxxxxxxxxxx

See docs/AUTHENTICATION.md for full setup instructions.


Platform Compatibility

| Platform | Install Method | Context File | |----------|---------------|--------------| | Claude Code | /plugin install navarroido/Woocommerce-skill | Plugin manifest | | GitHub Copilot | gh skill install navarroido/Woocommerce-skill | Copilot context | | Cursor | npx skills add navarroido/Woocommerce-skill | .cursor/rules/*.mdc | | Cline | npx skills add navarroido/Woocommerce-skill | .clinerules | | Gemini CLI | npx skills add navarroido/Woocommerce-skill | GEMINI.md | | Codex | npx skills add navarroido/Woocommerce-skill | Context injection |


Contributing

See CONTRIBUTING.md and docs/CONTRIBUTING.md.

To scaffold a new skill:

pnpm scaffold

Project Status

  • [x] Architecture and skill format defined
  • [x] Full 56-skill catalog (all categories complete)
  • [x] Automated catalog generation (pnpm build:catalog)
  • [x] skills.json manifest for NPX distribution (pnpm build:manifest)
  • [x] CI validation pipeline (GitHub Actions: validate + lint on every PR)
  • [x] NPX installer (bin/install.mjs — supports Claude, Cursor, Cline, Copilot, Gemini)
  • [x] Documentation website at agenticwoo.dev
  • [x] Published to npm as woocommerce-ai-skills
  • [x] Published to GitHub Copilot skills system (gh skill install navarroido/Woocommerce-skill)
  • [x] Listed on skills.sh

See PLAN.md for the full roadmap.


License

MIT — see LICENSE