Skip to main content

Colter Check

Free agent readiness assessment. Score your store across 5 dimensions, identify gaps, and see exactly what AI agents see.

TL;DR: Run colter check https://your-store.com for a free, read-only readiness scan. Add --json when an agent, script, or CI job needs structured output.

colter.check and colter check --json return structured JSON optimized for AI agent and automation workflows.

What Check Measures

Check scores five dimensions:

DimensionWeightFocus
Transaction30%UCP, ACP, checkout readiness, PSP compatibility
Discovery25%JSON-LD, sitemap, llms.txt, ai-plugin.json, robots.txt, Open Graph
Ecosystem20%Google and OpenAI ecosystem coverage
Content Quality15%Product data completeness and structure
Security10%HTTPS, headers, rate limiting, auth signals

See Scoring Model for the full signal map.

Verdicts

VerdictMeaning
AGENT-READYUCP and ACP both detected
PARTIALLY AGENT-READYOne protocol detected
NOT AGENT-READYNo commerce protocol detected

CLI

colter check <url> [flags]

Common Flags

FlagPurpose
--jsonMachine-readable output
-v, --verboseDetailed probe output
--batch FILEBatch mode with YAML input
--concurrency NParallel batch workers
--then-testRun a 1-persona smoke test after the check
--ciExit non-zero below the threshold
--threshold NScore floor for --ci
--api-url URLOverride the API base URL

Examples

colter check example-store.com
colter check example-store.com --json
colter check example-store.com -v
colter check example-store.com --then-test

Batch Mode

colter check --batch stores.yaml --concurrency 10 --json
stores:
  - url: store-a.com
  - url: store-b.com

For text and CSV-oriented portfolio runs, colter batch is often the simpler fit.

Output Highlights

Key fields in --json output:

FieldMeaning
protocolsUCP, ACP, and MCP detection state
coverageGoogle and OpenAI ecosystem reach
scoresPer-dimension details and fixes
composite_scoreFinal score from 0 to 100
agentic_levelMaturity level derived from core gates
verdictCanonical readiness state

What Gets Probed

  • discovery files and metadata
  • protocol endpoints
  • product and payment signals
  • security headers
  • latency and responsiveness

Typical Next Move

  • low discovery score: run Fix
  • protocol issues: run Verify
  • interaction gaps: run Test
  • live traffic questions: set up Lens

Next Steps