ops-dashboard

Verified·Scanned 2/17/2026

This skill provides a CLI to report workspace health (disk usage, git status, recent commits, and top directories) via skills/ops-dashboard/scripts/ops_dashboard.py. It invokes git using subprocess.run against the supplied --workspace path (fixed git commands are executed).

from clawhub.ai·v5ba02c7·8.7 KB·0 installs
Scanned from 1.0.1 at 5ba02c7 · Transparency log ↗
$ vett add clawhub.ai/crimsondevil333333/ops-dashboard

Ops Dashboard

Ops Dashboard summarizes workspace health so you can confidently answer operational questions without hopping between terminals. The CLI in skills/ops-dashboard/scripts/ops_dashboard.py gathers disk usage, git status, recent commits, and load averages into a single report.

Running the dashboard

python3 skills/ops-dashboard/scripts/ops_dashboard.py --workspace . --show summary
  • --show summary prints disk usage, git status, and the top three directories by size.
  • --show resources prints load averages, disk usage, and the last three git commits.
  • The script handles non-git folders by printing a friendly message instead of crashing.

Testing

python3 -m unittest discover skills/ops-dashboard/tests

Packaging & release

python3 $(npm root -g)/openclaw/skills/skill-creator/scripts/package_skill.py skills/ops-dashboard

Links