Skip to main content

AIP identity and delegation for AI agent frameworks

Project description

aip-agents

AIP identity and delegation for AI agent frameworks. Add cryptographic identity, scoped delegation chains, and audit-ready token flows to your agents in 5 lines of code.

Supports CrewAI, Google ADK, and LangChain.

Install

pip install aip-agents[crewai]    # CrewAI
pip install aip-agents[adk]       # Google ADK
pip install aip-agents[langchain] # LangChain
pip install aip-agents[all]       # All frameworks

Quick Start: CrewAI

from crewai import Crew, Agent, Task
from aip_agents.adapters.crewai import AIPCrewPlugin

plugin = AIPCrewPlugin()

researcher = Agent(role="researcher", ...)
writer = Agent(role="writer", ...)
crew = Crew(agents=[researcher, writer], tasks=[...])

plugin.register(crew)  # Each agent gets an AIP identity + delegation token
crew.kickoff()

Quick Start: Google ADK

from google.adk import Agent, Runner
from aip_agents.adapters.adk import AIPAdkPlugin

plugin = AIPAdkPlugin()

agent = Agent(name="coordinator", sub_agents=[worker1, worker2], ...)
runner = Runner(agent=agent)

plugin.register(runner)  # Walks agent tree, creates delegation chains
runner.run("task")

Quick Start: LangChain

from langchain.agents import AgentExecutor, create_tool_calling_agent
from aip_agents.adapters.langchain import AIPLangChainPlugin

plugin = AIPLangChainPlugin()

# Register single agent
plugin.register(agent_executor, name="researcher")

# Or register multiple agents (supervisor pattern)
plugin.register_agents({
    "researcher": researcher_executor,
    "writer": writer_executor,
})

# Get headers for tool calls
headers = plugin.get_tool_call_headers("researcher")
# {"X-AIP-Token": "eyJ..."}

What You Get

When you register a plugin, every agent gets:

  1. Cryptographic identity - An Ed25519 keypair and AIP identifier (aip:key:ed25519:z...)
  2. Delegation chain - When a parent agent delegates to a sub-agent, a Biscuit token chain records the delegation with attenuated scope
  3. Tool call headers - X-AIP-Token headers ready to attach to outgoing tool/MCP calls

Enable logging to see it in action:

from aip_agents import AIPConfig

plugin = AIPCrewPlugin(AIPConfig(log_tokens=True))

Output:

[AIP] Identity created: researcher -> aip:key:ed25519:z6Fk3...
[AIP] Delegation: manager -> researcher [scope: web_search] [chain depth: 2]
[AIP] Tool call: researcher -> web_search [chain depth: 3, verified]

Configuration

AIPConfig(
    app_name="my-app",          # Root identity label
    auto_identity=True,          # Auto-assign identity to every agent
    auto_delegation=True,        # Auto-create delegation chains
    persist_keys=False,          # Save keys to ~/.aip/keys/
    log_tokens=False,            # Log token operations
    default_scope=None,          # Default scope for root token
)

How It Works

  • Identity: Each agent gets an Ed25519 keypair. The public key becomes the agent's AIP identifier.
  • Tokens: Authority tokens use Biscuit - an append-only cryptographic token that enforces scope can only narrow, never widen.
  • Delegation: When Agent A delegates to Agent B, a new block is appended to A's token with B's identity and attenuated scope. The chain is cryptographically verifiable.
  • Tool calls: Tokens are attached via X-AIP-Token header, compatible with AIP MCP middleware for end-to-end verification.

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aip_agents-0.1.1.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

aip_agents-0.1.1-py3-none-any.whl (2.7 kB view details)

Uploaded Python 3

File details

Details for the file aip_agents-0.1.1.tar.gz.

File metadata

  • Download URL: aip_agents-0.1.1.tar.gz
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.7

File hashes

Hashes for aip_agents-0.1.1.tar.gz
Algorithm Hash digest
SHA256 eb1bf8a64c6393ca1aefde152b3e369aae61f45927cefbe618da094581342c83
MD5 523f1e06e718217738fd253c5bd332bb
BLAKE2b-256 f811e19415fae461b3efd1b297abead10865469273616bb50ec1400545ef33da

See more details on using hashes here.

File details

Details for the file aip_agents-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: aip_agents-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 2.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.7

File hashes

Hashes for aip_agents-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0b3cdef11e42ec2dc095d96ecfc2d34ef949a7e9a12bcb0c0eac21be703785f9
MD5 c234ad2d10076e3cf6cbcfffc11243f4
BLAKE2b-256 fec6963265da870b78706115b0e84f28802daa8bbbbf4e5b7a8f2f2f29c8178c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page