skills$openclaw/ops-dashboard
crimsondevil3333336.8k

by crimsondevil333333

ops-dashboard – OpenClaw Skill

ops-dashboard is an OpenClaw Skills integration for data analytics workflows. Gather operational signals (disk usage, git status, recent commits, and resources) so you can answer "How is the Clawdy infrastructure doing?" without manually running multiple checks.

6.8k stars9.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameops-dashboard
descriptionGather operational signals (disk usage, git status, recent commits, and resources) so you can answer "How is the Clawdy infrastructure doing?" without manually running multiple checks. OpenClaw Skills integration.
ownercrimsondevil333333
repositorycrimsondevil333333/ops-dashboard
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @crimsondevil333333/ops-dashboard
last updatedFeb 7, 2026

Maintainer

crimsondevil333333

crimsondevil333333

Maintains ops-dashboard in the OpenClaw Skills directory.

View GitHub profile
File Explorer
9 files
.
references
ops-dashboard.md
604 B
scripts
ops_dashboard.py
3.9 KB
tests
test_ops_dashboard.py
1.1 KB
_meta.json
290 B
README.md
1.0 KB
SKILL.md
1006 B
SKILL.md

name: ops-dashboard description: Gather operational signals (disk usage, git status, recent commits, and resources) so you can answer "How is the Clawdy infrastructure doing?" without manually running multiple checks.

Ops Dashboard

Overview

ops-dashboard exposes a single CLI (scripts/ops_dashboard.py) that prints a snapshot of:

  • Workspace disk usage (total vs. free) and storage availability.
  • Git status and the latest commits for the current branch.
  • System load averages plus the top-level directory sizes so you know where data is accumulating.

Use this skill whenever you need to check health before deployments, push updates, or support teammates struggling with a slow workspace.

References

  • references/ops-dashboard.md explains the meaning of each metric and how to interpret alerts like high disk usage or stale branches.

Resources

README.md

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 /home/pi/.npm-global/lib/node_modules/openclaw/skills/skill-creator/scripts/package_skill.py skills/ops-dashboard

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install ops-dashboard?

Run openclaw add @crimsondevil333333/ops-dashboard in your terminal. This installs ops-dashboard into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/crimsondevil333333/ops-dashboard. Review commits and README documentation before installing.