AgentSkillsCN

system-info

获取系统信息——包括操作系统、磁盘、内存以及进程等。

SKILL.md
--- frontmatter
name: system-info
description: Get system information - OS, disk, memory, processes.

System Info

OS info

bash
uname -a

Disk usage

bash
df -h

Running processes

bash
ps aux | head -20

System uptime

bash
uptime