compare
The compare command shows a dimension-by-dimension diff between two scan result JSON files.
npx aeorank-cli compare before.json after.jsonHow it works
Section titled “How it works”- Run two scans with
--format jsonand save the output:
npx aeorank-cli scan https://example.com -f json > before.json# ... make improvements ...npx aeorank-cli scan https://example.com -f json > after.json- Compare them:
npx aeorank-cli compare before.json after.jsonThe output shows:
- Overall score change (e.g.,
42 → 85 +43 pts) - Per-dimension before/after scores with delta
- Color-coded: green for improvements, red for regressions
Example output
Section titled “Example output” Scan Comparison https://example.com
Overall: 42 → 85 +43 pts
Dimension Before After Change ─────────────────────────────────────────────────── llms.txt Presence 0/10 → 9/10 +9 Schema.org Markup 6/10 → 8/10 +2 Content Structure 8/10 → 9/10 +1 AI Crawler Access 3/10 → 9/10 +6 ...