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

# Introduction

> Turn your application AI-native with Argide embeddable AI agent

Argide is an embeddable AI agent that answers questions, takes actions, and knows your product.

## Get Started

<CardGroup cols={2}>
  <Card title="Quickstart" icon="rocket" href="/get-started/quickstart">
    Live in 5 minutes
  </Card>

  <Card title="Identity Verification" icon="shield-halved" href="/setup/identity-verification">
    Authenticate your users
  </Card>
</CardGroup>

## Installation

Add the Argide widget to your site with a single script tag:

<Tabs>
  <Tab title="Script Tag">
    ```html theme={null}
    <script
      src="https://dashboard.argide.ai/argide-b2b-widget.iife.js"
      data-api-url="https://dashboard.argide.ai"
      data-product-id="YOUR_PRODUCT_ID"
    ></script>
    ```
  </Tab>

  <Tab title="React SDK">
    ```bash theme={null}
    npm install @argide/client @argide/ui
    ```

    ```tsx theme={null}
    import { ArgideWidget } from '@argide/ui';
    import '@argide/ui/styles.css';

    <ArgideWidget productId="YOUR_PRODUCT_ID" apiUrl="https://dashboard.argide.ai" />
    ```
  </Tab>
</Tabs>

## Core Features

| Feature                   | What it does                                                              |
| ------------------------- | ------------------------------------------------------------------------- |
| **Knowledge Base**        | Agent learns from your docs, website                                      |
| **API Integration**       | Agent calls your API to take actions (check orders, cancel subscriptions) |
| **Identity Verification** | Agent knows who the user is and can act on their behalf                   |

## How it Works

<Steps>
  <Step title="Embed">
    Add the script tag to your site.
  </Step>

  <Step title="Integrate">
    Connect your API via [OpenAPI spec](/integration/openapi).
  </Step>

  <Step title="Deploy">
    Monitor conversations in [Activity](/monitor/activity).
  </Step>
</Steps>

## Guides

<CardGroup cols={2}>
  <Card title="Knowledge Base" icon="book" href="/knowledge-base/knowledge-base">
    Files, websites
  </Card>

  <Card title="API Integration" icon="plug" href="/integration/api-integration">
    Connect your REST API
  </Card>

  <Card title="Actions" icon="bolt" href="/agent/actions">
    Enable agent capabilities
  </Card>

  <Card title="OpenAPI Auth" icon="key" href="/integration/openapi-auth">
    API Key, Bearer, JWT Forward
  </Card>
</CardGroup>

## Need Help?

Running into issues or want our engineers to customize Argide for your use case?

<Card title="Book a Demo" icon="calendar" href="https://cal.com/eshaangulati/30min">
  Talk to our team and get a personalized walkthrough.
</Card>
