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

# Licensing Overview

> How ArgentOS licensing works — plans, features, and activation.

## Overview

ArgentOS uses a licensing system to manage access to features across different tiers. The core platform is available to all users, with additional features unlocked through paid licenses.

## License Tiers

<CardGroup cols={3}>
  <Card title="Community" icon="user">
    **Individual developers**

    * Core agent
    * 1 channel
    * Basic memory
    * CLI
  </Card>

  <Card title="Pro" icon="star">
    **Power users**

    * All channels
    * Model router
    * Dashboard
    * TTS
    * Heartbeat
  </Card>

  <Card title="Enterprise" icon="building">
    **Teams & organizations**

    * Multi-agent
    * Secret sync
    * Org management
    * Priority support
  </Card>
</CardGroup>

## How Licensing Works

<Steps>
  <Step title="Purchase">
    Purchase a license key from [argentos.ai](https://argentos.ai)
  </Step>

  <Step title="Activate">
    Activate the key on your ArgentOS instance
  </Step>

  <Step title="Verify">
    ArgentOS periodically verifies the license is valid
  </Step>

  <Step title="Use">
    Licensed features are unlocked based on your tier
  </Step>
</Steps>

## License Keys

A license key looks like:

```
ARGENT-XXXX-XXXX-XXXX-XXXX
```

Keys are tied to a hardware fingerprint after activation, preventing unauthorized sharing.

## Offline Support

After initial activation, ArgentOS works offline with a grace period. The license is verified locally using a cached token. Online verification is required periodically to maintain active status.

## Managing Your License

<Tabs>
  <Tab title="Via CLI">
    ```bash theme={null}
    # Activate a license
    argent license activate ARGENT-XXXX-XXXX-XXXX-XXXX

    # Check license status
    argent license status

    # Deactivate (for transferring to another machine)
    argent license deactivate
    ```
  </Tab>

  <Tab title="Via Dashboard">
    Navigate to **Settings > License** to view your license status, features, and expiration.
  </Tab>
</Tabs>

## Related Pages

* [Activation](/licensing/activation) -- Step-by-step activation flow
* [Enterprise](/licensing/enterprise) -- Enterprise features and org management
