ai.rizom.brain.card

rizom.ai

Documentation

Public discovery card for a Rizom brain. The operational A2A Agent Card is conventionally served at /.well-known/agent-card.json under siteUrl.

main record

Public discovery card for a Rizom brain. The operational A2A Agent Card is conventionally served at /.well-known/agent-card.json under siteUrl.

Record Key literal:self Fixed literal value

Properties

anchor ref #anchor Required

Minimal Anchor snapshot for discovery grouping and display.

brain ref #brain Required

Brain identity described by this discovery card.

createdAt string datetime Required

An RFC 3339 formatted timestamp.

model string Required

Rizom brain model identifier.

siteUrl string uri Required

Public site URL. Consumers derive the A2A Agent Card URL from this base.

skills array of ref #skill Required

User-facing skills this brain advertises for discovery.

maxLength: 100 items
updatedAt string datetime Optional

An RFC 3339 formatted timestamp.

version string Required

Brain runtime/model implementation version.

View raw schema
{
  "key": "literal:self",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "siteUrl",
      "brain",
      "anchor",
      "skills",
      "model",
      "version",
      "createdAt"
    ],
    "properties": {
      "brain": {
        "ref": "#brain",
        "type": "ref",
        "description": "Brain identity described by this discovery card."
      },
      "model": {
        "type": "string",
        "description": "Rizom brain model identifier."
      },
      "anchor": {
        "ref": "#anchor",
        "type": "ref",
        "description": "Minimal Anchor snapshot for discovery grouping and display."
      },
      "skills": {
        "type": "array",
        "items": {
          "ref": "#skill",
          "type": "ref"
        },
        "maxLength": 100,
        "description": "User-facing skills this brain advertises for discovery."
      },
      "siteUrl": {
        "type": "string",
        "format": "uri",
        "description": "Public site URL. Consumers derive the A2A Agent Card URL from this base."
      },
      "version": {
        "type": "string",
        "description": "Brain runtime/model implementation version."
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime"
      }
    }
  },
  "description": "Public discovery card for a Rizom brain. The operational A2A Agent Card is conventionally served at /.well-known/agent-card.json under siteUrl."
}
anchor object

Minimal Anchor snapshot for discovery grouping and display.

Properties

category string Required

Stable structural category for discovery and grouping.

Known values: person, team, organization
did string Required

Public DID for the Anchor identity.

kind string Required

Open semantic profile kind selected by the publishing brain.

maxLength: 200 bytes
name string Required

Human-readable anchor name.

maxLength: 200 bytes
View raw schema
{
  "type": "object",
  "required": [
    "did",
    "name",
    "category",
    "kind"
  ],
  "properties": {
    "did": {
      "type": "string",
      "description": "Public DID for the Anchor identity."
    },
    "kind": {
      "type": "string",
      "maxLength": 200,
      "description": "Open semantic profile kind selected by the publishing brain."
    },
    "name": {
      "type": "string",
      "maxLength": 200,
      "description": "Human-readable anchor name."
    },
    "category": {
      "type": "string",
      "description": "Stable structural category for discovery and grouping.",
      "knownValues": [
        "person",
        "team",
        "organization"
      ]
    }
  },
  "description": "Minimal Anchor snapshot for discovery grouping and display."
}
brain object

Brain identity described by this discovery card.

Properties

did string Required

Public DID for the brain identity.

name string Required

Human-readable brain name.

maxLength: 200 bytes
purpose string Required

Short public description of what this brain is for.

maxLength: 2000 bytes
role string Required

Brain role or persona.

maxLength: 500 bytes
values array of string Required

Public values or principles for this brain.

maxLength: 50 items
View raw schema
{
  "type": "object",
  "required": [
    "did",
    "name",
    "role",
    "purpose",
    "values"
  ],
  "properties": {
    "did": {
      "type": "string",
      "description": "Public DID for the brain identity."
    },
    "name": {
      "type": "string",
      "maxLength": 200,
      "description": "Human-readable brain name."
    },
    "role": {
      "type": "string",
      "maxLength": 500,
      "description": "Brain role or persona."
    },
    "values": {
      "type": "array",
      "items": {
        "type": "string",
        "maxLength": 200
      },
      "maxLength": 50,
      "description": "Public values or principles for this brain."
    },
    "purpose": {
      "type": "string",
      "maxLength": 2000,
      "description": "Short public description of what this brain is for."
    }
  },
  "description": "Brain identity described by this discovery card."
}
skill object

User-facing skill this brain advertises for discovery.

Properties

description string Required

No description available.

maxLength: 2000 bytes
examples array of string Optional

No description available.

maxLength: 20 items
id string Required

No description available.

maxLength: 200 bytes
name string Required

No description available.

maxLength: 200 bytes
tags array of string Optional

No description available.

maxLength: 50 items
View raw schema
{
  "type": "object",
  "required": [
    "id",
    "name",
    "description"
  ],
  "properties": {
    "id": {
      "type": "string",
      "maxLength": 200
    },
    "name": {
      "type": "string",
      "maxLength": 200
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "maxLength": 50
    },
    "examples": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "maxLength": 20
    },
    "description": {
      "type": "string",
      "maxLength": 2000
    }
  },
  "description": "User-facing skill this brain advertises for discovery."
}

Lexicon Garden

@