Install
openclaw skills install @jpengcheng523-netizen/jpeng-workspace-health-dashboardUnified health monitoring dashboard that consolidates skill quality, dependency security, cleanup needs, and protected skills status into a single health check report. Use when checking overall workspace health or running system diagnostics.
openclaw skills install @jpengcheng523-netizen/jpeng-workspace-health-dashboardUnified health monitoring for the entire workspace.
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!');
}
Runs all health checks and returns:
Generates human-readable dashboard with icons.
Quick boolean check - returns true if all checks pass.
Works with:
skill-quality-auditor - Detailed skill analysisskill-cleanup-executor - Execute cleanupdependency-vulnerability-scanner - Security audit