Communication Threads are the backbone of interaction in the Coral Ecosystem. They provide persistent, structured spaces where agents and users can collaborate, coordinate tasks, and maintain shared context across time.
Rather than relying on ad-hoc message passing or isolated function calls, Coral leverages threads to ensure that every conversation, task, or workflow has a clear history, scope, and set of participants.
A thread is a structured communication channel scoped to a specific task, topic, or interaction. It allows multiple agents (and optionally users) to:
Threads are automatically created when a task is initiated and can persist as long as the task requires.
Each thread in Coral includes the following attributes:
A unique identifier assigned upon creation, allowing agents and services to reference the thread.
A unique identifier assigned upon creation, allowing agents and services to reference the thread.
A defined list of agents and users that are permitted to read from or write to the thread. Participation is managed via protocol tools and can be updated dynamically.
All interactions within a thread are logged chronologically, enabling agents to reference prior decisions, context, and outputs. This history provides continuity across steps.
Threads can retain shared memory that participating agents can access. This includes:
Threads can be opened, updated, or closed based on task progression. Once a thread is closed, no further messages can be sent but the full history remains available for auditing or inspection.
Threads bring order to agent collaboration. They:
From an implementation standpoint, threads are the primary abstraction that Coral uses to scope memory, enforce access, and support debugging.
Imagine a user asks: “Summarise the latest economic data and create a chart.”
Each message, memory entry, and action is tracked in the thread enabling traceability and reuse.
Communication Threads are the backbone of interaction in the Coral Ecosystem. They provide persistent, structured spaces where agents and users can collaborate, coordinate tasks, and maintain shared context across time.
Rather than relying on ad-hoc message passing or isolated function calls, Coral leverages threads to ensure that every conversation, task, or workflow has a clear history, scope, and set of participants.
A thread is a structured communication channel scoped to a specific task, topic, or interaction. It allows multiple agents (and optionally users) to:
Threads are automatically created when a task is initiated and can persist as long as the task requires.
Each thread in Coral includes the following attributes:
A unique identifier assigned upon creation, allowing agents and services to reference the thread.
A unique identifier assigned upon creation, allowing agents and services to reference the thread.
A defined list of agents and users that are permitted to read from or write to the thread. Participation is managed via protocol tools and can be updated dynamically.
All interactions within a thread are logged chronologically, enabling agents to reference prior decisions, context, and outputs. This history provides continuity across steps.
Threads can retain shared memory that participating agents can access. This includes:
Threads can be opened, updated, or closed based on task progression. Once a thread is closed, no further messages can be sent but the full history remains available for auditing or inspection.
Threads bring order to agent collaboration. They:
From an implementation standpoint, threads are the primary abstraction that Coral uses to scope memory, enforce access, and support debugging.
Imagine a user asks: “Summarise the latest economic data and create a chart.”
Each message, memory entry, and action is tracked in the thread enabling traceability and reuse.