返回 Skill 列表
extension
分类: 其它无需 API Key

System Inspector

轻量级服务器健康检查工具,一行命令检查CPU、内存、磁盘、温度、网络端口和最近日志,无需外部依赖,返回...

person作者: laolaoqihubclawhub

System Inspector

Zero-dependency system health check for AI agents.

Runs entirely locally via shell commands. No npm packages, no API calls, no dependencies. Just pure bash + standard Linux tools.

Usage

action: "inspect"

Returns:

{
  "cpu": { "load": [0.35, 0.21, 0.18], "cores": 4, "temp_c": 52.3 },
  "memory": { "total_gb": 3.6, "used_gb": 2.1, "available_gb": 1.5, "percent": 58 },
  "disk": { "total_gb": 114, "used_gb": 13, "percent": 12 },
  "uptime_days": 5.4,
  "top_processes": [
    { "pid": 91204, "name": "node", "cpu": 12, "mem": 460 }
  ],
  "top_listeners": [
    { "port": 18792, "process": "node" }
  ],
  "health_score": 85,
  "warnings": []
}

Actions

| Action | Description | |--------|-------------| | inspect | Full system health report | | quick | Lightweight check (CPU + memory only) | | alerts | Only return warnings and issues |

Pricing

Free — MIT License