Initial commit with translated description

This commit is contained in:
2026-03-29 14:38:12 +08:00
commit 6d7ee13d63
2 changed files with 46 additions and 0 deletions

40
SKILL.md Normal file
View File

@@ -0,0 +1,40 @@
---
name: system-info
description: "快速系统诊断CPU、内存、磁盘、正常运行时间。"
metadata:
{
"openclaw":
{
"emoji": "💻",
"requires": { "bins": ["free"] },
"install": [],
},
}
---
# System Info
Quick system diagnostics covering CPU, memory, disk, and uptime. Uses standard Linux utilities that are always available.
## Commands
```bash
# Show all system info (CPU, memory, disk, uptime)
system-info
# Show CPU information
system-info cpu
# Show memory usage
system-info mem
# Show disk usage
system-info disk
# Show system uptime
system-info uptime
```
## Install
No installation needed. `free` and related utilities are always present on the system.