원클릭으로
system-status
Check server health - uptime, memory, CPU load, running processes, and general system info
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Check server health - uptime, memory, CPU load, running processes, and general system info
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Essential file system operations.
Common Git version control operations.
Upload, download, and edit files on remote servers via NAVIG
Summarize web pages, articles, YouTube videos, and documents using AI
Query and manage databases on remote servers via NAVIG
Check GitHub repos, CI status, PRs, and issues using the gh CLI
| name | system-status |
| description | Check server health - uptime, memory, CPU load, running processes, and general system info |
| user-invocable | true |
| navig-commands | ["navig host use {host}","navig run \"uptime\"","navig run \"free -h\"","navig run \"top -bn1 | head -20\"","navig run \"uname -a\""] |
| examples | ["How is my server doing?","Check memory on production","What's the server load?","Show running processes","Is the server overloaded?"] |
When the user asks about server health, load, memory, uptime, or processes.
navig host use {host}navig run "uptime && free -h && df -h / | tail -1"
navig run "free -h"
Response format:
🧠 Memory on {host}:
RAM: 3.2GB used / 8GB total (40%)
Swap: 128MB used / 2GB total (6%)
✅ Memory looks healthy
navig run "uptime"
navig run "nproc"
Response format:
⚡ CPU Load on {host}:
Load average: 0.45, 0.38, 0.42 (4 cores)
Uptime: 45 days, 3 hours
✅ Load is normal (0.45 / 4 cores = 11%)
Thresholds (per core):
1.0: 🔴 High load
navig run "ps aux --sort=-%mem | head -15"
Response format:
📊 Top Processes on {host}:
1. mysql - 1.2GB RAM (15%)
2. nginx - 256MB RAM (3%)
3. php-fpm - 512MB RAM (6%)
4. node - 384MB RAM (5%)
navig run "uname -a"
navig run "cat /etc/os-release | head -4"
navig run "nproc && free -h | head -2"
Response format:
🖥️ System Info for {host}:
OS: Ubuntu 22.04 LTS
Kernel: 5.15.0-91-generic
CPU: 4 cores
RAM: 8GB total
Uptime: 45 days
When user says "how is my server" or "server health" — run everything:
navig run "echo '=== UPTIME ===' && uptime && echo '=== MEMORY ===' && free -h && echo '=== DISK ===' && df -h / | tail -1 && echo '=== LOAD ===' && cat /proc/loadavg"
Response format:
🏥 Health Check for {host}:
⏱️ Uptime: 45 days
⚡ Load: 0.45 (4 cores) ✅
🧠 Memory: 3.2GB / 8GB (40%) ✅
💾 Disk: 45GB / 100GB (55%) ✅
Overall: All systems healthy! 🚀
navig host test"