quickdesk-skill-host/skills/sys-info/SKILL.md
Retrieve system information and list running processes on a remote host via QuickDesk. Use when the user asks to check server health, monitor CPU or memory usage, view disk space, list running processes, or query OS and uptime details on a remote machine.
npx skillsauth add barry-ran/quickdesk sys-infoInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Query system health and running processes on a remote host connected through QuickDesk.
Retrieve OS version, CPU model and usage, memory and swap totals/used, disk usage, hostname, and uptime. Takes no parameters.
Returns:
{
"os": "Ubuntu 22.04",
"kernel": "5.15.0",
"hostname": "prod-server-01",
"cpu": { "model": "AMD EPYC 7763", "cores": 8, "usage_percent": "12.3" },
"memory": { "total_mb": 16384, "used_mb": 8200, "usage_percent": "50.0" },
"swap": { "total_mb": 4096, "used_mb": 128 },
"disks": [{ "mount": "/", "total_gb": 500.0, "available_gb": 320.5, "fs": "ext4" }],
"uptime": "14h 32m"
}
List running processes with resource usage, sorted and limited.
"cpu", "memory", or "name" (default: "cpu")Returns:
{
"total_processes": 312,
"showing": 5,
"sort_by": "cpu",
"processes": [
{ "pid": 1234, "name": "node", "cpu_percent": "45.2", "memory_mb": 512 }
]
}
get_system_info to get an overview of the remote machine's health.list_processes sorted by "cpu" or "memory" to identify the top consumers.limit to control result size when only the top offenders are needed.development
Execute shell commands on a remote host via QuickDesk and return stdout, stderr, and exit code. Use when the user asks to run a command, script, or terminal operation on a remote machine — supports configurable timeout and working directory.
testing
Read, write, list, move, and inspect files and directories on a remote host via QuickDesk. Use when the user needs to browse folders, view file contents, create or edit files, rename or relocate files, or check file metadata (size, permissions, modification time) on a remote machine.
development
Maintainer-only workflow for handling GitHub Secret Scanning alerts on OpenClaw. Use when Codex needs to triage, redact, clean up, and resolve secret leakage found in issue comments, issue bodies, PR comments, or other GitHub content.
development
Maintainer workflow for OpenClaw releases, prereleases, changelog release notes, and publish validation. Use when Codex needs to prepare or verify stable or beta release steps, align version naming, assemble release notes, check release auth requirements, or validate publish-time commands and artifacts.