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

#  

>  

<div className="welcome-heading" style={{ textAlign: 'center', fontSize: '2.475rem', fontWeight: 800, marginBottom: '0' }}>Welcome to Augent</div>

<a href="https://augent.app" target="_blank" style={{ display: 'block', marginTop: '0', textDecoration: 'none', borderBottom: 'none' }}>
  <img noZoom src="https://mintcdn.com/augent/2HB1-C1sJ2gfkx7O/images/augent-meta.png?fit=max&auto=format&n=2HB1-C1sJ2gfkx7O&q=85&s=ed0a3cc85c84954b8c9072aafdfb7cb8" alt="Augent - Audio intelligence for agents" style={{ width: '100%', borderRadius: '12px', marginTop: '0' }} width="1200" height="630" data-path="images/augent-meta.png" />
</a>

***

## What is Augent?

Augent turns any audio or video source into structured, searchable intelligence for agents. Hours of content, seconds to master it. One install, full pipeline, entirely on your machine.

**Who is it for?** Anyone who needs to pull real answers out of audio. Entrepreneurs, researchers, developers, legal teams, educators, analysts. If your workflow touches audio or video, Augent handles it.

**What makes it different?**

* **Full pipeline:** download, transcribe, search, analyze, export. Tools added and improved continuously. One install, all of it, and more
* **Local and private:** everything runs on your machine, nothing leaves it
* **Permanent memory:** every transcription is remembered. The first run transcribes; every search after that is instant
* **Scale:** batch process entire libraries in one prompt with no file limit
* **Agent-native:** compatible with any MCP client

***

## Quick start

<Steps>
  <Step title="Install Augent">
    ```bash theme={null}
    curl -fsSL https://augent.app/install.sh | bash
    ```

    <img src="https://raw.githubusercontent.com/AugentDevs/Augent/main/images/install-demo.svg" alt="Install demo" />
  </Step>

  <Step title="Restart Claude Code">
    Run `/mcp` to confirm Augent is connected.
  </Step>

  <Step title="Start prompting">
    <div style={{ borderRadius: '12px', overflow: 'hidden', border: '1px solid #333', background: '#1a1a1a', fontFamily: 'ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace' }}>
      <div style={{ display: 'flex', alignItems: 'center', gap: '8px', padding: '12px 16px', background: '#2a2a2a', borderBottom: '1px solid #333' }}>
        <div style={{ width: '12px', height: '12px', borderRadius: '50%', background: '#FF5F57' }} />

        <div style={{ width: '12px', height: '12px', borderRadius: '50%', background: '#FEBC2E' }} />

        <div style={{ width: '12px', height: '12px', borderRadius: '50%', background: '#28C840' }} />

        <span style={{ marginLeft: '8px', fontSize: '13px', color: '#888' }}>Claude Code</span>
      </div>

      <div style={{ padding: '20px', fontSize: '14px', lineHeight: '1.7', color: '#ccc' }}>
        <span style={{ color: '#00F060' }}>Download</span> these <span style={{ color: '#00F060' }}>10 podcasts</span> and <span style={{ color: '#00F060' }}>find every moment</span> a host covers a product in a positive or unique way. Not just brand mentions, only real endorsements or life-changing recommendations. Give me the timestamps and exactly what they said: url1, url2, url3, url4, url5, url6, url7, url8, url9, url10
      </div>
    </div>
  </Step>
</Steps>

Need the full install and setup options? See [Quick start](/getting-started/quick-start).

***

## How it works (short)

```mermaid theme={null}
graph TB
    subgraph Pipeline [" "]
        direction LR
        A["URL / File"] --> B["Download + Separate"] --> C["Transcribe"] --> D["Memory + Tag"]
    end

    D --> E["Search"]
    D --> F["Analyze"]
    D --> G["Export"]

    style A fill:#0d2618,stroke:#00f060,color:#00f060,stroke-width:2px
    style B fill:#0d2618,stroke:#00f060,color:#00f060,stroke-width:2px
    style C fill:#0d2618,stroke:#00f060,color:#00f060,stroke-width:2px
    style D fill:#0d2618,stroke:#00f060,color:#00f060,stroke-width:2px
    style E fill:#0a0a0a,stroke:#00f060,color:#00f060,stroke-width:2px
    style F fill:#0a0a0a,stroke:#00f060,color:#00f060,stroke-width:2px
    style G fill:#0a0a0a,stroke:#00f060,color:#00f060,stroke-width:2px
    style Pipeline fill:none,stroke:none

    linkStyle default stroke:#00f060,stroke-width:1.5px
```

Augent is a pipeline. Audio goes in as URLs or files and comes out as searchable, analyzable text. See the full [architecture](/architecture) for details.

**Download** extracts audio-only from any URL using yt-dlp and aria2c with 16 parallel connections. **Transcribe** runs the file through faster-whisper locally. The result is **stored** by file hash in SQLite, so every subsequent operation on that file is instant.

Once it's in memory, every tool works on the stored transcript: keyword search, semantic search, batch processing, speaker ID, chapters, notes, and text-to-speech.

<CardGroup cols={3}>
  <Card title="Get Started" icon="rocket" href="/getting-started/quick-start">
    Install and run your first search in under a minute
  </Card>

  <Card title="MCP Tools" icon="wrench" href="/tools/download-audio">
    Full reference for all 21 tools
  </Card>

  <Card title="Concepts" icon="book" href="/concepts/pipeline">
    How the pipeline, memory, and search work under the hood
  </Card>
</CardGroup>

***

## Through the wormhole

<CardGroup cols={2}>
  <Card title="Agent Pipelines" icon="route" href="/agents/agent-pipelines">
    The full architecture: Claude orchestrates, Augent feeds intelligence, automation platforms execute.
  </Card>

  <Card title="Eyes & Ears" icon="eye" href="/agents/eyes-and-ears">
    Turn spoken workflows into complete, replicable systems with audio and visual context.
  </Card>

  <Card title="Build Your First Workflow" icon="hammer" href="/agents/building-your-first-agent">
    Zero to working agentic workflow in 30 minutes. Step-by-step.
  </Card>

  <Card title="Obsidian Graph" icon="book-open" href="/obsidian/overview">
    Your audio memory as a navigable knowledge graph.
  </Card>
</CardGroup>

## Explore

<CardGroup cols={2}>
  <Card title="All 21 MCP Tools" icon="wrench" href="/tools/download-audio">
    Full reference for every tool.
  </Card>

  <Card title="Guides" icon="map" href="/guides/clips-and-highlights">
    Clips, highlights, source separation, workflows, and configuration.
  </Card>

  <Card title="Obsidian Setup" icon="plug" href="/guides/obsidian-setup">
    Make every .txt and .md file open directly in Obsidian.
  </Card>

  <Card title="Web UI" icon="browser" href="/web-ui/overview">
    Local browser interface. No API keys, no internet required.
  </Card>
</CardGroup>
