Skip to main content

Getting Started with Colter

Score, fix, monitor, and test your store's AI agent readiness. Get started in 60 seconds.

TL;DR: Install the CLI with npm install -g @getcolter/cli, run colter check https://your-store.com, then use colter fix, colter test, and colter lens as needed. If you want a zero-install path, use npx @getcolter/cli check https://your-store.com.

What Colter Does

Colter helps stores become discoverable and usable by AI shopping agents.

ProductMain jobAvailability
CheckScore readiness and find gapsFree
FixGenerate missing agent-facing infrastructureFree
LensMonitor live AI agent trafficPaid plans
TestSimulate AI shopping personasAdd-on on Pro, included on Agency and Enterprise
VerifyProduce conformance evidence and audit packsAdd-on except Enterprise

Fastest Path

npm install -g @getcolter/cli
colter check https://your-store.com
colter fix https://your-store.com --dry-run

No install:

npx @getcolter/cli check https://your-store.com

Demo target:

colter check puddingheroes.com

Protocols

  • UCP for Google ecosystem flows
  • ACP for OpenAI ecosystem flows
  • MCP for agent tool access
  • WebMCP for browser-side tool discovery

Installation

Install with npm:

npm install -g @getcolter/cli
colter --version

Install with Go:

go install github.com/mfbahc/agentic-com/cmd/colter@latest

Minimal Config

Most check flows need no config. If you want saved defaults, create colter.yaml:

version: "1"

store:
  url: "https://your-store.com"

fix:
  output_dir: "./colter-fixes"

Pick Your Path

RoleStart here
DeveloperFor Developers
AgencyFor Agencies
MerchantFor Merchants
AI agent builderMCP Tools
  1. Run Check to get the score and verdict.
  2. Run Fix to generate the missing infrastructure.
  3. Run Test to see how real agent flows behave.
  4. Run Verify to produce Evidence Packs.
  5. Add Lens once you want live monitoring.

Troubleshooting

If colter is not on your path:

npx @getcolter/cli check https://your-store.com

If the store blocks requests:

colter check https://your-store.com -v

Next Steps