# auth.md

You are an agent. source.dll4you.com supports agentic access. All content is publicly accessible.

## Step 1 — Discover

Fetch the Protected Resource Metadata:

```http
GET /.well-known/oauth-protected-resource
```

Then fetch the Authorization Server metadata:

```http
GET /.well-known/oauth-authorization-server
```

The `agent_auth` block contains:

```json
{
  "skill": "https://source.dll4you.com/auth.md",
  "register_uri": "https://source.dll4you.com/.well-known/oauth-authorization-server",
  "claim_uri": "https://source.dll4you.com/.well-known/oauth-protected-resource",
  "revocation_uri": null,
  "identity_types_supported": [
    "anonymous"
  ],
  "anonymous": {
    "credential_types_supported": [
      "none"
    ]
  }
}
```

## Step 2 — Access

Public content requires no credentials. Fetch site info:

```http
GET /llms.txt
```

Markdown version of homepage (send `Accept: text/markdown`):

```http
GET /
Accept: text/markdown
```
