claude-view 0.15.0 → 0.16.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/README.md +42 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -41,18 +41,57 @@ curl -fsSL https://raw.githubusercontent.com/tombelieber/claude-view/main/instal
|
|
|
41
41
|
|
|
42
42
|
## What You Get
|
|
43
43
|
|
|
44
|
+
### Live Monitor
|
|
45
|
+
|
|
44
46
|
- **Live session cards** — see what every session is working on, right now
|
|
45
47
|
- **Notification sounds** — get pinged when a session finishes or needs input
|
|
46
48
|
- **Context gauge** — real-time context window usage per session
|
|
47
49
|
- **Cache warm countdown** — time your messages to save tokens
|
|
48
50
|
- **Cost tracking** — per-session and aggregate spend with cache savings
|
|
49
51
|
- **Sub-agent visualization** — see the full agent tree, tool calls, MCP invocations
|
|
52
|
+
- **Recently closed sessions** — sessions stay visible after ending instead of vanishing
|
|
53
|
+
- **Unified live chat** — history and real-time messages in one scrollable view
|
|
54
|
+
- **SSE-driven live data** — real-time push, no stale cache
|
|
55
|
+
|
|
56
|
+
### History & Search
|
|
57
|
+
|
|
58
|
+
- **Rich chat history** — every conversation rendered with markdown, code blocks, tool calls
|
|
59
|
+
- **Full-text search** — Tantivy + SQLite search across sessions, messages, tool calls, file paths
|
|
60
|
+
- **Export** — markdown export for context resumption or sharing
|
|
61
|
+
- **Encrypted sharing** — share any session via E2E encrypted link
|
|
62
|
+
|
|
63
|
+
### Plans, Prompts & Teams
|
|
64
|
+
|
|
50
65
|
- **Plans browser** — view your `.claude/plans/` directly in session detail
|
|
51
66
|
- **Prompt history** — full-text search across all prompts with intent classification and template clustering
|
|
52
67
|
- **Teams dashboard** — track team leads, inbox, tasks, and file changes across team members
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
68
|
+
|
|
69
|
+
### Plugin Manager
|
|
70
|
+
|
|
71
|
+
- **GUI plugin browser** — install, enable, disable, and uninstall Claude Code plugins — no terminal needed
|
|
72
|
+
- **Marketplace dialog** — discover and install plugins with user or project scope
|
|
73
|
+
|
|
74
|
+
### Workflows
|
|
75
|
+
|
|
76
|
+
- **Workflow builder** — create and run multi-stage workflows with a Mermaid diagram preview and YAML editor
|
|
77
|
+
- **Streaming LLM chat rail** — generate workflow definitions in real time
|
|
78
|
+
|
|
79
|
+
### Open in IDE
|
|
80
|
+
|
|
81
|
+
- **One-click file open** — open any referenced file directly in VS Code, Cursor, Zed, or your preferred editor
|
|
82
|
+
- **Auto-detects your editor** — no configuration needed
|
|
83
|
+
|
|
84
|
+
### Agent Internals
|
|
85
|
+
|
|
86
|
+
- **@File mention chips** — `@filename` references shown as chips on session cards
|
|
87
|
+
- **Agent SDK live chat** — thinking blocks, tool calls, and results with syntax highlighting
|
|
88
|
+
- **Worktree branch drift** — detects when git worktree branches diverge
|
|
89
|
+
|
|
90
|
+
### Analytics
|
|
91
|
+
|
|
92
|
+
- **Activity heatmap** — 90-day GitHub-style usage grid
|
|
93
|
+
- **Cost ROI metrics** — cost per commit, per session, per line of AI output
|
|
94
|
+
- **AI Fluency Score** — single 0–100 number tracking your overall effectiveness
|
|
56
95
|
|
|
57
96
|
---
|
|
58
97
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-view",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"description": "You have 10 Claude sessions running. What are they doing? Live dashboard for Claude Code — monitor every session, track costs, search history, see sub-agents. One command: npx claude-view",
|
|
5
5
|
"bin": {
|
|
6
6
|
"claude-view": "./index.js"
|