Changelog

What's shipping

New skills, updates, npm releases and commits — pulled live from GitHub and npm.

Announcementsnpm releasesGitHub commits

April 2026

  1. Latest releasewoocommerce-ai-skills@1.0.2
    Released v1.0.2

    Current latest version on npm.

  2. Commit841ea4c
    chore: bump version to 1.0.2

    https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  3. Commitaa60491
    docs: add gh skill install, skills.sh badge, and distribution milestones to README

    - Add skills.sh badge and link - Add `gh skill install` as a dedicated install method for GitHub Copilot - Update Platform Compatibility table with full install commands - Mark npm, gh skill, and skills.sh as completed in Project Status https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  4. Commitbb2e3f6
    chore: bump version to 1.0.1

    https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  5. Commitbc9a484
    fix: add CNAME file for agenticwoo.dev custom domain on GitHub Pages

    https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  6. Commit8588aad
    fix: add 6 missing endpoints to REST API index — fixes validate CI

    Missing registrations that caused validate-api-index.mjs to exit 1: - GET /products/tags (woo-product-tag-bulk-update) - GET /products/attributes (woo-variant-attribute-normalizer) - PUT /products/{id}/variations/{variation_id} (woo-inventory-adjustment) - POST /orders/{id}/notes (woo-bulk-order-notes) - GET /settings/{group_id} (woo-settings-export) - GET /settings/{group_id}/{setting_id} (woo-settings-export) Also: renamed {group} → {group_id} to match skill frontmatter exactly, removed system_status orphan (no skill uses it). https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  7. Commit7bc64c6
    docs: add shields.io badges to README

    npm version, npm monthly downloads, skills count, MIT license, validate CI status, and website link — all using WooCommerce purple. https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  8. Commit1034c55
    feat: add agenticwoo.dev as the official project domain

    - README.md: added domain + npm badge at top, updated website link in Install section and Project Status checklist - package.json: updated homepage to https://agenticwoo.dev - website/astro.config.mjs: set site to agenticwoo.dev, base to / (custom domain serves from root, not a GitHub Pages subdirectory) - website/src/layouts/Layout.astro: updated header brand name and footer; added npm link to nav https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  9. Commit32b69ef
    docs: add Claude concierge onboarding prompt

    Step-by-step guided setup prompt for Claude Code — installs the plugin, collects store credentials one question at a time without echoing secrets, and presents a skill menu to get users into their first analysis quickly. Paste into any Claude session to begin a guided WooCommerce AI Skills setup. https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  10. Commit0a9a4f4
    chore: remove all third-party brand references from codebase

    - PLAN.md: replaced brand mentions in Vision, Key Technical Decisions, and Open Questions with neutral/own-brand language - docs/ARCHITECTURE.md: renamed "Comparison to Shopify Admin Skills" section to "Design Principles vs. Other AI Skill Systems"; removed all specific brand references from the comparison table and prose - scripts/lint-skills.mjs: removed the Shopify copy-paste detection check — no longer relevant now all docs are brand-neutral https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  11. Commitee5ffc7
    docs: add end-user tutorial with Claude, ChatGPT, and Cursor examples

    Covers installation, WooCommerce API key setup, and five worked use cases: - Revenue by period (finance, read-only) - Bulk price adjustment (merchandising, dry-run + confirm flow) - Fulfillment health check (order-management) - Customer tier tagging (customer-ops, dry-run + confirm) - Top products report (analytics) Platform sections for Claude Code, Claude.ai (paste-skill pattern), ChatGPT (analyst mode, Custom GPT with Actions, OpenAI API + Python), and Cursor (@rule invocation). Includes tips on dry-run, date format, rate limits, combining skills, a quick-reference skill card, and a troubleshooting table. https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  12. Commit248555b
    fix: lint-skills — correct markdownlint API, banner mismatch, disabled rules

    - lint-skills.mjs: markdownlint/async lint() is callback-based, not Promise-based; wrap in Promise manually; remove dead createRequire code - .markdownlint.json: disable MD031, MD032, MD036, MD040 — all conflict with the deliberate style patterns used consistently across all 56 skills (bold step headers, bare code blocks, no extra blank lines in lists) - woo-product-data-completeness-score/SKILL.md: fix Session Tracking banner skill name truncated to "woo-product-data-completeness" — now matches frontmatter name "woo-product-data-completeness-score" https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  13. Releasewoocommerce-ai-skills@1.0.0
    Released v1.0.0

    Published to npm registry as woocommerce-ai-skills@1.0.0.

  14. Commitd71feb9
    Update CONTRIBUTING.md
    navarroido
  15. Commitcf8c50c
    Update README.md
    navarroido
  16. Launch

    WooCommerce Skills v1 — 56 skills now public

    The first wave of 56 production-ready agent skills is live. Revenue analytics, customer ops, inventory audits, refunds and more — installable with one command.

  17. Commit639e58d
    fix: move glob to dependencies, add npm publish workflow

    - Move glob from devDependencies to dependencies — bin/install.mjs imports glob at runtime; it must be available when installed from npm - Remove scripts/ from package files — those are maintainer tools that require devDependencies not available in a consumer install - Add .github/workflows/publish-npm.yml — automatically publishes to npm when a GitHub Release is created; requires NPM_TOKEN repository secret https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  18. Commit2f79920
    feat: implement Phase 4 — distribution, website, and community tooling

    Distribution: - skills.json: root-level manifest listing all 56 skills with metadata, endpoints, mutating flag, and path — consumed by the npx skills add CLI - bin/install.mjs: standalone NPX installer; copies skills to correct locations for Claude (.claude-plugin), Cursor (.cursor/rules/*.mdc), Cline (.clinerules), Copilot (.github/copilot-instructions.md), Gemini - scripts/build-manifest.mjs: regenerates skills.json from skill frontmatter - package.json: removed private flag, added bin entry, files whitelist, build:manifest and install:* scripts, type: module Documentation website: - website/: Astro static site scaffold - src/pages/index.astro: homepage with install commands, stats, category cards - src/pages/catalog.astro: full skill table with read/write badges - src/layouts/Layout.astro: shared header/footer, WooCommerce purple theme - public/favicon.svg: W icon in brand purple - astro.config.mjs: configured for GitHub Pages deployment - .github/workflows/deploy-website.yml: auto-deploys on push to main Community tooling: - templates/skill-scaffold.sh: convenience wrapper → scripts/scaffold.sh - .github/ISSUE_TEMPLATE/new-skill.md: structured new skill proposals - .github/ISSUE_TEMPLATE/bug-report.md: skill bug reports - .github/PULL_REQUEST_TEMPLATE.md: contributor checklist Updates: - README.md: status section updated — all items marked complete - PLAN.md: Phase 4 marked complete with itemised list https://claude.ai/code/session_01VVV38dPXNRQGATu666c39N

    claude
  19. New skills

    New bulk-ops skills added

    Added woo-bulk-price-adjustment, woo-bulk-order-notes, woo-cancel-and-restock and woo-coupon-bulk-generator. All bulk skills now ship with a dry-run preview by default.

  20. Update

    Read-only analytics pack

    Shipped a focused analytics pack: revenue-by-period, revenue-by-product-category, repeat-purchase-rate, refund-rate-analysis and customer-cohort-analysis.

wFrom woo/skills

Get new skills first.

New WooCommerce agent skills, operator playbooks, and updates — straight to your inbox.

No spam. Unsubscribe any time.