system-info-skill

v1.0.2

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

0· 322·1 current·1 all-time
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
Name/description ask for basic system info and the package contains a small Python script that returns OS, CPU, memory, and disk usage — this is proportional and expected.
Instruction Scope
SKILL.md instructs running the included Python script and does not direct the agent to read unrelated files, environment variables, or send data externally. The script reads standard system sources (/proc/meminfo on Linux, ctypes on Windows) and disk usage for '/', which is consistent with its purpose.
Install Mechanism
No install spec is provided (instruction-only install), so nothing is downloaded or executed beyond the shipped script. This is low-risk and proportional.
Credentials
The skill requires no environment variables, no credentials, and no config paths. The script only uses standard library modules and local system APIs to gather information.
Persistence & Privilege
The skill is not always-enabled and uses default agent invocation behavior. It does not modify other skills or request elevated persistent presence.
Assessment
This skill appears coherent and low-risk: it gathers only local system information (OS, CPU, memory, disk) and does not contact external endpoints or request secrets. Before installing, you may want to: (1) review the included scripts yourself (they are short and readable), (2) run the script in a sandbox or on a test machine if you're concerned about exposing system details, and (3) confirm you obtained the skill from a trusted source — system telemetry can still be sensitive (hardware, disk sizes, OS version), so avoid installing if you do not trust the publisher.

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

latestvk97d3svwfbt6v7mjyyj9v428x98295ap
322downloads
0stars
3versions
Updated 1mo ago
v1.0.2
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...