view-graph

$npx mdskill add hrconsultnj/claude-plugins/view-graph

Opens a code review graph visualization in the browser, regenerating HTML if updates exist.

  • Helps developers visualize code review relationships without needing a dev server.
  • Depends on a fetch command for secure content loading with caching and decryption.
  • Checks if the graph has been updated since the last generation to decide actions.
  • Presents results as a self-contained HTML file opened directly in the browser.
SKILL.md
.github/skills/view-graphView on GitHub ↗
---
name: view-graph
description: Open the code review graph visualization in the browser. Regenerates the HTML if the graph has been updated since last generation.
---

Open the standalone graph visualization in the browser. No dev server needed — the visualization is a self-contained HTML file.

## Content Loading

Load each step through the fetch command (handles caching, decryption, and auth):

```bash
"~/.composure/bin/composure-fetch.mjs" skill composure view-graph {step-filename}
```

**Do NOT read cache files directly** — they are encrypted at rest. Always use the fetch command above.
More from hrconsultnj/claude-plugins