ArmorIQ LogoArmorIQ SDK
Integrations

CrewAI

ArmorIQ integration for CrewAI (coming soon)

CrewAI Integration

Coming soon — Python and TypeScript. The CrewAI adapter is under active development. For a working integration today, see the Google ADK integration (Python).

Planned API

# pip install "armoriq-sdk[crewai]"   # extra reserved; adapter coming soon
from armoriq_sdk.integrations import ArmorIQCrew

crew = ArmorIQCrew(
    agents=[...],
    tasks=[...],
    armoriq_client=client,
    llm="gpt-4o",
)
result = crew.kickoff()
// Coming soon.
import { ArmorIQCrew } from '@armoriq/sdk/integrations/crewai';

const crew = new ArmorIQCrew({
  agents: [...],
  tasks: [...],
  armoriqClient: client,
  llm: 'gpt-4o',
});
const result = await crew.kickoff();

The adapter will:

  • Auto-derive a plan from the crew's tasks and tools.
  • Mint an intent token before kickoff().
  • Route every tool call through ArmorIQ's policy enforcement.
  • Emit an audit record for each step.

Want early access?

Open an issue on the SDK repo so we can prioritize it.

On this page