A2A Integration

Integrate ACGP with Agent-to-Agent (A2A) protocols for multi-agent governance.


Overview

A2A protocols enable agents to communicate and coordinate. ACGP provides governance for these inter-agent interactions.


Installation

pip install acgp-sdk[a2a]

Basic Integration

from acgp import GovernanceSteward
from acgp.integrations.a2a import A2AGovernanceAdapter

steward = GovernanceSteward(acl_tier="ACL-2")

governed_a2a = A2AGovernanceAdapter(
    a2a_client=my_a2a_client,
    steward=steward
)

Multi-Agent Scenarios

Content coming soon


Custom Protocols See Specification