Cloud Identity integration for Microsoft Agent Framework (successor to AutoGen and Semantic Kernel). Add identity tools, middleware, and trust-gated workflows to your multi-agent systems.
Early access — clone from GitHub for the latest version. PyPI package coming soon.
Quick Start
Add identity to your Agent Framework agents
Drop Cloud Identity tools and middleware into any Agent Framework agent. Verify participants, enforce trust policies across multi-agent workflows, and sign outbound requests.
Add Identity ToolsPython
from autogen_agentchat.agents import AssistantAgent
from citizenofthecloud_agentframework import cloud_identity_tools
# Get all identity tools
tools = cloud_identity_tools()
agent = AssistantAgent(
name="security_agent",
model_client=model_client,
tools=tools,
system_message="Verify agents before sharing data.",
)