Developer CLI
Scan from your
terminal
AI readiness checks in your CI pipeline, scripts, or shell. Zero config.
$ npx orbzy scan https://example.com
Install
Using npx (no install required)
$ npx orbzy scan https://example.comInstall globally
$ npm install -g orbzyFlags
--jsonRaw JSON output — pipe-friendly, no spinner$ orbzy scan https://example.com --json | jq '.result.totalScore'--key <api-key>API key — removes daily scan limit$ orbzy scan https://example.com --key sk_...--openOpen full report in browser after scanning$ orbzy scan https://example.com --openExample output
orbzy.app — AI Readiness Scanner
Score: 74/100 (B) stripe.com
✓ llms.txt found
✓ robots.txt present
✗ [CRITICAL] No sitemap.xml detected
✗ [HIGH] Missing Open Graph metadata
2 critical issues · orbzy.app/results?url=...
Fix Pack ($49) → orbzy.app/checkout
Use in CI/CD
Exit code 0 = success, 1 = error. JSON is stable for parsing.
# Fail build if score drops below 70
SCORE=$(orbzy scan https://myapp.com --json | jq '.result.totalScore')
if [[ $SCORE -lt 70 ]]; then echo "Score $SCORE — too low"; exit 1; fi
Remove the daily limit
5 free scans/day without a key. Get an API key for 50/day, or upgrade for unlimited.
Get API key →