Skip to main content

For Agencies

Batch auditing, branded reports, portfolio management, and client-facing deliverables.

TL;DR: Use colter batch or colter check --batch to scan portfolios, colter test to create a sales artifact, and colter fix plus Lens to deliver ongoing value. Keep outputs in JSON, CSV, or PDF so they are easy to hand to clients and internal teams.

Agency Flow

scan -> prove -> fix -> monitor

Prospecting

Batch scan a portfolio:

colter batch clients.txt --format csv --output portfolio.csv

YAML input also works:

colter check --batch clients.yaml --concurrency 10 --json

Closing

Use Test to show what breaks for real agents:

colter test https://prospect-store.com --models claude,gpt --json > test-results.json

The most useful sales outputs are:

  • score and verdict
  • transcript excerpts
  • failed scenarios
  • ranked fix recommendations

Delivery

Generate the implementation plan:

colter fix https://client-store.com --dry-run --json

Write files:

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

Create evidence after deployment:

colter verify https://client-store.com --out ./evidence/client-a --json

Reporting

Export portfolio data:

colter batch clients.txt --format csv --output monthly-report.csv

Create a branded PDF through the hosted API:

curl -X POST https://agenticcom.ai/api/v1/check \
  -H "Content-Type: application/json" \
  -d '{"url":"https://client-store.com"}'

Use share links for client-safe distribution when the hosted flow returns a result ID.

Retention

Use Lens for:

  • cross-client monitoring
  • alerting on regressions
  • portfolio exports
  • ongoing proof of impact

Pricing

Agency includes Test and advanced reporting. See Pricing for current limits and included features.

Next Steps