noctrace 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +5 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -59,12 +59,15 @@ Requires Node.js 20+. That's it. No config required. Optional hooks for real-tim
59
59
  - **Zoom & pan** — mouse wheel zoom (1-50x), click-drag pan
60
60
  - **Detail panel** — click any row for full tool input/output, resizable
61
61
  - **Re-read detection** — flags duplicate file reads that waste context
62
+ - **Efficiency tips** — 8 waste patterns detected (re-reads, fan-out, correction loops, repeated commands, token spikes, high fill, no delegation, post-compaction re-reads) with amber lightbulb indicators
63
+ - **Security tips** — 13 patterns detect secrets, dangerous commands, exfiltration attempts, prompt injection, and more, with a red shield indicator
64
+ - **Markdown rendering** — detail panel renders markdown in tool output with zero dependencies, XSS-safe
62
65
  - **Dark theme** — Catppuccin Mocha palette
63
66
  - **Session export** — share sessions as standalone offline HTML files
64
67
  - **Hooks integration** — optional real-time event streaming from Claude Code
65
68
  - **Context Drift Rate** — detect accelerating token growth before context rot hits
66
69
 
67
- ![Noctrace waterfall timeline](docs/screenshots/noctrace-waterfall.png)
70
+ ![Noctrace waterfall timeline](docs/screenshots/noctrace-waterfall.gif)
68
71
 
69
72
  ### Token Drift
70
73
 
@@ -86,7 +89,7 @@ Noctrace computes a real-time health score from your session data and warns you
86
89
 
87
90
  ### Detail Panel
88
91
 
89
- ![Detail panel with agent inspection](docs/screenshots/noctrace-detail-panel.png)
92
+ ![Detail panel with tips](docs/screenshots/noctrace-detail-panel.gif)
90
93
 
91
94
  Click any row to inspect the full tool input and output. Two-column layout shows the request on the left and response on the right. Resizable, closes with Esc.
92
95
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "noctrace",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Chrome DevTools Network-tab-style waterfall visualizer for Claude Code agent workflows",
5
5
  "type": "module",
6
6
  "license": "MIT",