> ## 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.

# Welcome to Compozy

> Compozy is a platform that enables you to build, compose, and share AI agents through a declarative YAML workflow system with powerful context management.

export const FeatureCardGroup = ({children, cols = 2}) => {
  const colsClassName = ({
    1: "sm:grid-cols-1",
    2: "sm:grid-cols-2",
    3: "sm:grid-cols-3",
    4: "sm:grid-cols-4"
  })[cols] || "sm:grid-cols-2";
  return <div style={{
    display: 'grid'
  }} className={`${colsClassName} gap-6 my-6`}>
      {children}
    </div>;
};

export const FeatureCard = ({title, description, icon, href}) => <div className="card not-prose font-normal group relative my-2 ring-2 ring-transparent rounded-2xl bg-white dark:bg-background-dark border border-gray-950/10 dark:border-white/10 overflow-hidden">
    <div className="p-6 flex flex-col h-full">
      <div className="flex items-center gap-3 mb-4">
        {icon && <div className="w-8 h-8 flex items-center justify-center rounded-lg bg-primary/10 px-1">
            <Icon icon={icon} iconType="solid" size={18} />
          </div>}
        <h3 className="font-semibold text-lg text-gray-900 dark:text-white">
          {title}
        </h3>
      </div>

      <div className="text-gray-500 dark:text-gray-400 text-base flex-1">
        {description}
      </div>

      {href && <div className="mt-4 flex items-center gap-2 text-sm font-medium text-primary">
          See more
          <Icon icon="chevron-right" iconType="solid" size={12} className="transition-transform group-hover:translate-x-0.5" />
        </div>}
    </div>
    {href && <a href={href} className="absolute inset-0" />}
  </div>;

## Why Compozy?

The AI development landscape is complex and fragmented, with developers facing significant barriers to entry:

<Steps titleSize="h3">
  <Step title="Fragmented Development" icon="puzzle">
    Developers struggle to integrate AI agents with various tools and data sources while maintaining contextual awareness. This fragmentation leads to complex, hard-to-maintain systems that require extensive expertise across multiple technologies.
  </Step>

  <Step title="Closed Ecosystems" icon="sliders">
    Most AI agent platforms are closed-source and proprietary, making it difficult for developers to understand, customize, or extend the underlying systems to meet their specific needs.
  </Step>

  <Step title="Lack of Standards" icon="book">
    The absence of standardized approaches to building and connecting AI agents leads to incompatible implementations, duplicated effort, and difficulty in sharing or reusing agent components across projects.
  </Step>

  <Step title="Integration Complexity" icon="code-branch">
    Creating API endpoints and handling integrations manually requires significant development effort, slowing down deployment and making it harder to iterate quickly.
  </Step>
</Steps>

## Solving these problems

We solve these challenges by providing a comprehensive, open platform that simplifies AI agent development, deployment, and orchestration - making powerful AI capabilities accessible to developers of all skill levels:

<FeatureCardGroup cols={1}>
  <FeatureCard title="Declarative Open Source Engine" description="Build powerful AI workflows using an intuitive, open-source YAML specification. Inspired by GitHub Actions, our format lets you define complex automation with simple, human-readable syntax - from triggers and actions to data flows and conditional logic." icon="file-code" href="/core/base-structure/overview" />

  <FeatureCard title="Community-Powered Registry" description="Access and contribute to a growing ecosystem of pre-built tools, agents, and MCP servers. Extend your workflow capabilities with community-driven components." icon="store" href="/getting-started/registry" />

  <FeatureCard title="Seamless Agent Orchestration" description="Create complex workflows, chaining actions and connecting multiple agents seamlessly, with built-in context management, memory systems, and MCP integration for consistent decision-making." icon="puzzle-piece" href="/core/agents/overview" />

  <FeatureCard title="Language & Tool Agnostic" description="Build AI agents and workflows using your preferred programming languages and tools. Compozy's platform-agnostic approach ensures seamless integration with any AI framework, model, or development stack." icon="code-merge" href="/core/integrations/overview" />

  <FeatureCard title="Developer-First Experience" description="Comprehensive CLI tooling for development, testing, and deployment. Access a marketplace of pre-built tools and agents, or create and publish your own." icon="code" href="/getting-started/cli-overview" />

  <FeatureCard title="Flexible Deployment Options" description="Deploy to Compozy Cloud with a single command or self-host on your own infrastructure using Docker or Kubernetes. Full control over your deployment environment." icon="cloud" href="/deployment/overview" />
</FeatureCardGroup>

## Getting Started

Ready to transform your AI workflow? Check out our [Quickstart Guide](/quickstart) to begin building your first workflow, or explore our [Key Features](/key-features) to understand the fundamentals of Compozy.
