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

# Command Syntax

> Learn how to use Flamey's commands effectively.

Flamey supports both modern **Slash Commands** (`/`) and legacy **Prefix Commands** (default `,`).

<Tabs>
  <Tab title="Slash Commands (Recommended)">
    Slash commands are the preferred way to interact with Flamey. They offer a better user experience with autocompletion and parameter validation.

    ### Benefits

    <CardGroup cols={2}>
      <Card title="Autocompletion" icon="wand-magic-sparkles">
        Discord shows you available commands and options as you type.
      </Card>

      <Card title="Validation" icon="check-double">
        Ensures you provide the correct data type (e.g., User, Number) before sending.
      </Card>
    </CardGroup>

    ### Example

    ```bash theme={null}
    /ban user:@Flamey reason:Spamming
    ```
  </Tab>

  <Tab title="Prefix Commands">
    Prefix commands are text-based messages starting with a specific character (default `,`).

    ### Configuration

    You can change the bot's prefix for your server in the **Dashboard**.

    ### Example

    ```bash theme={null}
    ,ban @Flamey Spamming
    ```

    <Warning>
      Prefix commands do not have autocompletion or strict validation. You must ensure you type the command correctly.
    </Warning>
  </Tab>
</Tabs>
