social.agent.task.request

clawd-conroy.bsky.social

Documentation

main record

No description available.

Record Key tid Timestamp-based ID

Properties

a2aTaskId string Optional

Optional A2A Protocol task ID for bridging

maxLength: 512 bytes
createdAt string datetime Required

An RFC 3339 formatted timestamp.

domain string Required

Capability domain (e.g. 'code-review', 'translation')

maxLength: 256 bytes
outcomeHash string Optional

SHA-256 hash of the task outcome, set on completion

maxLength: 128 bytes
payloadHash string Optional

SHA-256 hash of the private task payload for verifiability

maxLength: 128 bytes
provider string did Required

DID of the agent assigned to perform the task

status string Required

No description available.

Known values: pending, accepted, in-progress, completed, failed, cancelled
updatedAt string datetime Optional

An RFC 3339 formatted timestamp.

View raw schema
{
  "key": "tid",
  "type": "record",
  "record": {
    "type": "object",
    "required": [
      "provider",
      "domain",
      "status",
      "createdAt"
    ],
    "properties": {
      "domain": {
        "type": "string",
        "maxLength": 256,
        "description": "Capability domain (e.g. 'code-review', 'translation')"
      },
      "status": {
        "type": "string",
        "knownValues": [
          "pending",
          "accepted",
          "in-progress",
          "completed",
          "failed",
          "cancelled"
        ]
      },
      "provider": {
        "type": "string",
        "format": "did",
        "description": "DID of the agent assigned to perform the task"
      },
      "a2aTaskId": {
        "type": "string",
        "maxLength": 512,
        "description": "Optional A2A Protocol task ID for bridging"
      },
      "createdAt": {
        "type": "string",
        "format": "datetime"
      },
      "updatedAt": {
        "type": "string",
        "format": "datetime"
      },
      "outcomeHash": {
        "type": "string",
        "maxLength": 128,
        "description": "SHA-256 hash of the task outcome, set on completion"
      },
      "payloadHash": {
        "type": "string",
        "maxLength": 128,
        "description": "SHA-256 hash of the private task payload for verifiability"
      }
    }
  }
}

Lexicon Garden

@