用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/malue-ai/dazee-small --skill system-info命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Analyze and process Excel/CSV files using pandas and openpyxl. Supports data summary, filtering, pivot tables, and chart generation.
Playwright browser automation — navigate, read, and interact with web pages using text snapshots and ref-based targeting. Supports keyboard, dialogs, file upload, JS evaluation, console/network debugging, and PDF export. Login state persists across sessions. Use when user wants to open a URL, fill a web form, scrape page content, or operate any website that requires clicking/typing.
Local web search (Tavily/Exa, requires API Key). For quick searches. If no Key configured or deep research needed, use cloud_agent instead.
基于 SOC 职业分类
正在显示 SKILL.md
| name | system-info |
| description | Quick system diagnostics — CPU, memory, disk, uptime, and running processes. |
| metadata | {"xiaodazi":{"dependency_level":"builtin","os":["common"],"backend_type":"local","user_facing":true}} |
快速获取系统状态:CPU、内存、磁盘、运行时间、进程信息。帮助用户了解电脑运行状况。
根据操作系统选择对应命令集。
# 系统概览
uname -a
# CPU 信息
# macOS
sysctl -n machdep.cpu.brand_string
sysctl -n hw.ncpu
# Linux
lscpu | head -20
# 内存使用
# macOS
vm_stat | head -10
sysctl -n hw.memsize | awk '{printf "Total: %.1f GB\n", $1/1073741824}'
# Linux
free -h
# 磁盘使用
df -h /
# 系统运行时间
uptime
# Top 10 内存占用进程
ps aux --sort=-%mem 2>/dev/null | head -11 || ps aux -m | head -11
# Top 10 CPU 占用进程
ps aux --sort=-%cpu 2>/dev/null | head -11 || ps aux -r | head -11
# macOS 电池状态(笔记本)
pmset -g batt 2>/dev/null
# 系统概览
Get-ComputerInfo | Select-Object CsName, OsName, OsArchitecture, CsProcessors, OsTotalVisibleMemorySize
# CPU 信息
Get-CimInstance Win32_Processor | Select-Object Name, NumberOfCores, NumberOfLogicalProcessors, MaxClockSpeed
# 内存使用
$os = Get-CimInstance Win32_OperatingSystem
[PSCustomObject]@{
TotalGB = [math]::Round($os.TotalVisibleMemorySize/1MB, 1)
FreeGB = [math]::Round($os.FreePhysicalMemory/1MB, 1)
UsedPercent = [math]::Round(($os.TotalVisibleMemorySize - $os.FreePhysicalMemory) / $os.TotalVisibleMemorySize * 100, 1)
}
# 磁盘使用
Get-PSDrive -PSProvider FileSystem | Select-Object Name,
@{N='Used(GB)';E={[math]::Round($_.Used/1GB,1)}},
@{N='Free(GB)';E={[math]::Round($_.Free/1GB,1)}}
# 运行时间
(Get-Date) - (Get-CimInstance Win32_OperatingSystem).LastBootUpTime | Select-Object Days, Hours, Minutes
# Top 10 内存占用进程
Get-Process | Sort-Object WorkingSet64 -Descending |
Select-Object -First 10 Name, @{N='MemMB';E={[math]::Round($_.WorkingSet64/1MB,1)}}, CPU
# Top 10 CPU 占用进程
Get-Process | Sort-Object CPU -Descending |
Select-Object -First 10 Name, @{N='CPU(s)';E={[math]::Round($_.CPU,1)}}, @{N='MemMB';E={[math]::Round($_.WorkingSet64/1MB,1)}}
# 电池状态(笔记本)
Get-CimInstance Win32_Battery 2>$null | Select-Object EstimatedChargeRemaining, BatteryStatus
生成简洁的系统状态报告:
## 系统状态
| 项目 | 信息 |
|---|---|
| 系统 | macOS 15.3 / Windows 11 / Ubuntu 24.04 |
| CPU | Apple M3 Pro (12 核) |
| 内存 | 12.5 / 18 GB (69%) |
| 磁盘 | 187 / 512 GB 可用 (63% 已用) |
| 运行时间 | 3 天 5 小时 |
| 电池 | 78%,正在充电 |
### 资源占用 Top 5
| 进程 | 内存 | CPU |
|---|---|---|
| Chrome | 2.3 GB | 12% |
| ... | ... | ... |