{
    "name": "Refinery WordPress Plugin Catalog",
    "version": "1.0.0",
    "description": "WooCommerce store for Refinery WordPress plugins. Exposes catalog browsing, plugin comparison, and cart operations as callable skills for AI agents.",
    "url": "https://refinerywp.com/",
    "documentation": "https://refinerywp.com/.well-known/agent-skills/index.json",
    "supportedInterfaces": [
        {
            "transport": "http",
            "url": "https://refinerywp.com/wp-json/wc/store/v1/",
            "protocol": "rest"
        },
        {
            "transport": "webmcp",
            "url": "https://refinerywp.com/",
            "protocol": "navigator.modelContext"
        }
    ],
    "capabilities": {
        "streaming": false,
        "pushNotifications": false,
        "stateTransitions": false,
        "extensions": [
            {
                "uri": "https://github.com/google-agentic-commerce/ap2/v1",
                "description": "Supports the Agent Payments Protocol with the merchant role. Payments are processed via Stripe.",
                "required": false,
                "params": {
                    "roles": [
                        "merchant"
                    ],
                    "paymentMethods": [
                        "card"
                    ],
                    "paymentProcessor": "stripe"
                }
            }
        ]
    },
    "skills": [
        {
            "id": "list_plugins",
            "name": "list_plugins",
            "description": "List all Refinery WordPress plugins for sale, including names, summaries, starting prices, stock status, and product URLs."
        },
        {
            "id": "get_plugin_details",
            "name": "get_plugin_details",
            "description": "Get full details for one Refinery plugin by slug, including all license tiers (Personal, Business, Agency) with prices and variation IDs."
        },
        {
            "id": "compare_plugins",
            "name": "compare_plugins",
            "description": "Compare multiple Refinery plugins side-by-side. Returns details for each, useful for \"what is the difference between X and Y\" questions."
        },
        {
            "id": "add_to_cart",
            "name": "add_to_cart",
            "description": "Add a specific Refinery plugin tier to the cart. Returns checkout URL on success."
        }
    ]
}