# KYA Labs — AIP Protocol > The identity and intent verification protocol for autonomous AI agents. Like HTTPS, but for AI-to-AI communication. AIP (Agent Identity Protocol) is an open-source cryptographic protocol that gives every AI agent a verifiable identity, enforces action boundaries, and provides real-time revocation. It prevents prompt injection, rogue agent behavior, and unauthorized actions through an 8-step verification pipeline. ## Core Capabilities - **Agent Passports**: Ed25519-signed cryptographic identity with DIDs, action boundaries, and spending limits - **Intent Verification**: 8-step pipeline checking identity, boundaries, revocation, trust — in milliseconds - **Kill Switch**: Instantly revoke or suspend compromised agents with zero propagation delay - **Trust Scores**: Bayesian reputation model tracking agent behavior over time - **Action Boundaries**: Define exactly what each agent can and cannot do - **Monetary Limits**: Cap per-transaction and total spending per agent ## Quick Install ``` pip install aip-protocol ``` ## Framework Integrations - **LangChain**: `pip install aip-langchain` — `@aip_tool` decorator wraps any tool - **CrewAI**: `pip install aip-crewai` — `aip_agent()` and `aip_task()` wrappers - **AutoGen**: `pip install aip-autogen` — `aip_wrap()` for conversation agents ## Links - [Documentation](https://aip.synthexai.tech/docs) - [Getting Started](https://aip.synthexai.tech/docs/getting-started) - [API Reference — Verification](https://aip.synthexai.tech/docs/verification) - [API Reference — Passports](https://aip.synthexai.tech/docs/passports) - [API Reference — Revocation](https://aip.synthexai.tech/docs/revocation) - [API Reference — Trust Scores](https://aip.synthexai.tech/docs/trust) - [SDK & CLI](https://aip.synthexai.tech/docs/sdk-cli) - [Framework Integrations](https://aip.synthexai.tech/docs/integrations) - [Error Codes](https://aip.synthexai.tech/docs/errors) - [Pricing](https://aip.synthexai.tech/pricing) - [PyPI Package](https://pypi.org/project/aip-protocol/) - [Full LLM Context](https://aip.synthexai.tech/llms-full.txt)