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

@ai-kits/wp-ag-kit

v1.0.8

Published

WordPress WooCommerce Antigravity Kit - Complete WordPress and WooCommerce development environment for Antigravity IDE with skills, agents, workflows, and rules.

Downloads

806

Readme

WordPress WooCommerce Antigravity Kit

Complete WordPress development environment for Antigravity IDE, VS Code Copilot, and Claude

npm version License: MIT

🏗️ Multi-Platform Folder Structure

This kit is a Common Agent Skill Package designed to provide 100% logic parity across different IDEs and AI Assistants. Depending on which command you run, it scaffolds the exact same knowledge base but with platform-specific entry points:

1. Antigravity IDE (ag-agent init)

Entry point for the native Antigravity experience.

.agent/
├── agents/         ✅ WordPress AI Personas
├── workflows/      ✅ Semi-automated procedures
├── rules/          ✅ Core Protocol (GEMINI.md)
├── skills/         ✅ 14 Technical Instruction Modules
└── shared/         ✅ Data maps and Scripts

2. VS Code Copilot (ag-agent init-copilot)

Entry point for GitHub Copilot in VS Code.

.github/
├── copilot-instructions.md  🧠 System Prompt (The Brain)
├── agents/                  ✅ Personas
├── ag-workflows/            ✅ Procedures (Renamed to avoid GA conflict)
├── rules/                   ✅ Protocol
├── skills/                  ✅ Technical Modules
└── shared/                  ✅ Data maps

3. Claude Code / Assistants (ag-agent init-claude)

Entry point for Claude-specific workflows.

.claude/
├── instructions.md  🧠 System Prompt (The Brain)
├── agents/          ✅ Personas
├── workflows/       ✅ Procedures
├── rules/           ✅ Protocol
├── skills/          ✅ Technical Modules
└── shared/          ✅ Data maps

🚀 Quick Install

# Initialize for Antigravity IDE (creates .agent/)
npx @ai-kits/wp-ag-kit init

# Initialize for VS Code Copilot (creates .github/)
npx @ai-kits/wp-ag-kit init-copilot

# Initialize for Claude Code (creates .claude/)
npx @ai-kits/wp-ag-kit init-claude

# Or install globally
npm install -g @ai-kits/wp-ag-kit
# for antigravity
wp-ai init  

# for copilot
wp-ai init-copilot

# for claude
wp-ai init-claude

📦 What You Get

This kit provides a complete WordPress and WooCommerce development environment adapted for modern AI assistants:

  • 14 WordPress and WooCommerce Skills - Expert instruction modules for blocks, themes, plugins, performance, and more
  • 3 Specialized Agents - WordPress Expert, Frontend Expert, and WooCommerce Expert AI personas
  • 2 Workflows - Automated linting and block creation procedures
  • Global Rules - GEMINI.md for consistent, high-quality behavior
  • Assistant Optimization - Specialized prompt mapping for GPT-4o and Claude 3.5 Sonnet

🤖 Use in VS Code (Copilot & Claude)

Turn your general-purpose AI into a Senior WordPress Architect.

GitHub Copilot (GPT-4o / Claude 3.5 Sonnet)

  1. Run ag-agent init-copilot in your project root.
  2. It creates a .github/ folder containing the full knowledge base and a copilot-instructions.md.
  3. Copilot will automatically read these instructions and follow the Antigravity protocols (Security, Performance, Socratic questioning).

Claude

  1. Run ag-agent init-claude in your project root.
  2. It creates a .claude/ folder with the full knowledge base.
  3. Claude will now be "Antigravity-aware," referencing the local skills for every task.

💡 CLI Usage

Initialize Your Project for Antigavity

cd your-wordpress-project
ag-agent init

Available Commands

ag-agent init              # Initialize .agent folder (Antigravity IDE)
ag-agent init-copilot      # Initialize VS Code Copilot support (.github/)
ag-agent init-claude       # Initialize Claude support (.claude/)
ag-agent list-skills       # Show available skills
ag-agent list-agents       # Show available agents
ag-agent list-installed    # Show what's in your project
ag-agent use-skill <name>  # Add a specific skill
ag-agent help              # Show help

📚 Available Skills

| Skill | Description | |-------|-------------| | wp-project-triage | Automatic project detection and classification | | wp-block-development | Gutenberg block creation and management | | wp-block-themes | Block theme development with theme.json | | wp-plugin-development | Plugin architecture, hooks, and security | | wp-rest-api | REST API endpoints and controllers | | wp-interactivity-api | Frontend interactivity with data-wp-* directives | | wp-abilities-api | Capability-based permissions | | wp-wpcli-and-ops | WP-CLI automation and operations | | wp-performance | Backend performance profiling and optimization | | wp-phpstan | Static analysis with PHPStan | | wp-playground | WordPress Playground workflows | | wpds | WordPress Design System | | wordpress-router | Smart project routing | | woocommerce | Comprehensive WooCommerce development and copy standards |

🤖 Specialized Agents

WordPress Expert

Master WordPress developer that uses all 14 skills for comprehensive WordPress development.

WordPress Frontend Expert

Specialist for Block Themes, Interactivity API, and modern WordPress UI/UX.

WooCommerce Expert

Specialized in e-commerce architecture, checkout flows, and WooCommerce core integration.

🔄 Workflows

  • /wp-lint - Run WordPress-specific linting (PHPStan + @wordpress/scripts)
  • /create-block - Scaffold a new Gutenberg block

🎯 Requirements

  • Node.js 16 or higher
  • WordPress 6.9+ (for skills compatibility)
  • PHP 7.2.24+ (for WordPress compatibility)

📖 Documentation

🛠️ Development

# Install dependencies
npm install

# Run tests
npm test

# Build distribution (VS Code / Claude / Codex)
npm run build

🤝 Contributing

We welcome contributions! See CONTRIBUTING.md for guidelines.

📄 License

MIT © Anikesh Kumar

🔗 Links


Made with ❤️ for the WordPress, WooCommerce and Antigravity communities