Skip to content

Auth.md

Estimated time to read: 1 minute

OpsAtScale is a public engineering portal and knowledge base. All content is publicly accessible without authentication.

Discovery

Agents can discover our endpoints via the OAuth Authorization Server Metadata and the OAuth Protected Resource Metadata.

Registration

For agent registration, no API keys, OAuth tokens, or login credentials are required to read the documentation or parse the llms.txt definitions. Agents may proceed anonymously by sending a dummy registration request:

Anonymous Registration

To register anonymously:

POST /agent-auth/register HTTP/1.1
Content-Type: application/json

{
  "agent_id": "your-agent-id",
  "method": "anonymous"
}

Identity Assertion

To register via identity assertion:

POST /agent-auth/register HTTP/1.1
Content-Type: application/json

{
  "assertion": "jwt-token"
}

Authentication

No authentication is required.