← Back to Skills Marketplace
jpengcheng523-netizen

workspace-health-dashboard

by jpengcheng523-netizen · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
138
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install jpeng-workspace-health-dashboard
Description
Unified health monitoring dashboard that consolidates skill quality, dependency security, cleanup needs, and protected skills status into a single health che...
README (SKILL.md)

Workspace Health Dashboard

Unified health monitoring for the entire workspace.

Usage

const { generateDashboard, formatDashboard, isHealthy } = require('./skills/workspace-health-dashboard');

// Generate full dashboard
const dashboard = generateDashboard();
console.log(formatDashboard(dashboard));

// Quick check
if (!isHealthy()) {
  console.log('Workspace needs attention!');
}

Functions

generateDashboard(options?)

Runs all health checks and returns:

  • Overall health score (0-100)
  • Skill quality metrics
  • Dependency status
  • Cleanup recommendations
  • Protected skills status

formatDashboard(dashboard)

Generates human-readable dashboard with icons.

isHealthy(options?)

Quick boolean check - returns true if all checks pass.

Health Checks

  1. Skill Quality - % of skills with complete structure
  2. Dependencies - Scan for known vulnerabilities
  3. Cleanup - Junk folders and incomplete skills
  4. Protected Skills - Critical skills present

Health Status

  • Healthy - All checks pass
  • ⚠️ Warning - Some issues found
  • 🔴 Critical - Immediate attention needed

Integration

Works with:

  • skill-quality-auditor - Detailed skill analysis
  • skill-cleanup-executor - Execute cleanup
  • dependency-vulnerability-scanner - Security audit
Usage Guidance
This skill appears to do what it says: scan the workspace skills directory and package.json and produce a summary report. Before installing or running it: 1) review the remaining portion of index.js (the provided file was truncated) to ensure no hidden writes, network calls, or credential access; 2) note the default workspacePath is '/root/.openclaw/workspace' — either supply an explicit workspacePath option or change the default if you don't want it to inspect that location; 3) the SKILL.md mentions integrations that the code does not execute — expect this skill to be a passive auditor, not an automatic cleanup tool; and 4) run it in a non-production environment first to confirm behavior. If you need stronger assurance, request a full, untruncated audit of the file and confirm there are no child_process.exec, network requests, or file-modifying operations.
Capability Analysis
Type: OpenClaw Skill Name: jpeng-workspace-health-dashboard Version: 1.0.0 The workspace-health-dashboard skill is a diagnostic tool designed to audit the local OpenClaw environment. It performs read-only operations on the file system to check for skill completeness, identify junk files (e.g., .DS_Store), and verify the presence of core dependencies and 'protected' skills. The code in index.js lacks any network capabilities, shell execution, or data exfiltration logic, and the SKILL.md instructions are strictly aligned with its stated purpose of system monitoring.
Capability Assessment
Purpose & Capability
Name/description match the implementation: the code enumerates skills, inspects package.json for dependencies, and produces cleanup/protected-skills reports. The operations performed (reading the skills directory and package.json) are proportional to a health dashboard.
Instruction Scope
SKILL.md shows the same API (generateDashboard, formatDashboard, isHealthy) that index.js implements. However, the SKILL.md's 'Integration' section mentions other skills (skill-cleanup-executor, dependency-vulnerability-scanner) and implies execution/integration that the provided code does not perform. Also the implementation uses a hard-coded default workspacePath ('/root/.openclaw/workspace'), which the docs do not explicitly call out.
Install Mechanism
No install spec or remote installs are present; the package is provided as source (index.js + package.json + SKILL.md). No archives/downloads or exec-based installers are used.
Credentials
The skill declares no required environment variables or credentials and the code does not access environment secrets. It does read filesystem paths (skills directory and package.json) which is appropriate for this tool, but the use of a root-prefixed default path may surprise some users.
Persistence & Privilege
The skill is not marked always:true, does not request persistent system-wide changes in the visible code, and does not modify other skills' configs. The code appears read-only (filesystem reads) and formatting output; no writes/deletions are present in the provided portion.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install jpeng-workspace-health-dashboard
  3. After installation, invoke the skill by name or use /jpeng-workspace-health-dashboard
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release of the Workspace Health Dashboard skill. - Provides a unified dashboard for monitoring workspace health. - Consolidates skill quality, dependency security, cleanup needs, and protected skills status. - Exposes functions to generate, format, and quickly assess overall workspace health. - Integrates with existing auditor, cleanup, and vulnerability scanning skills.
Metadata
Slug jpeng-workspace-health-dashboard
Version 1.0.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is workspace-health-dashboard?

Unified health monitoring dashboard that consolidates skill quality, dependency security, cleanup needs, and protected skills status into a single health che... It is an AI Agent Skill for Claude Code / OpenClaw, with 138 downloads so far.

How do I install workspace-health-dashboard?

Run "/install jpeng-workspace-health-dashboard" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is workspace-health-dashboard free?

Yes, workspace-health-dashboard is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does workspace-health-dashboard support?

workspace-health-dashboard is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created workspace-health-dashboard?

It is built and maintained by jpengcheng523-netizen (@jpengcheng523-netizen); the current version is v1.0.0.

💬 Comments