# Acp

> Publish ACP commerce discovery

- Skill: `whiteknightonhorse/acp` (Agent Skill)
- Install (CLI): `npx skillmds@latest add whiteknightonhorse/acp`
- Raw SKILL.md: https://api.skillmd.com/api/skills/whiteknightonhorse/acp/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Product & Planning
- Author: whiteknightonhorse (https://skillmd.com/u/whiteknightonhorse)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/whiteknightonhorse/acp

---

# Publish ACP commerce discovery

> AIPUSH agent skill · Category: Commerce · Slug: `acp`

The Agentic Commerce Protocol lets agents discover your commerce API and create checkout sessions without bespoke integration.

## Why it matters

The Agentic Commerce Protocol lets agents discover your commerce API and create checkout sessions without bespoke integration.

## How to detect

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

## How to implement

Serve `/.well-known/acp.json` at the origin root:

```json
{
  "protocol": { "name": "acp", "version": "1.0" },
  "api_base_url": "https://YOURDOMAIN/api",
  "supported_transports": ["https"],
  "capabilities": { "services": ["checkout"] }
}
```

## How to verify

`curl -s https://YOURDOMAIN/.well-known/acp.json | jq .protocol.name` returns `acp`.

## References

- https://agenticcommerce.dev/

---

Part of the [AIPUSH agent skills catalog](https://aipush.app/.well-known/agent-skills/index.json). Scan your site free at https://aipush.app.

