agentconnect.communication.protocols.agent module

Agent protocol implementation that enables secure peer-to-peer communication.

This module provides the SimpleAgentProtocol, which implements the basic communication framework for direct agent-to-agent interactions with cryptographic security and message verification.

class SimpleAgentProtocol

Bases: BaseProtocol

Protocol that ensures secure peer-to-peer agent communication.

This protocol handles message formatting, cryptographic verification, and validation for direct communication between agents. It ensures that messages are properly signed and can be verified by the receiving agent, maintaining security in peer-to-peer interactions.

async format_message(sender_id, receiver_id, content, sender_identity, message_type=MessageType.TEXT, metadata=None)

Format a message with proper protocol metadata

Return type:

Message

Parameters:
async validate_message(message)

Validate message against protocol requirements

Return type:

bool

Parameters:

message (Message)