⏱️
AB-151
Rate limits machine-readable
What it means
Rate limits are declared in a machine-readable format.
Why it matters
Agents need to know how many calls they can make per minute to avoid throttling.
✗
What's wrong
// rate limits only mentioned in prose docs
✓
What's right
openapi.json: { "x-rate-limit": "100/min" } or agent-guide.json: { "rate_limits": { "per_minute": 100 } }
Check this rule on your site
Enter your URL to check just this one rule (AB-001).