LaunchKit · 2026
Back to Skills

disk-usage-watcher

Monitors disk space and inode usage on specified paths, sending alerts when thresholds are exceeded.

0
249 downloads
by @nidalghetf

Setup & Installation

openclaw skills install @nidalghetf/disk-usage-watcher

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install disk-usage-watcher

Version History

v1.0.1Feb 26, 2026 - Version note by skill developer:

- Added _meta.json file to the repository. - No functional changes to the skill itself.

What This Skill Does

Monitors disk space and inode usage across specified paths, sending alerts when configured thresholds are exceeded. Runs on demand or automatically every 15 minutes via cron.

Automated threshold alerts catch disk issues before they cause failures, removing the need for manual spot checks.

When to use it

  • Alert before a production server runs out of disk space
  • Track inode exhaustion on high-file-count directories
  • Monitor specific mount points after a large data ingestion
  • Schedule routine disk checks without manual intervention
  • Get notified when a backup partition fills unexpectedly

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Monitor all mount points and alert at 85%

AGENT
  1. 1Receives threshold_percent=85 and inode_threshold=85 with no specific paths set
  2. 2Calls openclaw/exec to run df against all mounted partitions
  3. 3Parses usage percentages for each mount point and inode counts
  4. 4Compares results against the 85% threshold
  5. 5Calls openclaw/notify for any mount points that exceed the threshold
OUTPUT

Status report listing all mount points with usage percentages and alerts sent for any that exceeded 85%