# Ignored-Commands

The `Ignored-Commands` option allows you to specify a list of commands that CommandPrompter should ignore.

#### Usage

You can configure the `Ignored-Commands` by editing the "config.yml" file as follows:

```yaml
# What commands should CommandPrompter ignore
# 
# When a command is ignored, CommandPrompter
# will not proceed to check if the command
# contains a prompt.
# 
# Do not include the /
# 
# VentureChat channels are automatically ignored.
Ignored-Commands:
- sampleCommand
- sampleCommand2
```

In this example, the commands `sampleCommand` and `sampleCommand2` are ignored by CommandPrompter.

#### Explanation

The `Ignored-Commands` option allows you to specify certain commands that CommandPrompter should not process. By listing these commands, you can ensure that CommandPrompter does not interfere with their execution.

{% hint style="info" %}
VentureChat channels are automatically ignored by CommandPrompter
{% endhint %}

#### Example

To add more commands to the list of ignored commands, use the following configuration:

```yaml
Ignored-Commands:
- sampleCommand
- sampleCommand2
- anotherCommand
```

This will include `anotherCommand` in the list of commands ignored by CommandPrompter.

***

Adjust the content to fit your documentation style and requirements.
