🤖 AI-Ready Store

This store speaks
AI fluently.

Web Agent Bridge exposes structured capabilities so AI agents can
browse, decide, and purchase — without scraping a single HTML tag.

// AI agent discovers capabilities in one request
const wab = await fetch('/.well-known/wab.json').then(r => r.json());
// → { actions: ["list_products", "purchase", "check_order", ...] }

Traditional vs WAB

The same task. Two completely different approaches.

😰

Traditional Scraping

  • Parse 50KB of HTML to find product names
  • Guess CSS selectors: .price? #cost? [data-price]?
  • Reverse-engineer form fields and endpoints
  • Breaks on every UI redesign
  • No way to know what actions are available
  • High risk of clicking the wrong button
VS
🚀

Web Agent Bridge

  • Read /.well-known/wab.json — get all capabilities
  • Typed parameters, declared endpoints, no guessing
  • Structured auth flow with explicit token exchange
  • UI-independent — works forever as long as API exists
  • Full action catalog with descriptions and schemas
  • Every action audited, logged, and traceable

The Store

A normal-looking store — but fully AI-readable underneath.

Live AI Agent Demo

Watch the agent discover capabilities and complete a purchase in real time.

Agent Mission

"Find the best-value product under $100 and complete the purchase — using only the WAB capabilities document."

🔍
Discover Capabilities
Read /.well-known/wab.json
🔐
Authenticate
POST /api/auth/login
📋
Browse Products
GET /api/products
🧠
Make Decision
Analyze: best value under $100
🛒
Execute Purchase
POST /api/order
Verify Order
GET /api/order/:id
agent.js — WAB Demo idle
$ node agent/agent.js
Waiting for agent to start...
 
Press "Run Agent" to begin the demo.

The WAB Capabilities Document

One JSON file. Everything an AI agent needs to know.

GET /.well-known/wab.json Open ↗
Loading...