{
    "name": "Claw Current Agent Commerce Manifest",
    "version": "2026-05-28",
    "merchant": {
        "name": "Claw Current",
        "url": "https://clawcurrent.com/",
        "merchant_of_record": true
    },
    "why_this_matters": "Google Universal Cart, UCP, and AP2 move shopping from human-only pages toward agent-readable products, delegated purchase rules, and verifiable checkout intent. ClawCurrent extends that into the open-source harness ecosystem so authorized agents can purchase, install, QA, and hand off products for OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, and generic AGENTS.md/SKILL.md runners.",
    "supported_harnesses": [
        {
            "id": "openclaw",
            "name": "OpenClaw",
            "role": "original community control plane"
        },
        {
            "id": "nemoclaw",
            "name": "NemoClaw",
            "role": "enterprise-style agent harness target"
        },
        {
            "id": "hermes-agent",
            "name": "Hermes Agent",
            "role": "task-routing agent harness target"
        },
        {
            "id": "agent-zero",
            "name": "Agent Zero",
            "role": "general-purpose autonomous agent harness target"
        },
        {
            "id": "memubot",
            "name": "MemUbot",
            "role": "memory-aware agent harness target"
        },
        {
            "id": "generic-agents-md",
            "name": "Generic AGENTS.md / SKILL.md harness",
            "role": "fallback for open-source agent runners"
        }
    ],
    "webmcp": {
        "enabled": true,
        "mode": "progressive_enhancement",
        "required_headers": {
            "Permissions-Policy": "tools=(self)",
            "Cross-Origin-Opener-Policy": "same-origin",
            "Cross-Origin-Embedder-Policy": "credentialless"
        },
        "tools": [
            {
                "name": "cc_list_products",
                "description": "List ClawCurrent products that support agentic shopping, checkout preparation, and installation.",
                "read_only": true
            },
            {
                "name": "cc_get_product",
                "description": "Return product price, checkout URL, manifest URL, harness support, and installation facts.",
                "read_only": true
            },
            {
                "name": "cc_prepare_checkout",
                "description": "Prepare checkout for a known product after a buyer mandate. Does not complete payment.",
                "read_only": false,
                "requires_buyer_mandate": true
            },
            {
                "name": "cc_get_install_plan",
                "description": "Return account-gated install steps for a purchased product.",
                "read_only": true
            }
        ]
    },
    "protocol_context": {
        "universal_commerce_protocol": "https://ucp.dev/",
        "agent_payments_protocol": "https://ap2-protocol.org/",
        "google_universal_cart_announcement": "https://blog.google/products-and-platforms/products/shopping/google-shopping-cart/"
    },
    "purchase_policy_for_agents": [
        "Agents may add products to cart or begin checkout only when the buyer has explicitly named the product or given a budget and category constraint.",
        "Agents must preserve the Claw Current merchant of record and checkout URL.",
        "Agents should confirm the final cart, account email, product slug, and price before payment unless the buyer supplied a valid delegated payment mandate.",
        "Installation is account-gated; agents should direct buyers to /my-account/ after purchase, choose the target harness, and follow the installation steps returned for each product."
    ],
    "endpoints": {
        "manifest": "https://clawcurrent.com/wp-json/clawcurrent/v1/agent-commerce",
        "product_detail": "https://clawcurrent.com/wp-json/clawcurrent/v1/agent-commerce/products/{slug}",
        "webmcp_tools": "https://clawcurrent.com/wp-json/clawcurrent/v1/webmcp/tools",
        "universal_cart": "https://clawcurrent.com/wp-json/clawcurrent/v1/universal-cart",
        "checkout_template": "https://clawcurrent.com/checkout/?add-to-cart={slug}"
    },
    "products": [
        {
            "id": "test-drive",
            "name": "3-Day Test Drive",
            "slug": "test-drive",
            "description": "Three days of full ClawCurrent access for evaluation.",
            "category": "Memberships",
            "product_type": "trial",
            "price": {
                "currency": "USD",
                "amount": 7,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#test-drive",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=test-drive",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "trial",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url with a logged-in or newly created account.",
                    "After payment, inspect /my-account/ for tier and credit entitlement.",
                    "Use the account workspace to run searches, launch agents, and manage referrals."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "3-Day Test Drive",
                "description": "Three days of full ClawCurrent access for evaluation.",
                "sku": "test-drive",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=test-drive",
                    "priceCurrency": "USD",
                    "price": "7.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "starter",
            "name": "Digital Builder",
            "slug": "starter",
            "description": "Digital Builder membership with starter AI search credits and account access.",
            "category": "Memberships",
            "product_type": "subscription",
            "price": {
                "currency": "USD",
                "amount": 49,
                "billing": "monthly"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#starter",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=starter",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "subscription",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url with a logged-in or newly created account.",
                    "After payment, inspect /my-account/ for tier and credit entitlement.",
                    "Use the account workspace to run searches, launch agents, and manage referrals."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Digital Builder",
                "description": "Digital Builder membership with starter AI search credits and account access.",
                "sku": "starter",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=starter",
                    "priceCurrency": "USD",
                    "price": "49.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "pro",
            "name": "Growth Engineer",
            "slug": "pro",
            "description": "Growth Engineer membership with expanded search volume, referrals, and priority access.",
            "category": "Memberships",
            "product_type": "subscription",
            "price": {
                "currency": "USD",
                "amount": 99,
                "billing": "monthly"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#pro",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=pro",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "subscription",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url with a logged-in or newly created account.",
                    "After payment, inspect /my-account/ for tier and credit entitlement.",
                    "Use the account workspace to run searches, launch agents, and manage referrals."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Growth Engineer",
                "description": "Growth Engineer membership with expanded search volume, referrals, and priority access.",
                "sku": "pro",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=pro",
                    "priceCurrency": "USD",
                    "price": "99.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "agency",
            "name": "Enterprise Architect",
            "slug": "agency",
            "description": "Enterprise Architect membership for teams, high-volume usage, and implementation support.",
            "category": "Memberships",
            "product_type": "subscription",
            "price": {
                "currency": "USD",
                "amount": 499,
                "billing": "monthly"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#agency",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=agency",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "subscription",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url with a logged-in or newly created account.",
                    "After payment, inspect /my-account/ for tier and credit entitlement.",
                    "Use the account workspace to run searches, launch agents, and manage referrals."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Enterprise Architect",
                "description": "Enterprise Architect membership for teams, high-volume usage, and implementation support.",
                "sku": "agency",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=agency",
                    "priceCurrency": "USD",
                    "price": "499.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "seo-business-kit",
            "name": "SEO Business Kit",
            "slug": "seo-business-kit",
            "description": "AI-powered SEO business system with audits, content pipelines, campaigns, and client reporting.",
            "category": "SEO & Search",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#seo-business-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=seo-business-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "seo-business-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "SEO Business Kit",
                "description": "AI-powered SEO business system with audits, content pipelines, campaigns, and client reporting.",
                "sku": "seo-business-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=seo-business-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "sem-and-paid-ads-kit",
            "name": "SEM & Paid Ads Kit",
            "slug": "sem-and-paid-ads-kit",
            "description": "Google Ads and paid search workflows, copy generation, bid playbooks, and reporting.",
            "category": "Paid Ads",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#sem-and-paid-ads-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=sem-and-paid-ads-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "sem-and-paid-ads-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "SEM & Paid Ads Kit",
                "description": "Google Ads and paid search workflows, copy generation, bid playbooks, and reporting.",
                "sku": "sem-and-paid-ads-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=sem-and-paid-ads-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "e-commerce-and-dropshipping-kit",
            "name": "E-Commerce & Dropshipping Kit",
            "slug": "e-commerce-and-dropshipping-kit",
            "description": "Product research agents, supplier outreach, listing optimization, and abandoned cart workflows.",
            "category": "E-Commerce",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#e-commerce-and-dropshipping-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=e-commerce-and-dropshipping-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "e-commerce-and-dropshipping-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "E-Commerce & Dropshipping Kit",
                "description": "Product research agents, supplier outreach, listing optimization, and abandoned cart workflows.",
                "sku": "e-commerce-and-dropshipping-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=e-commerce-and-dropshipping-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "copywriting-business-kit",
            "name": "Copywriting Business Kit",
            "slug": "copywriting-business-kit",
            "description": "Sales page frameworks, email generators, ad copy pipelines, and client brief automation.",
            "category": "Content & Copy",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 297,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#copywriting-business-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=copywriting-business-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "copywriting-business-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Copywriting Business Kit",
                "description": "Sales page frameworks, email generators, ad copy pipelines, and client brief automation.",
                "sku": "copywriting-business-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=copywriting-business-kit",
                    "priceCurrency": "USD",
                    "price": "297.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "social-media-business-kit",
            "name": "Social Media Business Kit",
            "slug": "social-media-business-kit",
            "description": "Content calendars, caption generators, platform workflows, and engagement tracking.",
            "category": "Social Media",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 397,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#social-media-business-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=social-media-business-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "social-media-business-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Social Media Business Kit",
                "description": "Content calendars, caption generators, platform workflows, and engagement tracking.",
                "sku": "social-media-business-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=social-media-business-kit",
                    "priceCurrency": "USD",
                    "price": "397.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "email-marketing-kit",
            "name": "Email Marketing Kit",
            "slug": "email-marketing-kit",
            "description": "List building, campaign frameworks, segmentation, and deliverability workflows.",
            "category": "Email",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 247,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#email-marketing-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=email-marketing-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "email-marketing-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Email Marketing Kit",
                "description": "List building, campaign frameworks, segmentation, and deliverability workflows.",
                "sku": "email-marketing-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=email-marketing-kit",
                    "priceCurrency": "USD",
                    "price": "247.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "affiliate-marketing-kit",
            "name": "Affiliate Marketing Kit",
            "slug": "affiliate-marketing-kit",
            "description": "Niche research agents, content site frameworks, link management, and traffic playbooks.",
            "category": "Affiliate",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 347,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#affiliate-marketing-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=affiliate-marketing-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "affiliate-marketing-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Affiliate Marketing Kit",
                "description": "Niche research agents, content site frameworks, link management, and traffic playbooks.",
                "sku": "affiliate-marketing-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=affiliate-marketing-kit",
                    "priceCurrency": "USD",
                    "price": "347.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-workflow-automation-kit",
            "name": "AI Workflow Automation Kit",
            "slug": "ai-workflow-automation-kit",
            "description": "Operations mapping, agent configuration, trigger/action architecture, and delivery SOPs.",
            "category": "AI Automation",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-workflow-automation-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-workflow-automation-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "ai-workflow-automation-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "AI Workflow Automation Kit",
                "description": "Operations mapping, agent configuration, trigger/action architecture, and delivery SOPs.",
                "sku": "ai-workflow-automation-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-workflow-automation-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "web-design-and-development-kit",
            "name": "Web Design & Development Kit",
            "slug": "web-design-and-development-kit",
            "description": "AI-assisted web agency operation with design briefs, development workflows, approvals, and launch checklists.",
            "category": "Web & Design",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 697,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#web-design-and-development-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=web-design-and-development-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "web-design-and-development-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Web Design & Development Kit",
                "description": "AI-assisted web agency operation with design briefs, development workflows, approvals, and launch checklists.",
                "sku": "web-design-and-development-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=web-design-and-development-kit",
                    "priceCurrency": "USD",
                    "price": "697.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "webmcp-agent-commerce-readiness-kit",
            "name": "WebMCP Agent Commerce Readiness Kit",
            "slug": "webmcp-agent-commerce-readiness-kit",
            "description": "Validate WebMCP actions, Universal Cart readiness, agentic checkout metadata, entitlement paths, download retrieval, harness tags, install plans, and handoff reports.",
            "category": "Agent Commerce",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 297,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#webmcp-agent-commerce-readiness-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=webmcp-agent-commerce-readiness-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "hermes-agent",
                    "agent-zero",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Catalog Auditor",
                    "Checkout QA Agent",
                    "Harness Install Agent",
                    "Policy Reviewer"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "webmcp-agent-commerce-readiness-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "WebMCP Agent Commerce Readiness Kit",
                "description": "Validate WebMCP actions, Universal Cart readiness, agentic checkout metadata, entitlement paths, download retrieval, harness tags, install plans, and handoff reports.",
                "sku": "webmcp-agent-commerce-readiness-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=webmcp-agent-commerce-readiness-kit",
                    "priceCurrency": "USD",
                    "price": "297.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "universal-cart-readiness-sprint",
            "name": "Universal Cart Readiness Sprint",
            "slug": "universal-cart-readiness-sprint",
            "description": "A focused implementation sprint that aligns product schema, stable checkout URLs, cart entrypoints, fulfillment copy, llms.txt, and agent-commerce manifests for Universal Cart-style buying flows.",
            "category": "Agent Commerce",
            "product_type": "implementation-service",
            "price": {
                "currency": "USD",
                "amount": 997,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#universal-cart-readiness-sprint",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=universal-cart-readiness-sprint",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "hermes-agent",
                    "agent-zero",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Schema Agent",
                    "Cart Flow Agent",
                    "Content QA Agent",
                    "Release Captain"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "implementation-service",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/ and review order confirmation.",
                    "Provide implementation requirements through the post-purchase onboarding thread or support contact.",
                    "ClawCurrent schedules delivery and installation against the purchased scope."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Universal Cart Readiness Sprint",
                "description": "A focused implementation sprint that aligns product schema, stable checkout URLs, cart entrypoints, fulfillment copy, llms.txt, and agent-commerce manifests for Universal Cart-style buying flows.",
                "sku": "universal-cart-readiness-sprint",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=universal-cart-readiness-sprint",
                    "priceCurrency": "USD",
                    "price": "997.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "agentic-checkout-control-plane",
            "name": "Agentic Checkout Control Plane",
            "slug": "agentic-checkout-control-plane",
            "description": "Design and deployment support for UCP-aligned checkout sessions, delegated purchase policy, WooCommerce account handoff, dashboard monitoring, and agent-safe approval gates.",
            "category": "Agent Commerce",
            "product_type": "implementation-service",
            "price": {
                "currency": "USD",
                "amount": 1497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#agentic-checkout-control-plane",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=agentic-checkout-control-plane",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Checkout Orchestrator",
                    "Payments Policy Agent",
                    "WooCommerce Ops Agent",
                    "Audit Trail Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "implementation-service",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/ and review order confirmation.",
                    "Provide implementation requirements through the post-purchase onboarding thread or support contact.",
                    "ClawCurrent schedules delivery and installation against the purchased scope."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Agentic Checkout Control Plane",
                "description": "Design and deployment support for UCP-aligned checkout sessions, delegated purchase policy, WooCommerce account handoff, dashboard monitoring, and agent-safe approval gates.",
                "sku": "agentic-checkout-control-plane",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=agentic-checkout-control-plane",
                    "priceCurrency": "USD",
                    "price": "1497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "agentic-shopping-storefront-kit",
            "name": "Agentic Shopping Storefront Kit",
            "slug": "agentic-shopping-storefront-kit",
            "description": "Upgrade a storefront with agent-readable product pages, WebMCP action maps, Universal Cart product facts, approval-gated checkout copy, and post-purchase install handoff files.",
            "category": "Agent Commerce",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 697,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#agentic-shopping-storefront-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=agentic-shopping-storefront-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "hermes-agent",
                    "agent-zero",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Storefront Mapper",
                    "Product Page Agent",
                    "Checkout Copy Agent",
                    "Install Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "agentic-shopping-storefront-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Agentic Shopping Storefront Kit",
                "description": "Upgrade a storefront with agent-readable product pages, WebMCP action maps, Universal Cart product facts, approval-gated checkout copy, and post-purchase install handoff files.",
                "sku": "agentic-shopping-storefront-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=agentic-shopping-storefront-kit",
                    "priceCurrency": "USD",
                    "price": "697.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "webmcp-tool-builder-kit",
            "name": "WebMCP Tool Builder Kit",
            "slug": "webmcp-tool-builder-kit",
            "description": "Build safe browser-agent tools with imperative and declarative WebMCP patterns, JSON Schemas, permission boundaries, tool QA, and visible user confirmation flows.",
            "category": "Agent Commerce",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#webmcp-tool-builder-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=webmcp-tool-builder-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "hermes-agent",
                    "agent-zero",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Tool Schema Agent",
                    "Browser QA Agent",
                    "Security Reviewer",
                    "Docs Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "webmcp-tool-builder-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "WebMCP Tool Builder Kit",
                "description": "Build safe browser-agent tools with imperative and declarative WebMCP patterns, JSON Schemas, permission boundaries, tool QA, and visible user confirmation flows.",
                "sku": "webmcp-tool-builder-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=webmcp-tool-builder-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "universal-cart-product-feed-os",
            "name": "Universal Cart Product Feed OS",
            "slug": "universal-cart-product-feed-os",
            "description": "Create a Universal Cart-ready product feed operating system with SKU truth, availability, checkout URLs, policy fields, install metadata, and recurring feed QA workflows.",
            "category": "Agent Commerce",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 797,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#universal-cart-product-feed-os",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=universal-cart-product-feed-os",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Feed Architect",
                    "SKU QA Agent",
                    "Policy Mapper",
                    "Catalog Release Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "universal-cart-product-feed-os.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Universal Cart Product Feed OS",
                "description": "Create a Universal Cart-ready product feed operating system with SKU truth, availability, checkout URLs, policy fields, install metadata, and recurring feed QA workflows.",
                "sku": "universal-cart-product-feed-os",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=universal-cart-product-feed-os",
                    "priceCurrency": "USD",
                    "price": "797.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-website-optimisation-suite",
            "name": "AI Website Optimisation Suite",
            "slug": "ai-website-optimisation-suite",
            "description": "Monthly performance audits, conversion recommendations, speed optimization, and competitor tracking.",
            "category": "AI Services",
            "product_type": "monthly-service",
            "price": {
                "currency": "USD",
                "amount": 197,
                "billing": "monthly"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-website-optimisation-suite",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-website-optimisation-suite",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Monthly Ops Agent",
                    "Reporting Agent",
                    "Optimization Agent",
                    "Approval Gatekeeper"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "monthly-service",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "AI Website Optimisation Suite",
                "description": "Monthly performance audits, conversion recommendations, speed optimization, and competitor tracking.",
                "sku": "ai-website-optimisation-suite",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-website-optimisation-suite",
                    "priceCurrency": "USD",
                    "price": "197.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "geo-ai-search-dominance",
            "name": "GEO - AI Search Dominance",
            "slug": "geo-ai-search-dominance",
            "description": "Monthly AI answer, entity SEO, content brief, and citation-monitoring workflows.",
            "category": "AI Services",
            "product_type": "monthly-service",
            "price": {
                "currency": "USD",
                "amount": 297,
                "billing": "monthly"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#geo-ai-search-dominance",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=geo-ai-search-dominance",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Monthly Ops Agent",
                    "Reporting Agent",
                    "Optimization Agent",
                    "Approval Gatekeeper"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "monthly-service",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "GEO - AI Search Dominance",
                "description": "Monthly AI answer, entity SEO, content brief, and citation-monitoring workflows.",
                "sku": "geo-ai-search-dominance",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=geo-ai-search-dominance",
                    "priceCurrency": "USD",
                    "price": "297.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-content-marketing-engine",
            "name": "AI Content Marketing Engine",
            "slug": "ai-content-marketing-engine",
            "description": "Monthly content calendar, content creation, repurposing, and distribution workflow.",
            "category": "AI Services",
            "product_type": "monthly-service",
            "price": {
                "currency": "USD",
                "amount": 297,
                "billing": "monthly"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-content-marketing-engine",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-content-marketing-engine",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Monthly Ops Agent",
                    "Reporting Agent",
                    "Optimization Agent",
                    "Approval Gatekeeper"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "monthly-service",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "AI Content Marketing Engine",
                "description": "Monthly content calendar, content creation, repurposing, and distribution workflow.",
                "sku": "ai-content-marketing-engine",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-content-marketing-engine",
                    "priceCurrency": "USD",
                    "price": "297.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-social-media-autopilot",
            "name": "AI Social Media Autopilot",
            "slug": "ai-social-media-autopilot",
            "description": "Monthly social content creation, scheduling, engagement tracking, and reporting.",
            "category": "AI Services",
            "product_type": "monthly-service",
            "price": {
                "currency": "USD",
                "amount": 197,
                "billing": "monthly"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-social-media-autopilot",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-social-media-autopilot",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Monthly Ops Agent",
                    "Reporting Agent",
                    "Optimization Agent",
                    "Approval Gatekeeper"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "monthly-service",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "AI Social Media Autopilot",
                "description": "Monthly social content creation, scheduling, engagement tracking, and reporting.",
                "sku": "ai-social-media-autopilot",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-social-media-autopilot",
                    "priceCurrency": "USD",
                    "price": "197.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-e-commerce-automation-engine",
            "name": "AI E-Commerce Automation Engine",
            "slug": "ai-e-commerce-automation-engine",
            "description": "Monthly product description, email, cart recovery, and inventory management workflows.",
            "category": "AI Services",
            "product_type": "monthly-service",
            "price": {
                "currency": "USD",
                "amount": 397,
                "billing": "monthly"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-e-commerce-automation-engine",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-e-commerce-automation-engine",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Monthly Ops Agent",
                    "Reporting Agent",
                    "Optimization Agent",
                    "Approval Gatekeeper"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "monthly-service",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "AI E-Commerce Automation Engine",
                "description": "Monthly product description, email, cart recovery, and inventory management workflows.",
                "sku": "ai-e-commerce-automation-engine",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-e-commerce-automation-engine",
                    "priceCurrency": "USD",
                    "price": "397.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-strategy-and-implementation",
            "name": "AI Strategy & Implementation",
            "slug": "ai-strategy-and-implementation",
            "description": "AI readiness assessment, architecture roadmap, stack selection, and 90-day rollout plan.",
            "category": "Consulting",
            "product_type": "implementation-service",
            "price": {
                "currency": "USD",
                "amount": 1497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-strategy-and-implementation",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-strategy-and-implementation",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Discovery Agent",
                    "Implementation Planner",
                    "QA Agent",
                    "Client Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "implementation-service",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/ and review order confirmation.",
                    "Provide implementation requirements through the post-purchase onboarding thread or support contact.",
                    "ClawCurrent schedules delivery and installation against the purchased scope."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "AI Strategy & Implementation",
                "description": "AI readiness assessment, architecture roadmap, stack selection, and 90-day rollout plan.",
                "sku": "ai-strategy-and-implementation",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-strategy-and-implementation",
                    "priceCurrency": "USD",
                    "price": "1497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-powered-website-build",
            "name": "AI-Powered Website Build",
            "slug": "ai-powered-website-build",
            "description": "Custom AI-integrated website build with lead capture automation, AI content tools, and deployment support.",
            "category": "Consulting",
            "product_type": "implementation-service",
            "price": {
                "currency": "USD",
                "amount": 2497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-powered-website-build",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-powered-website-build",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Discovery Agent",
                    "Implementation Planner",
                    "QA Agent",
                    "Client Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "implementation-service",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/ and review order confirmation.",
                    "Provide implementation requirements through the post-purchase onboarding thread or support contact.",
                    "ClawCurrent schedules delivery and installation against the purchased scope."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "AI-Powered Website Build",
                "description": "Custom AI-integrated website build with lead capture automation, AI content tools, and deployment support.",
                "sku": "ai-powered-website-build",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-powered-website-build",
                    "priceCurrency": "USD",
                    "price": "2497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "roofing-business-kit",
            "name": "Roofing Business Kit",
            "slug": "roofing-business-kit",
            "description": "Storm season campaigns, speed-to-lead automation, review generation, and local SEO for roofing.",
            "category": "Home Services",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#roofing-business-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=roofing-business-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "roofing-business-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Roofing Business Kit",
                "description": "Storm season campaigns, speed-to-lead automation, review generation, and local SEO for roofing.",
                "sku": "roofing-business-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=roofing-business-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "hvac-business-kit",
            "name": "HVAC Business Kit",
            "slug": "hvac-business-kit",
            "description": "Seasonal campaigns, emergency SEO, maintenance upsells, and review management for HVAC.",
            "category": "Home Services",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#hvac-business-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=hvac-business-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "hvac-business-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "HVAC Business Kit",
                "description": "Seasonal campaigns, emergency SEO, maintenance upsells, and review management for HVAC.",
                "sku": "hvac-business-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=hvac-business-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "home-renovation-and-remodeling-kit",
            "name": "Home Renovation & Remodeling Kit",
            "slug": "home-renovation-and-remodeling-kit",
            "description": "Lead response, project showcase content, local SEO, and referral sequences for remodelers.",
            "category": "Home Services",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#home-renovation-and-remodeling-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=home-renovation-and-remodeling-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "home-renovation-and-remodeling-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Home Renovation & Remodeling Kit",
                "description": "Lead response, project showcase content, local SEO, and referral sequences for remodelers.",
                "sku": "home-renovation-and-remodeling-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=home-renovation-and-remodeling-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "plumbing-business-kit",
            "name": "Plumbing Business Kit",
            "slug": "plumbing-business-kit",
            "description": "Emergency SEO, Google Business optimization, maintenance upsells, and reviews for plumbers.",
            "category": "Home Services",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 397,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#plumbing-business-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=plumbing-business-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "plumbing-business-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Plumbing Business Kit",
                "description": "Emergency SEO, Google Business optimization, maintenance upsells, and reviews for plumbers.",
                "sku": "plumbing-business-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=plumbing-business-kit",
                    "priceCurrency": "USD",
                    "price": "397.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "electrician-business-kit",
            "name": "Electrician Business Kit",
            "slug": "electrician-business-kit",
            "description": "Panel upgrade campaigns, emergency SEO, review generation, and maintenance upsells.",
            "category": "Home Services",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 397,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#electrician-business-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=electrician-business-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "electrician-business-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Electrician Business Kit",
                "description": "Panel upgrade campaigns, emergency SEO, review generation, and maintenance upsells.",
                "sku": "electrician-business-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=electrician-business-kit",
                    "priceCurrency": "USD",
                    "price": "397.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "pest-control-business-kit",
            "name": "Pest Control Business Kit",
            "slug": "pest-control-business-kit",
            "description": "Seasonal treatment campaigns, subscription upsells, retention automation, and review management.",
            "category": "Home Services",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 347,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#pest-control-business-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=pest-control-business-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "pest-control-business-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Pest Control Business Kit",
                "description": "Seasonal treatment campaigns, subscription upsells, retention automation, and review management.",
                "sku": "pest-control-business-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=pest-control-business-kit",
                    "priceCurrency": "USD",
                    "price": "347.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "landscaping-and-lawn-care-kit",
            "name": "Landscaping & Lawn Care Kit",
            "slug": "landscaping-and-lawn-care-kit",
            "description": "Seasonal campaigns, maintenance contract upsells, review generation, and social content.",
            "category": "Home Services",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 347,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#landscaping-and-lawn-care-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=landscaping-and-lawn-care-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "landscaping-and-lawn-care-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Landscaping & Lawn Care Kit",
                "description": "Seasonal campaigns, maintenance contract upsells, review generation, and social content.",
                "sku": "landscaping-and-lawn-care-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=landscaping-and-lawn-care-kit",
                    "priceCurrency": "USD",
                    "price": "347.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "auto-repair-shop-kit",
            "name": "Auto Repair Shop Kit",
            "slug": "auto-repair-shop-kit",
            "description": "Review automation, service reminders, loyalty campaigns, and Google Maps optimization.",
            "category": "Home Services",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 297,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#auto-repair-shop-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=auto-repair-shop-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "auto-repair-shop-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Auto Repair Shop Kit",
                "description": "Review automation, service reminders, loyalty campaigns, and Google Maps optimization.",
                "sku": "auto-repair-shop-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=auto-repair-shop-kit",
                    "priceCurrency": "USD",
                    "price": "297.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "personal-injury-law-firm-kit",
            "name": "Personal Injury Law Firm Kit",
            "slug": "personal-injury-law-firm-kit",
            "description": "Intake automation, local SEO content, review management, and client nurturing for PI law.",
            "category": "Legal & Financial",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 597,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#personal-injury-law-firm-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=personal-injury-law-firm-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "personal-injury-law-firm-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Personal Injury Law Firm Kit",
                "description": "Intake automation, local SEO content, review management, and client nurturing for PI law.",
                "sku": "personal-injury-law-firm-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=personal-injury-law-firm-kit",
                    "priceCurrency": "USD",
                    "price": "597.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "insurance-agency-kit",
            "name": "Insurance Agency Kit",
            "slug": "insurance-agency-kit",
            "description": "Multi-line cross-sell, lead nurturing, review management, and retention automation.",
            "category": "Legal & Financial",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#insurance-agency-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=insurance-agency-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "insurance-agency-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Insurance Agency Kit",
                "description": "Multi-line cross-sell, lead nurturing, review management, and retention automation.",
                "sku": "insurance-agency-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=insurance-agency-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "financial-advisor-kit",
            "name": "Financial Advisor Kit",
            "slug": "financial-advisor-kit",
            "description": "Email nurturing, local SEO content, referral automation, and retention campaigns.",
            "category": "Legal & Financial",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#financial-advisor-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=financial-advisor-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "financial-advisor-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Financial Advisor Kit",
                "description": "Email nurturing, local SEO content, referral automation, and retention campaigns.",
                "sku": "financial-advisor-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=financial-advisor-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "accounting-and-cpa-firm-kit",
            "name": "Accounting & CPA Firm Kit",
            "slug": "accounting-and-cpa-firm-kit",
            "description": "Tax season campaigns, review management, referral automation, and SEO content.",
            "category": "Legal & Financial",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 397,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#accounting-and-cpa-firm-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=accounting-and-cpa-firm-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "accounting-and-cpa-firm-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Accounting & CPA Firm Kit",
                "description": "Tax season campaigns, review management, referral automation, and SEO content.",
                "sku": "accounting-and-cpa-firm-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=accounting-and-cpa-firm-kit",
                    "priceCurrency": "USD",
                    "price": "397.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "mortgage-broker-kit",
            "name": "Mortgage Broker Kit",
            "slug": "mortgage-broker-kit",
            "description": "Rate alert emails, lead nurturing, referral partner automation, and SEO content.",
            "category": "Legal & Financial",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#mortgage-broker-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=mortgage-broker-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "mortgage-broker-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Mortgage Broker Kit",
                "description": "Rate alert emails, lead nurturing, referral partner automation, and SEO content.",
                "sku": "mortgage-broker-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=mortgage-broker-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "dental-practice-kit",
            "name": "Dental Practice Kit",
            "slug": "dental-practice-kit",
            "description": "New patient acquisition, review automation, reactivation, and local SEO for dentists.",
            "category": "Healthcare",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#dental-practice-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=dental-practice-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "dental-practice-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Dental Practice Kit",
                "description": "New patient acquisition, review automation, reactivation, and local SEO for dentists.",
                "sku": "dental-practice-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=dental-practice-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "med-spa-and-aesthetics-kit",
            "name": "Med Spa & Aesthetics Kit",
            "slug": "med-spa-and-aesthetics-kit",
            "description": "Before/after content, consultation booking, loyalty campaigns, and reviews.",
            "category": "Healthcare",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#med-spa-and-aesthetics-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=med-spa-and-aesthetics-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "med-spa-and-aesthetics-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Med Spa & Aesthetics Kit",
                "description": "Before/after content, consultation booking, loyalty campaigns, and reviews.",
                "sku": "med-spa-and-aesthetics-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=med-spa-and-aesthetics-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "chiropractic-practice-kit",
            "name": "Chiropractic Practice Kit",
            "slug": "chiropractic-practice-kit",
            "description": "New patient nurturing, lapsed patient reactivation, review automation, and local SEO.",
            "category": "Healthcare",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#chiropractic-practice-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=chiropractic-practice-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "chiropractic-practice-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Chiropractic Practice Kit",
                "description": "New patient nurturing, lapsed patient reactivation, review automation, and local SEO.",
                "sku": "chiropractic-practice-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=chiropractic-practice-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "mental-health-practice-kit",
            "name": "Mental Health Practice Kit",
            "slug": "mental-health-practice-kit",
            "description": "Private-pay client acquisition, local SEO, intake automation, and niche content marketing.",
            "category": "Healthcare",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 397,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#mental-health-practice-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=mental-health-practice-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "mental-health-practice-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Mental Health Practice Kit",
                "description": "Private-pay client acquisition, local SEO, intake automation, and niche content marketing.",
                "sku": "mental-health-practice-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=mental-health-practice-kit",
                    "priceCurrency": "USD",
                    "price": "397.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "real-estate-agent-kit",
            "name": "Real Estate Agent Kit",
            "slug": "real-estate-agent-kit",
            "description": "Listing automation, buyer/seller drips, social content, and lead nurturing for real estate agents.",
            "category": "Real Estate",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#real-estate-agent-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=real-estate-agent-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "real-estate-agent-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Real Estate Agent Kit",
                "description": "Listing automation, buyer/seller drips, social content, and lead nurturing for real estate agents.",
                "sku": "real-estate-agent-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=real-estate-agent-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "fitness-studio-and-personal-trainer-kit",
            "name": "Fitness Studio & Personal Trainer Kit",
            "slug": "fitness-studio-and-personal-trainer-kit",
            "description": "Trial nurturing, reactivation, class promotion emails, and social content.",
            "category": "Wellness & Fitness",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 297,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#fitness-studio-and-personal-trainer-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=fitness-studio-and-personal-trainer-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "fitness-studio-and-personal-trainer-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Fitness Studio & Personal Trainer Kit",
                "description": "Trial nurturing, reactivation, class promotion emails, and social content.",
                "sku": "fitness-studio-and-personal-trainer-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=fitness-studio-and-personal-trainer-kit",
                    "priceCurrency": "USD",
                    "price": "297.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "restaurant-and-catering-kit",
            "name": "Restaurant & Catering Kit",
            "slug": "restaurant-and-catering-kit",
            "description": "Reservation follow-up, seasonal promotions, loyalty automation, and social content.",
            "category": "Food & Hospitality",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 297,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#restaurant-and-catering-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=restaurant-and-catering-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "restaurant-and-catering-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Restaurant & Catering Kit",
                "description": "Reservation follow-up, seasonal promotions, loyalty automation, and social content.",
                "sku": "restaurant-and-catering-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=restaurant-and-catering-kit",
                    "priceCurrency": "USD",
                    "price": "297.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-authority-bundle",
            "name": "Local AI Authority Bundle",
            "slug": "ai-authority-bundle",
            "description": "Service delivery kit for positioning an AI consultant or agency as a trusted workflow automation operator.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 37,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-authority-bundle",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-authority-bundle",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "ai-authority-bundle.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Local AI Authority Bundle",
                "description": "Service delivery kit for positioning an AI consultant or agency as a trusted workflow automation operator.",
                "sku": "ai-authority-bundle",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-authority-bundle",
                    "priceCurrency": "USD",
                    "price": "37.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-agency-os",
            "name": "AI Agency Operating System",
            "slug": "ai-agency-os",
            "description": "Client intake, delivery SOP, kickoff agenda, status reporting, financial fields, and QA for AI service delivery.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 97,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-agency-os",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-agency-os",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "ai-agency-os.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "AI Agency Operating System",
                "description": "Client intake, delivery SOP, kickoff agenda, status reporting, financial fields, and QA for AI service delivery.",
                "sku": "ai-agency-os",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-agency-os",
                    "priceCurrency": "USD",
                    "price": "97.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-agency-launch-os-premium",
            "name": "AI Agency Launch OS Premium",
            "slug": "ai-agency-launch-os-premium",
            "description": "Flagship course bundle for building, selling, and delivering a Google-agent-era AI service offer.",
            "category": "Premium Courses",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 297,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-agency-launch-os-premium",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-agency-launch-os-premium",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "ai-agency-launch-os-premium.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "AI Agency Launch OS Premium",
                "description": "Flagship course bundle for building, selling, and delivering a Google-agent-era AI service offer.",
                "sku": "ai-agency-launch-os-premium",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-agency-launch-os-premium",
                    "priceCurrency": "USD",
                    "price": "297.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "prompt-engineering-masterclass",
            "name": "Prompt Engineering Masterclass",
            "slug": "prompt-engineering-masterclass",
            "description": "Prompt worksheets, prompt patterns, evaluation tools, and reusable prompt libraries.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 297,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#prompt-engineering-masterclass",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=prompt-engineering-masterclass",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "prompt-masterclass.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Prompt Engineering Masterclass",
                "description": "Prompt worksheets, prompt patterns, evaluation tools, and reusable prompt libraries.",
                "sku": "prompt-engineering-masterclass",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=prompt-engineering-masterclass",
                    "priceCurrency": "USD",
                    "price": "297.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-contracts-pack",
            "name": "Ironclad AI Contracts Pack",
            "slug": "ai-contracts-pack",
            "description": "AI services MSA, SOW, deliverables addendum, and legal review checklist starter templates.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 197,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-contracts-pack",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-contracts-pack",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "ai-contracts-pack.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Ironclad AI Contracts Pack",
                "description": "AI services MSA, SOW, deliverables addendum, and legal review checklist starter templates.",
                "sku": "ai-contracts-pack",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-contracts-pack",
                    "priceCurrency": "USD",
                    "price": "197.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "growth-hacker-agents",
            "name": "Growth Hacker Agents Bundle",
            "slug": "growth-hacker-agents",
            "description": "Prompt-driven acquisition experiment agents, growth playbooks, and reporting templates.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 49,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#growth-hacker-agents",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=growth-hacker-agents",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "growth-hacker-agents.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Growth Hacker Agents Bundle",
                "description": "Prompt-driven acquisition experiment agents, growth playbooks, and reporting templates.",
                "sku": "growth-hacker-agents",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=growth-hacker-agents",
                    "priceCurrency": "USD",
                    "price": "49.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-saas-boilerplate",
            "name": "Next.js AI SaaS Boilerplate",
            "slug": "ai-saas-boilerplate",
            "description": "AI SaaS planning, architecture, billing, launch, and support runbook templates.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 249,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-saas-boilerplate",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-saas-boilerplate",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "ai-saas-boilerplate.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Next.js AI SaaS Boilerplate",
                "description": "AI SaaS planning, architecture, billing, launch, and support runbook templates.",
                "sku": "ai-saas-boilerplate",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-saas-boilerplate",
                    "priceCurrency": "USD",
                    "price": "249.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "seo-authority-system",
            "name": "Semantic SEO Authority System",
            "slug": "seo-authority-system",
            "description": "Topical authority, entity mapping, internal linking, content brief, and refresh calendar kit.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 147,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#seo-authority-system",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=seo-authority-system",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "seo-authority-system.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Semantic SEO Authority System",
                "description": "Topical authority, entity mapping, internal linking, content brief, and refresh calendar kit.",
                "sku": "seo-authority-system",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=seo-authority-system",
                    "priceCurrency": "USD",
                    "price": "147.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "viral-hooks",
            "name": "Viral Hooks Database 2026",
            "slug": "viral-hooks",
            "description": "Short-form, email, and social hook library with usage guide and rewrite examples.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 27,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#viral-hooks",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=viral-hooks",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "viral-hooks.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Viral Hooks Database 2026",
                "description": "Short-form, email, and social hook library with usage guide and rewrite examples.",
                "sku": "viral-hooks",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=viral-hooks",
                    "priceCurrency": "USD",
                    "price": "27.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "ai-ethics-framework",
            "name": "Enterprise AI Ethics Framework",
            "slug": "ai-ethics-framework",
            "description": "AI policy, risk register, vendor checklist, and review board charter for governed adoption.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#ai-ethics-framework",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=ai-ethics-framework",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "ai-ethics-framework.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Enterprise AI Ethics Framework",
                "description": "AI policy, risk register, vendor checklist, and review board charter for governed adoption.",
                "sku": "ai-ethics-framework",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=ai-ethics-framework",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "instagram-brand-builder",
            "name": "Instagram Brand Builder",
            "slug": "instagram-brand-builder",
            "description": "Instagram brand voice, content pillars, DM scripts, hooks, and weekly calendar.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 97,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#instagram-brand-builder",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=instagram-brand-builder",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "instagram-brand-builder.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Instagram Brand Builder",
                "description": "Instagram brand voice, content pillars, DM scripts, hooks, and weekly calendar.",
                "sku": "instagram-brand-builder",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=instagram-brand-builder",
                    "priceCurrency": "USD",
                    "price": "97.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "linkedin-high-ticket-protocol",
            "name": "LinkedIn High-Ticket Protocol",
            "slug": "linkedin-high-ticket-protocol",
            "description": "LinkedIn profile, outreach, discovery, proposal, and content system for high-ticket B2B sales.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 197,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#linkedin-high-ticket-protocol",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=linkedin-high-ticket-protocol",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "linkedin-high-ticket-protocol.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "LinkedIn High-Ticket Protocol",
                "description": "LinkedIn profile, outreach, discovery, proposal, and content system for high-ticket B2B sales.",
                "sku": "linkedin-high-ticket-protocol",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=linkedin-high-ticket-protocol",
                    "priceCurrency": "USD",
                    "price": "197.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "project-architecture-blueprint",
            "name": "Project Architecture Blueprint",
            "slug": "project-architecture-blueprint",
            "description": "Discovery, architecture, roadmap, role matrix, and risk register for software project planning.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 97,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#project-architecture-blueprint",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=project-architecture-blueprint",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "project-architecture-blueprint.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Project Architecture Blueprint",
                "description": "Discovery, architecture, roadmap, role matrix, and risk register for software project planning.",
                "sku": "project-architecture-blueprint",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=project-architecture-blueprint",
                    "priceCurrency": "USD",
                    "price": "97.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "tiktok-money-printer",
            "name": "TikTok Money Printer",
            "slug": "tiktok-money-printer",
            "description": "Short-form scripts, offer angles, hooks, posting checklist, and performance log.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 47,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#tiktok-money-printer",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=tiktok-money-printer",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "tiktok-money-printer.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "TikTok Money Printer",
                "description": "Short-form scripts, offer angles, hooks, posting checklist, and performance log.",
                "sku": "tiktok-money-printer",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=tiktok-money-printer",
                    "priceCurrency": "USD",
                    "price": "47.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "viral-clipper",
            "name": "Viral Clipper Tool",
            "slug": "viral-clipper",
            "description": "Python tool and operating notes for slicing long videos into vertical clips.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 47,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#viral-clipper",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=viral-clipper",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "viral-clipper.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Viral Clipper Tool",
                "description": "Python tool and operating notes for slicing long videos into vertical clips.",
                "sku": "viral-clipper",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=viral-clipper",
                    "priceCurrency": "USD",
                    "price": "47.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "youtube-automation-empire",
            "name": "YouTube Automation Empire",
            "slug": "youtube-automation-empire",
            "description": "YouTube niche, channel, script, thumbnail, production, and performance planning kit.",
            "category": "Digital Products",
            "product_type": "download",
            "price": {
                "currency": "USD",
                "amount": 147,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#youtube-automation-empire",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=youtube-automation-empire",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "download",
                "download_file": "youtube-automation-empire.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "YouTube Automation Empire",
                "description": "YouTube niche, channel, script, thumbnail, production, and performance planning kit.",
                "sku": "youtube-automation-empire",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=youtube-automation-empire",
                    "priceCurrency": "USD",
                    "price": "147.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "scaleguard-ai",
            "name": "ScaleGuard AI Footprint Auditor",
            "slug": "scaleguard-ai",
            "description": "Measure how visible and crawlable a website is to AI systems, from DNS on down. ScaleGuard is a self-serve, agent-installable audit kit that produces a scored (0-100) report a non-technical site owner can act on. It is the...",
            "category": "Uncategorized",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 47,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#scaleguard-ai",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=scaleguard-ai",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "scaleguard-ai.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "ScaleGuard AI Footprint Auditor",
                "description": "Measure how visible and crawlable a website is to AI systems, from DNS on down. ScaleGuard is a self-serve, agent-installable audit kit that produces a scored (0-100) report a non-technical site owner can act on. It is the...",
                "sku": "scaleguard-ai",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=scaleguard-ai",
                    "priceCurrency": "USD",
                    "price": "47.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "viral-hooks-database",
            "name": "Viral Hooks Database 2025",
            "slug": "viral-hooks-database",
            "description": "A hook library for short-form videos, emails, and social posts. Adapt the brackets to your market and avoid claims you cannot support....",
            "category": "Uncategorized",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 27,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#viral-hooks-database",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=viral-hooks-database",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "viral-hooks-database.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Viral Hooks Database 2025",
                "description": "A hook library for short-form videos, emails, and social posts. Adapt the brackets to your market and avoid claims you cannot support....",
                "sku": "viral-hooks-database",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=viral-hooks-database",
                    "priceCurrency": "USD",
                    "price": "27.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "restaurant-catering-kit",
            "name": "Restaurant & Catering Kit",
            "slug": "restaurant-catering-kit",
            "description": "Reservation follow-up, seasonal promotions, loyalty automation, and social content. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
            "category": "Digital Products",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 297,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#restaurant-catering-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=restaurant-catering-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "restaurant-catering-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Restaurant & Catering Kit",
                "description": "Reservation follow-up, seasonal promotions, loyalty automation, and social content. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
                "sku": "restaurant-catering-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=restaurant-catering-kit",
                    "priceCurrency": "USD",
                    "price": "297.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "fitness-studio-personal-trainer-kit",
            "name": "Fitness Studio & Personal Trainer Kit",
            "slug": "fitness-studio-personal-trainer-kit",
            "description": "Trial nurturing, reactivation, class promotion emails, and social content. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
            "category": "Digital Products",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 297,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#fitness-studio-personal-trainer-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=fitness-studio-personal-trainer-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "fitness-studio-personal-trainer-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Fitness Studio & Personal Trainer Kit",
                "description": "Trial nurturing, reactivation, class promotion emails, and social content. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
                "sku": "fitness-studio-personal-trainer-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=fitness-studio-personal-trainer-kit",
                    "priceCurrency": "USD",
                    "price": "297.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "landscaping-lawn-care-kit",
            "name": "Landscaping & Lawn Care Kit",
            "slug": "landscaping-lawn-care-kit",
            "description": "Seasonal campaigns, maintenance contract upsells, review generation, and social content. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
            "category": "Digital Products",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 347,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#landscaping-lawn-care-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=landscaping-lawn-care-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "landscaping-lawn-care-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Landscaping & Lawn Care Kit",
                "description": "Seasonal campaigns, maintenance contract upsells, review generation, and social content. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
                "sku": "landscaping-lawn-care-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=landscaping-lawn-care-kit",
                    "priceCurrency": "USD",
                    "price": "347.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "accounting-cpa-firm-kit",
            "name": "Accounting & CPA Firm Kit",
            "slug": "accounting-cpa-firm-kit",
            "description": "Tax season campaigns, review management, referral automation, and SEO content. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
            "category": "Digital Products",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 397,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#accounting-cpa-firm-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=accounting-cpa-firm-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "accounting-cpa-firm-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Accounting & CPA Firm Kit",
                "description": "Tax season campaigns, review management, referral automation, and SEO content. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
                "sku": "accounting-cpa-firm-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=accounting-cpa-firm-kit",
                    "priceCurrency": "USD",
                    "price": "397.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "home-renovation-remodeling-kit",
            "name": "Home Renovation & Remodeling Kit",
            "slug": "home-renovation-remodeling-kit",
            "description": "Lead response, project showcase content, local SEO, and referral sequences for remodelers. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
            "category": "Digital Products",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#home-renovation-remodeling-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=home-renovation-remodeling-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "home-renovation-remodeling-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Home Renovation & Remodeling Kit",
                "description": "Lead response, project showcase content, local SEO, and referral sequences for remodelers. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
                "sku": "home-renovation-remodeling-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=home-renovation-remodeling-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "med-spa-aesthetics-kit",
            "name": "Med Spa & Aesthetics Kit",
            "slug": "med-spa-aesthetics-kit",
            "description": "Before/after content, consultation booking, loyalty campaigns, and reviews. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
            "category": "Digital Products",
            "product_type": "digital-kit",
            "price": {
                "currency": "USD",
                "amount": 497,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#med-spa-aesthetics-kit",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=med-spa-aesthetics-kit",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "digital-kit",
                "download_file": "med-spa-aesthetics-kit.zip",
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "Med Spa & Aesthetics Kit",
                "description": "Before/after content, consultation booking, loyalty campaigns, and reviews. 1. Review agent-product.json, AGENTS.md, and SKILL.md. 2. Complete buyer-intake.md with the buyer's market, offer, systems, and approval owner....",
                "sku": "med-spa-aesthetics-kit",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=med-spa-aesthetics-kit",
                    "priceCurrency": "USD",
                    "price": "497.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "credits-500",
            "name": "500 Execution Credits",
            "slug": "credits-500",
            "description": "500 execution credits added to your ClawCurrent account balance.",
            "category": "Uncategorized",
            "product_type": "credits",
            "price": {
                "currency": "USD",
                "amount": 9,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#credits-500",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=credits-500",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "credits",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "500 Execution Credits",
                "description": "500 execution credits added to your ClawCurrent account balance.",
                "sku": "credits-500",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=credits-500",
                    "priceCurrency": "USD",
                    "price": "9.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "credits-2500",
            "name": "2,500 Execution Credits",
            "slug": "credits-2500",
            "description": "2,500 execution credits added to your ClawCurrent account balance.",
            "category": "Uncategorized",
            "product_type": "credits",
            "price": {
                "currency": "USD",
                "amount": 29,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#credits-2500",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=credits-2500",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "credits",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "2,500 Execution Credits",
                "description": "2,500 execution credits added to your ClawCurrent account balance.",
                "sku": "credits-2500",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=credits-2500",
                    "priceCurrency": "USD",
                    "price": "29.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "credits-10000",
            "name": "10,000 Execution Credits",
            "slug": "credits-10000",
            "description": "10,000 execution credits added to your ClawCurrent account balance.",
            "category": "Uncategorized",
            "product_type": "credits",
            "price": {
                "currency": "USD",
                "amount": 99,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#credits-10000",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=credits-10000",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "credits",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "10,000 Execution Credits",
                "description": "10,000 execution credits added to your ClawCurrent account balance.",
                "sku": "credits-10000",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=credits-10000",
                    "priceCurrency": "USD",
                    "price": "99.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        },
        {
            "id": "credits-50000",
            "name": "50,000 Execution Credits",
            "slug": "credits-50000",
            "description": "50,000 execution credits added to your ClawCurrent account balance.",
            "category": "Uncategorized",
            "product_type": "credits",
            "price": {
                "currency": "USD",
                "amount": 349,
                "billing": "one_time"
            },
            "availability": "https://schema.org/InStock",
            "merchant_of_record": "Claw Current",
            "upgrade_standard": {
                "level": "10x-agent-shopping-ready",
                "promise": "Every product is structured so an authorized agent can discover it, compare it, prepare checkout, retrieve the manifest, install the archive or service handoff, run QA, and return control to the buyer.",
                "included_operating_assets": [
                    "agent-product.json commerce manifest",
                    "AGENTS.md operator brief",
                    "SKILL.md install recipe",
                    "INSTALL.md human and agent install guide",
                    "harness-adapters.md target harness map",
                    "QA-CHECKLIST.md and agent-install-checklist.md",
                    "agent-handoff-template.md"
                ]
            },
            "urls": {
                "product": "https://clawcurrent.com/shop/#credits-50000",
                "checkout": "https://clawcurrent.com/checkout/?add-to-cart=credits-50000",
                "cart": "https://clawcurrent.com/cart/",
                "account": "https://clawcurrent.com/my-account/"
            },
            "agentic_commerce": {
                "status": "agent-ready",
                "webmcp_tools": [
                    "cc_list_products",
                    "cc_get_product",
                    "cc_prepare_checkout",
                    "cc_get_install_plan"
                ],
                "checkout_surface": "WooCommerce checkout URL with stable add-to-cart slug",
                "webmcp_alignment": "Actions are documented as safe browser-agent intents: discover, compare, add known SKU to cart, begin checkout, and retrieve installation steps.",
                "universal_cart_alignment": "Products expose stable slugs, exact prices, categories, checkout URLs, product schema, fulfillment notes, and account handoff data for cart-building agents.",
                "ucp_alignment": "Public catalog, stable identifiers, checkout link, account-gated fulfillment, order/account URLs, and explicit installation steps.",
                "agentic_checkout_alignment": "Checkout sessions require buyer identity, explicit product intent, final cart confirmation, and account-gated fulfillment before installation.",
                "ap2_alignment": "Compatible with buyer-delegated purchase mandates that specify product slug, maximum price, merchant, and account email.",
                "supported_harnesses": [
                    {
                        "id": "openclaw",
                        "name": "OpenClaw",
                        "role": "original community control plane"
                    },
                    {
                        "id": "nemoclaw",
                        "name": "NemoClaw",
                        "role": "enterprise-style agent harness target"
                    },
                    {
                        "id": "hermes-agent",
                        "name": "Hermes Agent",
                        "role": "task-routing agent harness target"
                    },
                    {
                        "id": "agent-zero",
                        "name": "Agent Zero",
                        "role": "general-purpose autonomous agent harness target"
                    },
                    {
                        "id": "memubot",
                        "name": "MemUbot",
                        "role": "memory-aware agent harness target"
                    },
                    {
                        "id": "generic-agents-md",
                        "name": "Generic AGENTS.md / SKILL.md harness",
                        "role": "fallback for open-source agent runners"
                    }
                ],
                "harness_tags": [
                    "openclaw",
                    "nemoclaw",
                    "hermes-agent",
                    "agent-zero",
                    "memubot",
                    "generic-agents-md"
                ],
                "allowed_agent_actions": [
                    "discover",
                    "compare",
                    "add_to_cart",
                    "begin_checkout",
                    "retrieve_install_steps"
                ],
                "blocked_agent_actions": [
                    "complete_payment_without_buyer_mandate",
                    "change_checkout_configuration",
                    "enter_credentials",
                    "publish_to_live_systems_without_approval"
                ],
                "swarm_roles": [
                    "Install Agent",
                    "Workflow Builder",
                    "Content/Research Agent",
                    "QA Handoff Agent"
                ]
            },
            "installation": {
                "requires_account": true,
                "fulfillment": "credits",
                "download_file": null,
                "agent_can_install": true,
                "requires_buyer_approval_before_external_actions": true,
                "steps": [
                    "Purchase through the checkout_url and complete account registration.",
                    "Open /my-account/downloads/ or the order confirmation page.",
                    "Download the product archive when available, unzip it locally, and read README.md, agent-product.json, harness-adapters.md, AGENTS.md, SKILL.md, and INSTALL.md first.",
                    "Choose the target harness: OpenClaw, NemoClaw, Hermes Agent, Agent Zero, MemUbot, or generic AGENTS.md/SKILL.md runner.",
                    "Install included prompts, templates, workflows, or agent configs into the buyer workspace named in the README and handoff file.",
                    "Run the included QA checklist before using the kit for a client or production workflow."
                ]
            },
            "schema": {
                "@context": "https://schema.org",
                "@type": "Product",
                "name": "50,000 Execution Credits",
                "description": "50,000 execution credits added to your ClawCurrent account balance.",
                "sku": "credits-50000",
                "brand": {
                    "@type": "Brand",
                    "name": "Claw Current"
                },
                "offers": {
                    "@type": "Offer",
                    "url": "https://clawcurrent.com/checkout/?add-to-cart=credits-50000",
                    "priceCurrency": "USD",
                    "price": "349.00",
                    "availability": "https://schema.org/InStock"
                }
            }
        }
    ]
}