AI Command Center
Manage your servers using natural language commands.
Note: The AI Command Center is available on Starter, Pro, and Business plans. Free plan users have access to monitoring only. Upgrade to unlock AI commands.
How it works
- Select a server from your server list
- Type what you want to do in plain English
- HelmRelay's AI translates your request into safe, specific commands
- You see a preview with the safety level before execution
- The command runs on your server and output is displayed in real-time
Example conversations
Checking server health
How's my server doing?
Running diagnostics on srv-prod-01...
$ uname -a
Ubuntu 22.04 LTS, uptime 42 days
$ top -bn1 | head -3
CPU: 12% (4 cores)
RAM: 1.2 GB / 4 GB (30%)
$ df -h /
Disk: 18 GB / 80 GB (22%)
✓ All systems healthy. CPU, RAM, and disk usage are all within normal range.
Installing software
Install Node.js 20
$ curl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -
$ apt install -y nodejs
Troubleshooting
Why is my website down?
$ systemctl status nginx
✗ nginx is not running (exit code 3)
$ tail -5 /var/log/nginx/error.log
2026/04/11 bind() to 0.0.0.0:80 failed (98: Address already in use)
✗ Nginx is down. Port 80 is occupied by another process, preventing nginx from starting.
Suggestion: Run "Show what's using port 80" to identify the conflict.
Chat sessions
Conversations are organized into sessions. Each session maintains context, so you can have follow-up commands like "now restart it" after checking a service.
The AI remembers the last 20 messages in a session for context. Start a new session to reset the conversation.
Tips for best results
- Be specific— "Install nginx" works better than "set up a web server"
- Ask questions— "Why is disk usage so high?" triggers diagnostic commands
- Chain operations— "Update packages and restart nginx" runs both in sequence
- Use server context — HelmRelay knows your OS and adapts commands accordingly