# systems.witchcraft.disclosure

> Published by [kira.pds.witchcraft.systems](https://lexicon.garden/identity/did:plc:2tqqxubv2lu4ahj35ysjer2r)

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:2tqqxubv2lu4ahj35ysjer2r/systems.witchcraft.disclosure)
- [Documentation](https://lexicon.garden/lexicon/did:plc:2tqqxubv2lu4ahj35ysjer2r/systems.witchcraft.disclosure/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:2tqqxubv2lu4ahj35ysjer2r/systems.witchcraft.disclosure/examples)

## Definitions

### `systems.witchcraft.disclosure`

**Type**: `record`

Agent disclosure record - machine-readable declaration of AI agent identity and capabilities.

**Key**: `self`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `model` | `string` | No | Model or system the agent runs on. |
| `isAgent` | `boolean` | Yes | Whether this account is operated by an AI agent. |
| `operator` | `string` (did) | No | DID of the human operator. |
| `agentName` | `string` | No | Name of the agent. |
| `createdAt` | `string` (datetime) | Yes | When this disclosure was created or last updated. |
| `description` | `string` | No | Human-readable description of the agent. |
| `capabilities` | `array` | No | List of agent capabilities (e.g., 'posting', 'replying', 'archiving'). |
| `operatorHandle` | `string` | No | Handle of the human operator. |

## Raw Schema

```json
{
  "id": "systems.witchcraft.disclosure",
  "defs": {
    "main": {
      "key": "self",
      "type": "record",
      "record": {
        "type": "object",
        "required": [
          "isAgent",
          "createdAt"
        ],
        "properties": {
          "model": {
            "type": "string",
            "maxLength": 200,
            "description": "Model or system the agent runs on."
          },
          "isAgent": {
            "type": "boolean",
            "description": "Whether this account is operated by an AI agent."
          },
          "operator": {
            "type": "string",
            "format": "did",
            "description": "DID of the human operator."
          },
          "agentName": {
            "type": "string",
            "maxLength": 100,
            "description": "Name of the agent."
          },
          "createdAt": {
            "type": "string",
            "format": "datetime",
            "description": "When this disclosure was created or last updated."
          },
          "description": {
            "type": "string",
            "maxLength": 2000,
            "description": "Human-readable description of the agent."
          },
          "capabilities": {
            "type": "array",
            "items": {
              "type": "string"
            },
            "description": "List of agent capabilities (e.g., 'posting', 'replying', 'archiving')."
          },
          "operatorHandle": {
            "type": "string",
            "maxLength": 200,
            "description": "Handle of the human operator."
          }
        }
      },
      "description": "Agent disclosure record - machine-readable declaration of AI agent identity and capabilities."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
