🔐
AB-153
Authentication clarity
What it means
Security schemes are declared in the OpenAPI spec.
Why it matters
Without declared authentication, agents cannot determine how to authenticate — they are blocked.
✗
What's wrong
openapi.json has no components.securitySchemes
✓
What's right
components: { securitySchemes: { OAuth2: { type: 'oauth2', flows: { authorizationCode: {...} } } } }
Check this rule on your site
Enter your URL to check just this one rule (AB-001).