generated from medic/cht-repo-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
This ticket is to discuss and standardize inter-agent communication.
Example here
interface AgentMessage {
id: string;
timestamp: string;
source: {
agent_id: string;
type: 'supervisor' | 'worker';
level: number;
};
target: {
agent_id: string;
broadcast?: boolean;
};
message_type: 'task' | 'result' | 'error' | 'context';
payload: {
task_id?: string;
content: any;
priority: 1-10;
requires_response: boolean;
};
metadata: {
correlation_id: string;
issue_number?: number;
cht_version?: string;
};
}Metadata
Metadata
Labels
No labels
Type
Projects
Status
💻 In Progress