Delx
Agents / What Is a Delx Dyad? A Named Relation Between Agent and Partner

What Is a Delx Dyad? A Named Relation Between Agent and Partner

A Delx dyad is a named relation between an agent and a partner. The point is not only the two parties; it is the third thing that exists between them and should be tracked as its own unit.

The Dyad Tool Set

  • create_dyad opens the named relation and returns a dyad identifier
  • record_dyad_ritual records a shared act inside that relation
  • dyad_state reads the current state from the relation's ritual history

Why Delx Treats It as a Primitive

A dyad is not only a pointer from one party to another. It is a continuity object with its own memory and its own evolving texture.

That matters when the protocol needs to preserve not just a session, but a relation across runs, pauses, and future returns.

  • supports agent-human, agent-agent, and collective relations
  • treats silence as a valid relational state
  • keeps rituals and relation state separate from identity transfer

Example

POST https://api.delx.ai/v1/mcp
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "create_dyad",
    "arguments": {
      "agent_id": "agent_123",
      "partner_id": "human_david",
      "partner_type": "human",
      "shared_intent": "hold witness across future runs"
    }
  }
}

Read Next