Integrations
Integrations
Framework adapters for ArmorIQ
Integrations
Drop ArmorIQ into the agent framework you already use. Each adapter wraps the framework's tool-calling lifecycle so plan capture, token minting, policy enforcement, and audit all happen automatically — you don't write any of the ArmorIQ plumbing yourself.
Status
| Framework | Python | TypeScript |
|---|---|---|
| Google ADK | Live — pip install "armoriq-sdk[google-adk]" | Coming soon |
| CrewAI | Coming soon | Coming soon |
| LangChain | Coming soon | Coming soon |
| OpenAI | Coming soon | Coming soon |
| Anthropic | Coming soon | Coming soon |
Python + Google ADK is the only live adapter today. Everything else — Python CrewAI/LangChain/OpenAI/Anthropic, and every TypeScript adapter — is on the roadmap.
Pattern
Every adapter follows the same for_user(email) shape:
integration = FrameworkAdapter(api_key=...) # once per process
scope = integration.for_user("alice@example.com") # once per request
scope.install(agent)
try:
run_agent(agent)
finally:
scope.uninstall(agent)// Coming soon — all TypeScript adapters follow the same shape:
const integration = new FrameworkAdapter({ apiKey: '...' });
const scope = integration.forUser('alice@example.com');
scope.install(agent);
try {
await runAgent(agent);
} finally {
scope.uninstall(agent);
}Start with the Google ADK page for a full working Python example.