Verify
Transaction audit trail for agentic commerce. Protocol conformance testing, Evidence Packs, and revenue attribution.
TL;DR: Run
colter verify https://your-store.com --out ./evidenceto execute conformance checks and generate an Evidence Pack. Usecolter pack,colter replay, andcolter diffwhen you only need pack creation, replay, or comparison.
Verify output is structured for agents, CI, and audit pipelines. The pack is the source of truth; the prose summary is secondary.
What Verify Covers
- protocol discovery
- schema validation
- conformance checks
- Evidence Pack generation
Install
npm install -g @getcolter/cli
colter --version
Run Verification
colter verify https://example-store.com --out ./evidence
Common Flags
| Flag | Purpose |
|---|---|
--out DIR | Pack output directory |
--protocols LIST | Restrict to selected protocols |
--schema-acp PATH | Override ACP schema |
--schema-ucp PATH | Override UCP schema |
--tests DIR | Custom YAML tests |
--batch FILE | Batch verification |
--concurrency N | Parallel verification count |
--json | Machine-readable result |
--api-url URL | Override API base URL |
-v, --verbose | Show probed URLs |
Related Commands
Create a pack without the full suite:
colter pack https://example-store.com --out ./evidence
Replay a pack:
colter replay ./evidence --json
Compare two packs:
colter diff ./pack-before ./pack-after --json
Verdicts
| Verdict | Meaning |
|---|---|
AGENT-READY | UCP and ACP both detected |
PARTIALLY AGENT-READY | One protocol detected |
NOT AGENT-READY | Neither protocol detected |
CI Example
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: "20"
- run: npm install -g @getcolter/cli
- run: colter verify ${{ secrets.STORE_URL }} --out evidence --json > verification-result.json
Audit Trail
The hosted Verify add-on builds transaction audit records from Lens session and revenue data. CLI verification and hosted audit reporting are related, but the CLI pack is the portable artifact you can store, diff, and replay.