6.8k★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.
Skill Snapshot
| 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. OpenClaw Skills integration. |
| owner | crimsondevil333333 |
| repository | crimsondevil333333/ops-dashboard |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @crimsondevil333333/ops-dashboard |
| last updated | Feb 7, 2026 |
Maintainer

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.mdexplains the meaning of each metric and how to interpret alerts like high disk usage or stale branches.
Resources
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 summaryprints disk usage, git status, and the top three directories by size.--show resourcesprints 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
Links
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.
