Server Control
Every CookAI Bot has a full Linux environment with Exec access. Talk to your Bot like a DevOps engineer — manage your server with natural language, no need to memorize commands.
Key Advantage
Traditional ops requires SSH login and memorizing commands. CookAI Bot lets you do everything through conversation — saying "check disk space" is more natural than typing "df -h", and the Bot automatically analyzes results and gives recommendations.
Check System Status
# Commands the Bot actually runs
$ top -bn1 | head -20$ df -h$ free -m$ docker psInstall & Manage Software
# Commands the Bot actually runs
$ apt update && apt install -y redis-server$ systemctl start redis$ redis-cli pingFile & Project Management
# Commands the Bot actually runs
$ mkdir -p ~/project && cd ~/project$ npm init -y && npm install express$ node server.js &Docker Container Operations
# Commands the Bot actually runs
$ docker pull mysql:8$ docker run -d --name mydb -e MYSQL_ROOT_PASSWORD=secret -p 3306:3306 mysql:8$ docker logs mydbLog Analysis & Debugging
# Commands the Bot actually runs
$ tail -50 /var/log/nginx/error.log$ systemctl status nginx$ ss -tlnp | grep 80Cron Jobs & Automation
# Commands the Bot actually runs
$ crontab -e$ 0 3 * * * /opt/scripts/backup.sh >> /var/log/backup.log 2>&1Server control is only available in private chat. The exec tool is disabled in groups for security. The Bot confirms before executing dangerous operations.