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

# Autoreact

<Card title="Module: Autoreact" icon="face-grin-squint-tears" horizontal="True">
  Autoreactions makes kyos automatically append reactions to messages if the message contains the trigger
</Card>

## Adding an autoreaction

<Tabs />

<Warning>
  You **must** separate the **trigger** and the **emojis** with a `,`
</Warning>

You can create a new autoreaction with the `reaction add` command.

<CodeGroup>
  ```javascript syntax theme={null}
  ,autoreact add (trigger), (emojis)
  ```

  ```javascript example theme={null}
  ,autoreact add check, ✅
  ```
</CodeGroup>

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/kyos-c60486ad/images/autoreact-1.png" />
</Frame>

## Removing an autoreaction

<Tabs />

<Info>
  This will delete the **given** autoreaction trigger
</Info>

You can delete an autoreaction with the `autoreact remove` command

<CodeGroup>
  ```javascript syntax theme={null}
  ,autoreact remove (trigger)
  ```

  ```javascript example theme={null}
  ,autoreact remove check 
  ```
</CodeGroup>

<Frame>
  <img src="https://mintlify.s3.us-west-1.amazonaws.com/kyos-c60486ad/images/autoreact-2.png" />
</Frame>

## Viewing the autoreactions

<Tabs />

To view the current autoreactions, you can use the `autoreact list` command

<CodeGroup>
  ```javascript syntax theme={null}
  ,autoreact list
  ```
</CodeGroup>
