Skip to main content

Colter Fix

Generate the agentic commerce infrastructure your store needs. JSON-LD, UCP manifests, llms.txt, and more — deployed to any platform.

TL;DR: Run colter fix https://your-store.com --dry-run to see the plan, then add --apply when you want generated files written out. The output is structured and ranked by estimated score impact.

colter.fix returns machine-readable fix plans designed for agent workflows, review tools, and CI systems.

What Fix Generates

OutputPurpose
JSON-LDProduct and store structured data
Open Graph tagsAgent-friendly content previews
llms.txtAgent discovery and guidance
robots.txt patchUnblock important crawlers
UCP manifestGoogle ecosystem protocol support
MCP configTool discovery for MCP clients
A2A cardMulti-agent discovery metadata

CLI

colter fix <url> [flags]

Common Flags

FlagPurpose
--applyWrite generated files
--dry-runGenerate content without writing
--jsonMachine-readable output
`--format jsonliquid`
--output-dir DIROutput directory
`--platform fileshopify
--test-json FILEReuse a saved test result
--evidenceGenerate an Evidence Pack after apply
--api-url URLOverride API base URL
-v, --verboseVerbose logging

Examples

Review the plan:

colter fix https://store.example.com --dry-run

Write files locally:

colter fix https://store.example.com --apply --output-dir ./colter-fixes

Apply to Shopify:

colter fix https://store.example.com --apply --platform shopify

Emit JSON:

colter fix https://store.example.com --json

Adapters

AdapterWhen to use it
fileReview files before deployment
shopifyApply through Shopify integration
restPush generated output to a custom backend

Output Shape

The JSON plan includes:

  • score_before
  • score_after_est
  • platform
  • ops[] sorted by score_impact

Each operation includes a target, dimension, risk level, and optional generated content.

  1. Run Check first.
  2. Review the fix plan.
  3. Apply safe fixes.
  4. Re-run Check or Verify.

Next Steps