noctrace 1.4.0 → 1.5.0
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.
- package/.claude-plugin/plugin.json +1 -1
- package/README.md +13 -0
- package/dist/client/assets/index-DocLM4cc.js +30 -0
- package/dist/client/index.html +1 -1
- package/dist/server/server/routes/api.js +154 -1
- package/dist/server/shared/parser.js +16 -3
- package/dist/server/shared/providers/copilot.js +479 -0
- package/dist/server/shared/providers/index.js +4 -0
- package/package.json +1 -1
- package/dist/client/assets/index-BGW0xA7n.js +0 -30
package/README.md
CHANGED
|
@@ -89,6 +89,7 @@ Requires Node.js 20+. Optional `--install-hooks` flag enables real-time hook eve
|
|
|
89
89
|
- **Context Startup Flyout** — shows which instruction files (CLAUDE.md and others) loaded at session start with estimated token counts, parsed from JSONL system records
|
|
90
90
|
- **Docker Support** — `npx noctrace --docker <container>` attaches to a running Docker container, injects a lightweight watcher, and streams JSONL events back to your host in real time. Zero container setup required
|
|
91
91
|
- **Patterns View (new in v1.2)** — a second top-level tab that aggregates across every session in the chosen time window (today, 7 days, 30 days). Three panels: health distribution (A/B/C/D/F grade counts with week-over-week delta arrows), project rot leaderboard (which codebases are degrading, ranked), and tool health grid (per-tool failure rate and p50/p95 latency). Zero spend or token tracking — this is about quality and waste
|
|
92
|
+
- **Multi-provider support (new in v1.4+)** — sessions from Claude Code, OpenAI Codex CLI, and GitHub Copilot Chat all appear in the same session picker with provider badges. Zero config — each provider auto-detects its session directory. Copilot Chat maps 19 internal tool IDs to familiar names (Read, Write, Edit, Bash, etc.)
|
|
92
93
|
|
|
93
94
|

|
|
94
95
|
|
|
@@ -172,6 +173,18 @@ npm run dev # starts server + Vite dev server
|
|
|
172
173
|
- **Tests**: Vitest 4
|
|
173
174
|
- **Language**: TypeScript 5.9 (strict mode)
|
|
174
175
|
|
|
176
|
+
## Supported providers
|
|
177
|
+
|
|
178
|
+
Noctrace reads sessions from multiple AI coding tools automatically — no configuration required for any of them:
|
|
179
|
+
|
|
180
|
+
| Provider | Source | Badge |
|
|
181
|
+
|---|---|---|
|
|
182
|
+
| **Claude Code** | `~/.claude/projects/` JSONL session logs | (default) |
|
|
183
|
+
| **OpenAI Codex CLI** | `~/.codex/sessions/` rollout JSONL files | orange `codex` |
|
|
184
|
+
| **GitHub Copilot Chat** | VS Code workspaceStorage JSON session files | blue `copilot` |
|
|
185
|
+
|
|
186
|
+
All three show up in the same session picker. Context health scoring and token cost are available for Claude Code and Codex sessions. Copilot sessions show the waterfall timeline and tool call detail panel; token tracking is not available because Copilot Chat does not expose token counts.
|
|
187
|
+
|
|
175
188
|
## Compatibility
|
|
176
189
|
|
|
177
190
|
Noctrace works with all Claude Code versions that write JSONL session logs to `~/.claude/projects/`. This includes:
|