system-info-windows-skill

v1.0.3

Query system information including OS, CPU, memory, and disk usage. Use when users ask about system configuration, resource usage, performance diagnostics, o...

0· 435·2 current·2 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The skill's name, description, and included Python script all focus on collecting local system information (OS, CPU, memory, disk). It does not request unrelated credentials, binaries, or config paths. Minor mismatch: SKILL.md/README claim full macOS/Linux/Windows support while the memory path implements Linux (/proc/meminfo) and a Windows-specific ctypes call; macOS memory information will fall back to zeros.
Instruction Scope
Runtime instructions only tell the agent to run the bundled Python script with optional flags. The script reads local system APIs/files (platform, /proc/meminfo on Linux, Windows GlobalMemoryStatus via ctypes, shutil.disk_usage) and prints JSON or table output. It does not perform network calls, write to external endpoints, or access unrelated files or env vars.
Install Mechanism
There is no install spec that downloads or executes external artifacts; the skill is instruction-only with a bundled script. This is low-risk from an installation perspective.
Credentials
The skill requests no environment variables or credentials. Its operations are limited to reading local system state, which is proportional to the stated purpose.
Persistence & Privilege
The skill is not always-enabled and does not request elevated persistence or modify other skills/config. It runs only when invoked.
Assessment
This skill appears to do exactly what it claims: read local system information and print it. Before installing, consider: (1) Source verification — the package author/source is unknown; review the included script (scripts/system_info.py) yourself (it is small and readable). (2) Cross-platform limitations — despite claiming macOS support, the memory-reading code uses /proc/meminfo (Linux) and a Windows-specific API; on macOS memory reporting will fall back to zeros. (3) Safety — the script only reads local system APIs/files and does not make network calls or request secrets, so risk is low; if you are concerned, run it in a controlled environment or inspect/execute the script manually rather than installing automatically.

Like a lobster shell, security has layers — review code before you run it.

latestvk97dnyqvhc99bxhs2d44m54t19829tf7
435downloads
0stars
1versions
Updated 1mo ago
v1.0.3
MIT-0

System Information Query

Quick system information query including OS, CPU, memory, and disk.

Installation

Install from ClawHub:

npx clawhub install system-info-skill

Or install from local .skill file:

openclaw skills install system-info-skill.skill

Usage

Query All System Information

python scripts/system_info.py

Query Specific Information

# CPU only
python scripts/system_info.py --cpu

# Memory only
python scripts/system_info.py --memory

# Disk only
python scripts/system_info.py --disk

Example Output

=== System Information ===

OS: Windows 10
CPU: Intel Core i7-9700K
CPU Cores: 8
Total Memory: 16.0 GB
Memory Used: 8.5 GB (53%)
Total Disk: 512.0 GB
Disk Used: 256.0 GB (50%)

Notes

  • Requires Python 3.6+
  • Cross-platform support
  • No additional dependencies required

Comments

Loading comments...