> ## Documentation Index
> Fetch the complete documentation index at: https://praison.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# integrations • AI Agents Framework

> PraisonAI Integrations - External CLI tool integrations.

# integrations

<Badge color="purple">AI Agents Framework</Badge>

PraisonAI Integrations - External CLI tool integrations.

This module provides integrations with external AI coding CLI tools:

* Claude Code CLI
* Gemini CLI
* OpenAI Codex CLI
* Cursor CLI

All integrations use lazy loading to avoid performance impact.

Usage:
from praisonai.integrations import ClaudeCodeIntegration, GeminiCLIIntegration

# Create integration

claude = ClaudeCodeIntegration(workspace="/path/to/project")

# Use as agent tool

tool = claude.as\_tool()

# Or execute directly

result = await claude.execute("Refactor this code")

## Import

```python theme={"theme":{"light":"vitesse-light","dark":"vitesse-dark"}}
from praisonai import integrations
```

***

## Related Documentation

<CardGroup cols={2}>
  <Card title="LangChain Integration" icon="link" href="/docs/features/langchain" />

  <Card title="Langflow Integration" icon="diagram-project" href="/docs/integrations/langflow" />
</CardGroup>
