Prism prism-dashboard

Generate the PRISM HTML dashboard. Use when asked to show a dashboard, generate a health report, or visualize session data.

install
source · Clone the upstream repo
git clone https://github.com/jakeefr/prism
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/jakeefr/prism "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/prism-dashboard" ~/.claude/skills/jakeefr-prism-prism-dashboard && rm -rf "$T"
manifest: skills/prism-dashboard/SKILL.md
source content

prism-dashboard

Generate a self-contained HTML dashboard of all project health scores.

When to use

When the user asks to see a dashboard, generate a health report, visualize their session data, or open the PRISM dashboard.

Before running

First check if PRISM is installed:

prism --version

If the command is not found, install it first:

pip install prism-cc

Then verify it installed correctly:

prism --version

Once confirmed installed, proceed with the dashboard command.

Usage

Generate the dashboard without opening a browser:

prism dashboard --no-open

The dashboard is written to

~/.claude/prism/dashboard.html
. Tell the user the exact path so they can open it in their browser.

On most systems this is:

  • macOS/Linux:
    ~/.claude/prism/dashboard.html
  • Windows:
    C:\Users\<username>\.claude\prism\dashboard.html

What the dashboard shows

  • Fleet-level health grade across all projects
  • One card per project with overall grade and 5 dimension scores
  • Click any project card to expand and see detailed issues
  • Top issues list per project
  • Advisor recommendations per project
  • Grade distribution chart across all projects
  • Most common issues across the fleet

Notes

  • The HTML file is fully self-contained. No server required. It works as a file:// URL in any browser.
  • The dashboard regenerates every time
    prism analyze
    or
    prism dashboard
    runs. Reload the browser page after a new analysis.
  • No data leaves the machine. The dashboard reads from local session files only.