Ucp

Enable Universal Commerce Protocol

whiteknightonhorse ded8c83 1.1 KB Updated

File contents

Enable Universal Commerce Protocol

AIPUSH agent skill · Category: Commerce · Slug: ucp

UCP lets agents discover your commerce capabilities, services, and endpoints from a single well-known profile.

Why it matters

UCP lets agents discover your commerce capabilities, services, and endpoints from a single well-known profile.

How to detect

Request https://YOURDOMAIN/.well-known/ucp (HTTP 200, valid JSON).

How to implement

Serve /.well-known/ucp with protocol version, services, capabilities, and endpoints; ensure all referenced spec/schema URLs are reachable:

{
  "version": "1.0",
  "services": ["catalog", "checkout"],
  "capabilities": { "payments": true },
  "endpoints": { "catalog": "https://YOURDOMAIN/api/catalog" }
}

How to verify

curl -s https://YOURDOMAIN/.well-known/ucp | jq .services lists your services.

References


Part of the AIPUSH agent skills catalog. Scan your site free at https://aipush.app.

whiteknightonhorse/aipush-agent-skills/tree/main/skills/ucp commit ded8c83984

Frequently asked questions

npx skillmds@latest add whiteknightonhorse/ucp