Skip to content

auth.md

ChaosNexus agent authentication discovery for https://chaosnexus.ai

Audience

AI agents and tools that consume ChaosNexus public documentation and the docs AI Search MCP. Human developers registering for future protected commercial APIs.

Summary

ResourceAuth required today
Docs site (chaosnexus.ai), /llms.txt, sitemap, Rhai API docsNo - anonymous public read
Cloudflare AI Search MCPNo - anonymous public search
Future commercial / private APIsOAuth 2.0 / OIDC (discoverable below)

Software and docs are AGPL-3.0-or-later. See Licensing.

Anonymous public access

Call documentation and MCP endpoints without an Authorization header.

http
GET /guide/ai-agents HTTP/1.1
Host: chaosnexus.ai
Accept: text/markdown
http
POST /mcp HTTP/1.1
Host: 03de9872-58ee-48b3-be11-a2103412dce4.search.ai.cloudflare.com
Content-Type: application/json

If an OAuth client still probes token endpoints, they return a clear error pointing here. Prefer anonymous access for public resources.

OAuth / OIDC discovery

DocumentURL
OAuth 2.0 Authorization Server Metadata (RFC 8414)https://chaosnexus.ai/.well-known/oauth-authorization-server
OpenID Connect Discoveryhttps://chaosnexus.ai/.well-known/openid-configuration
OAuth Protected Resource Metadata (RFC 9728)https://chaosnexus.ai/.well-known/oauth-protected-resource
JWKShttps://chaosnexus.ai/.well-known/jwks.json

Public docs do not currently mint access tokens. JWKS may be empty until a signing key is published for protected APIs.

Agent registration

No account provisioning is required for public docs or AI Search MCP.

For commercial embedding without AGPL obligations, contact Tuned Chaos via Support / licensing - that path is contractual, not OAuth client registration.

json
{
  "agent_auth": {
    "skill": "https://chaosnexus.ai/auth.md",
    "register_uri": "https://chaosnexus.ai/oauth/register",
    "claim_uri": "https://chaosnexus.ai/oauth/claim",
    "identity_types_supported": ["anonymous"],
    "anonymous": {
      "credential_types_supported": ["claim_token"],
      "claim_uri": "https://chaosnexus.ai/oauth/claim"
    }
  }
}