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

# Integrations

> Compozy seamlessly integrates with your existing tech stack, offering enterprise-grade connections to popular tools and services. Our integration ecosystem helps you maintain security, scalability, and operational excellence.

export const Badge = ({children}) => {
  const getColorClass = () => {
    switch (children) {
      case 'Available':
        return 'bg-green-100 text-green-800 dark:bg-green-900/30 dark:text-green-400';
      case 'Beta':
        return 'bg-yellow-100 text-yellow-800 dark:bg-yellow-900/30 dark:text-yellow-400';
      case 'Coming Soon':
        return 'bg-blue-100 text-blue-800 dark:bg-blue-900/30 dark:text-blue-400';
      default:
        return 'bg-gray-100 text-gray-800 dark:bg-gray-900/30 dark:text-gray-400';
    }
  };
  return <span className={`inline-flex items-center rounded-full px-2 py-1 text-xs font-medium ${getColorClass()}`}>
            {children}
        </span>;
};

* 🚀 **Zero-friction Setup**: Integrations can be enabled with just a few clicks
* 🚀 **Streamline Deployment**: Automate infrastructure provisioning and management
* 🔒 **Enhance Security**: Implement robust authentication and secrets management
* 📊 **Monitor Performance**: Get real-time insights into your workflow health
* 📈 **Track Usage**: Understand how your AI workflows are being used

## Available Integrations

Here are some popular integrations to help you get started with Compozy in production. Visit our [integrations page](/integrations) for the complete list.

<Tabs>
  <Tab title="Analytics">
    Track and analyze your workflow usage patterns.

    <CardGroup cols={2}>
      <Card title="Google Analytics" icon="google" href="/integrations/metrics/google-analytics">
        Track Compozy workflow usage with Google Analytics.
        <Badge>Available</Badge>
      </Card>

      <Card title="Mixpanel" icon="chart-mixed" href="/integrations/metrics/mixpanel">
        Analyze Compozy workflow usage patterns with Mixpanel.
        <Badge>Beta</Badge>
      </Card>
    </CardGroup>
  </Tab>

  <Tab title="Infrastructure">
    Deploy and manage your infrastructure with industry-standard tools.

    <CardGroup cols={2}>
      <Card title="Terraform" icon="terraform" href="/integrations/infrastructure/terraform">
        Manage your Compozy infrastructure using HashiCorp Terraform.
        <Badge>Available</Badge>
      </Card>

      <Card title="AWS CloudFormation" icon="aws" href="/integrations/infrastructure/cloudformation">
        Deploy Compozy using AWS CloudFormation templates.
        <Badge>Available</Badge>
      </Card>
    </CardGroup>
  </Tab>

  <Tab title="Security">
    Implement robust security practices in your workflows.

    <CardGroup cols={2}>
      <Card title="HashiCorp Vault" icon="vault" href="/integrations/security/vault">
        Secure secrets management for Compozy with HashiCorp Vault.
        <Badge>Available</Badge>
      </Card>

      <Card title="Auth0" icon="auth0" href="/integrations/security/auth0">
        Implement Auth0 authentication in your Compozy workflows.
        <Badge>Available</Badge>
      </Card>
    </CardGroup>
  </Tab>

  <Tab title="Monitoring">
    Monitor performance and health of your workflows.

    <CardGroup cols={2}>
      <Card title="Datadog" icon="datadog" href="/integrations/telemetry/datadog">
        Comprehensive monitoring and observability for your Compozy workflows.
        <Badge>Available</Badge>
      </Card>

      <Card title="Grafana" icon="chart-simple" href="/integrations/telemetry/grafana">
        Visualize Compozy metrics and logs with customizable dashboards.
        <Badge>Available</Badge>
      </Card>
    </CardGroup>
  </Tab>
</Tabs>

## Setting up integrations

<Steps>
  <Step title="Choose integration">
    Browse our integration catalog and select the tool or service you want to connect with Compozy.
  </Step>

  <Step title="Follow setup guide">
    Each integration has a dedicated setup guide with step-by-step instructions.
  </Step>

  <Step title="Configure authentication">
    Set up the required authentication credentials and API keys securely.
  </Step>

  <Step title="Test and validate">
    Verify the integration works correctly in your development environment before deploying.
  </Step>
</Steps>

<CardGroup>
  <Card title="Documentation" icon="book">
    Need detailed guidance? Check our [comprehensive documentation](/docs) for in-depth tutorials.
  </Card>

  <Card title="Support" icon="headset">
    Our [support team](/support) is ready to help enterprise customers with dedicated integration assistance.
  </Card>
</CardGroup>

## Building custom integrations

<CardGroup cols={2}>
  <Card title="Enterprise solutions" icon="building">
    We offer custom integration development services tailored to your specific needs.
  </Card>

  <Card title="Integration SDK" icon="code">
    Build your own connectors using our open-source SDK and comprehensive developer tools.
  </Card>
</CardGroup>

<Note>
  Our integration catalog is continuously expanding based on user feedback and market demands. [Contact us](/contact) to discuss your integration requirements or suggest new additions.
</Note>
