ワンクリックで
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"