Our Collection
🤖 Open Commerce Protocol (OCP) — Developer Info
v1.0
This store is agent-ready. AI agents and tools can discover the catalog and interact with it using the OCP standard.
// OCP browser runtime — registered when this page loaded
OCP.init({
handlers: {
search_products: // filters the in-page catalog
get_product: // returns product by ID
get_product_qa: // answers questions from agent_notes
compare_products:// side-by-side comparison
check_availability: // in_stock + quantity
}
});
// Tools registered with WebMCP (Chrome 146+) and window.__ocp fallback
// Checkout always redirects to human — no autonomous purchase
// Optional: Enable browser-local LLM (zero cloud tokens!)
OCP.init({
handlers: { /* ... */ },
widget: {
browserLLM: { // runs in WebGPU
model: 'SmolLM2-360M-Instruct-q4f16_1-MLC',
loadStrategy: 'on-widget-open', // lazy load
confidenceThreshold: 0.7, // below this → LLM
}
}
});