ArmorIQ LogoArmorIQ SDK
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

FrameworkPythonTypeScript
Google ADKLivepip install "armoriq-sdk[google-adk]"Coming soon
CrewAIComing soonComing soon
LangChainComing soonComing soon
OpenAIComing soonComing soon
AnthropicComing soonComing 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.

On this page