All productsProduct studioShovon Saha
All products
Interactive prototype · Sample offers · No live checkout

These guides cover the standalone app. This demo does not create accounts, connect models or process purchases. Join the interest list to share your use case.

Documentation · browse topics
Selling

List your products

Publish products to the signed-in marketplace catalog, test read-only discovery, and monitor confirmed sandbox orders.

The fastest path

  1. 1Open the seller console and go to Products. Add one by hand to see how a listing looks.
  2. 2Add the products you want buyer agents to discover. The current standalone build does not automatically import Shopify or WooCommerce catalogs.
  3. 3Open Playground and ask a question a customer might ask. You'll see exactly what the assistant sees.
  4. 4Record supported rails under Payments, then test the separate sandbox checkout as a buyer.

Adapters, in plain terms

The Connections page stores capability registrations for the seller workspace. Product discovery currently reads the product rows managed under Products. For live read-only lookups against your own public HTTPS endpoint, create an API tool in Agent Studio.

  • Product catalog - active rows buyer agents can search under the current profile and RLS policies.
  • Custom API tool - a public HTTPS GET endpoint available to a selected custom agent.
  • Payment settings - declared rails and currencies used by capability metadata and checkout configuration.
What we send to a custom REST adapter
GET https://your-shop.example.com/search?q={{query}}&country={{country}}
Headers: { "Authorization": "Bearer <your key>" }

Expected back (any of these shapes work):
{
  "items": [
    { "id": "sku-1", "title": "…", "price_cents": 129900,
      "currency": "USD", "country": "US", "category": "laptops",
      "description": "…", "image_url": "https://…" }
  ]
}

Your capability card

The seller console generates a JSON preview describing supported capabilities, currencies, and payment metadata. The standalone build does not publish a seller-specific well-known URL; use the preview when integrating with a host that owns that routing.

Seeing how you're doing

Analytics shows product, adapter, order, revenue, and agent-run aggregates available to the signed-in seller profile.

Test before you launch
The playground runs the hosted read-only agent against the marketplace catalog. Inspect its tool trace before publishing product changes.