Managing Blacklists
Go to Accounts → Blacklist and click Create Command to add a new entry.
Pattern
A regex pattern that defines which commands to block. Example:vim
blocks the Vim text editor
Description
Explains why the command is blocked. Example:Vim is interactive and can't be operated by LLMs
Organization
By default, blacklists apply to all organizations. Select a specific organization to restrict the blacklist to only that org’s agents.Pattern Type
How the pattern matching works:- Exact match: Command must exactly match the pattern
- Prefix match: Command must start with the pattern
- Contains: Pattern can appear anywhere in the command
Common Use Cases
Destructive Operations Block high-risk commands for additional safety:rm -rf /
awscli terminate-instances
sudo shutdown
redis-cli
(exact match) - Useredis-cli KEYS *
style commands insteadvim
,nano
,vi
mysql
,psql
python
(without arguments)