From mh
Full Meta-Harness status view — Pareto frontier, recent runs, regressions, eval health, installed plugins.
How this skill is triggered — by the user, by Claude, or both
Slash command
/mh:harness-dashboardThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
```!
mh-frontier --markdown 2>/dev/null || echo "No frontier data"
mh-regressions --markdown 2>/dev/null || echo "No regressions"
python3 ${CLAUDE_PLUGIN_ROOT}/scripts/eval_runner.py --eval-dir ${CLAUDE_PLUGIN_ROOT}/eval-tasks --cwd . 2>&1 || echo "Eval runner unavailable"
python3 -c "
from scripts.meta_harness import detect_incomplete_runs
r = detect_incomplete_runs()
if r: print(f'Incomplete: {r[\"run_id\"]} phase={r[\"phase\"]} turn={r[\"turn\"]}')
else: print('No incomplete runs')
" 2>/dev/null || echo "Check unavailable"
python3 -c "
import json, pathlib
p = pathlib.Path.home() / '.claude' / 'plugins' / 'installed_plugins.json'
if p.exists():
d = json.loads(p.read_text())
for k in list(d.get('plugins', {}))[:10]:
name = k.split('@')[0]
print(f' {name}')
else:
print('No plugins')
" 2>/dev/null || echo "Plugin scan unavailable"
Present the dashboard using the Meta-Harness output style:
◉ DASHBOARD ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
[Synthesize the data above into a clear status view]
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Highlight:
Provides UI/UX resources: 50+ styles, color palettes, font pairings, guidelines, charts for web/mobile across React, Next.js, Vue, Svelte, Tailwind, React Native, Flutter. Aids planning, building, reviewing interfaces.
Fetches up-to-date documentation from Context7 for libraries and frameworks like React, Next.js, Prisma. Use for setup questions, API references, and code examples.
npx claudepluginhub yannabadie/meta-harness-ygn