You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
title: "Team Debates, Cost Tracking, and Your ~/.claude Directory"
1656
+
description: "v0.33.0 brings team debate transcripts, per-member cost breakdowns, sub-agent sidechains, and full ~/.claude directory integration to claude-view."
1657
+
date: 2026-04-07
1658
+
author: claude-view team
1659
+
---
1660
+
1661
+
If you're running multi-agent teams in Claude Code, you've probably wondered: "What are they actually saying to each other?" And more practically: "Which agent is burning through my tokens?" v0.33.0 answers both questions.
1662
+
1663
+
## Team debate transcripts
1664
+
1665
+
When Claude Code spawns a team of agents to debate a problem, the raw output is a wall of XML blocks scattered across JSONL lines. Reading it means scrolling through `<teammate-message>` tags, cross-referencing session IDs, and mentally reconstructing who said what.
1666
+
1667
+
v0.33.0 parses these debates into clean conversation transcripts. Each agent gets their own card. Moderator prompts are visually distinct from agent responses. Verdicts and round boundaries are marked clearly. It reads like a group chat, not a log file.
1668
+
1669
+
The design follows progressive disclosure. By default, you see the conversation flow — who argued what, what the moderator asked, what verdict was reached. Technical details (model names, token counts, tool calls) are behind an expandable section. A product manager can follow the debate. An engineer can drill into the execution details. Same page, different depths.
1670
+
1671
+
## Per-member cost breakdown
1672
+
1673
+
The Teams tab now shows per-member cost and token usage. Each team member card displays their total spend, and a crown icon marks the highest spender. This surfaces immediately when one agent is doing most of the heavy lifting while others are nearly idle — a common pattern when team configurations aren't balanced.
1674
+
1675
+
Cost breakdown is visible across all surfaces: the sidebar overview, the detail panel, and the team overview page. You don't have to navigate anywhere special to see where tokens are going.
1676
+
1677
+
## Sidechains
1678
+
1679
+
Teams spawn sub-agents — claude-view calls these sidechains. v0.33.0 adds a dedicated section for them: model info, timestamps, duration, and token usage per sidechain. Click any sidechain to drill into its full block view.
1680
+
1681
+
Sidechain data refreshes reactively via inbox versioning. When a team member spawns a new sub-agent, the UI updates immediately without polling. This is the same event-driven architecture we use across the live monitor — no setInterval, no stale data.
1682
+
1683
+
## ~/.claude integration
1684
+
1685
+
Your ~/.claude directory contains your AI memory files, Claude Code settings, MCP server configs, active session metadata, and todo items. Until now, browsing these required terminal commands or a file manager.
1686
+
1687
+
v0.33.0 adds a Memory page with a 2-column layout: type-grouped memory files on the left, content preview on the right. Badges show counts per type (user, feedback, project, reference). The panel is resizable.
1688
+
1689
+
A separate Settings page surfaces your Claude Code configuration, MCP servers, active sessions, and todos. Everything is read-only — claude-view shows you what's there without modifying it.
1690
+
1691
+
## Sessions directory watcher
1692
+
1693
+
The live monitor now watches ~/.claude/projects/ for new session directories. When a new session appears on disk, it's picked up immediately — no restart, no manual refresh. The watcher also runs a startup scan to catch sessions created while claude-view wasn't running, and detects crash artifacts from sessions that didn't shut down cleanly.
1694
+
1695
+
## Update now
1696
+
1697
+
```bash
1698
+
npx claude-view@latest
1699
+
```
1700
+
1701
+
Open the Teams tab to see debate transcripts and cost breakdowns. Check the Memory page to browse your ~/.claude directory from the dashboard.
1702
+
1703
+
1652
1704
--- blog/v0-4-0-dashboard-analytics.mdx ---
1653
1705
1654
1706
---
@@ -3041,6 +3093,46 @@ npx claude-view@latest
3041
3093
```
3042
3094
3043
3095
3096
+
--- changelog/v0.33.0.md ---
3097
+
3098
+
---
3099
+
title: v0.33.0 — Teams, Transcripts & ~/.claude
3100
+
date: 2026-04-07
3101
+
version: v0.33.0
3102
+
---
3103
+
3104
+
## New features
3105
+
3106
+
**Team Debate Transcripts** — view multi-agent discussions as clean conversation transcripts with progressive disclosure. Non-technical users see the debate flow; engineers can expand technical details. Dedicated cards for agent messages, moderator prompts, verdicts, and round dividers.
3107
+
3108
+
**Team Sidechains** — drill into sub-agent activity per team member. See per-sidechain cost and token usage, model info, timestamps, and duration. Event-driven refresh via inbox versioning — no polling.
3109
+
3110
+
**Team Cost Breakdown** — per-member cost breakdown with crown indicator for highest-spending member. Visible across all surfaces: sidebar, detail panel, and overview.
3111
+
3112
+
**~/.claude Integration** — browse your Claude Code memory files, settings, MCP servers, active sessions, and todos directly from the dashboard. Two-phase rollout: memory viewer + settings (Phase 1), MCP + active sessions + todos (Phase 2).
3113
+
3114
+
**Memory Page Redesign** — 2-column layout with resizable panel, type badges, and per-type memory counts.
3115
+
3116
+
**Sessions Directory Watcher** — live monitor now detects new sessions via filesystem watcher with startup scan and crash detection.
3117
+
3118
+
## Improvements
3119
+
3120
+
- SessionCard layout redesign with amber as the new primary color
3121
+
- Member Sessions moved from bottom panel to resizable right sidebar
3122
+
- SSE-driven real-time team updates (replaces polling)
3123
+
- Snapshot team data before deletion for recovery
3124
+
- Member discovery from inbox filenames, not just senders
3125
+
- External schema fields made optional to survive upstream SDK changes
3126
+
- Stable-sort hook block merge to eliminate timestamp violations
title: "Team Debates, Cost Tracking, and Your ~/.claude Directory"
3
+
description: "v0.33.0 brings team debate transcripts, per-member cost breakdowns, sub-agent sidechains, and full ~/.claude directory integration to claude-view."
4
+
date: 2026-04-07
5
+
author: claude-view team
6
+
---
7
+
8
+
If you're running multi-agent teams in Claude Code, you've probably wondered: "What are they actually saying to each other?" And more practically: "Which agent is burning through my tokens?" v0.33.0 answers both questions.
9
+
10
+
## Team debate transcripts
11
+
12
+
When Claude Code spawns a team of agents to debate a problem, the raw output is a wall of XML blocks scattered across JSONL lines. Reading it means scrolling through `<teammate-message>` tags, cross-referencing session IDs, and mentally reconstructing who said what.
13
+
14
+
v0.33.0 parses these debates into **clean conversation transcripts**. Each agent gets their own card. Moderator prompts are visually distinct from agent responses. Verdicts and round boundaries are marked clearly. It reads like a group chat, not a log file.
15
+
16
+
The design follows progressive disclosure. By default, you see the conversation flow — who argued what, what the moderator asked, what verdict was reached. Technical details (model names, token counts, tool calls) are behind an expandable section. A product manager can follow the debate. An engineer can drill into the execution details. Same page, different depths.
17
+
18
+
## Per-member cost breakdown
19
+
20
+
The Teams tab now shows **per-member cost and token usage**. Each team member card displays their total spend, and a crown icon marks the highest spender. This surfaces immediately when one agent is doing most of the heavy lifting while others are nearly idle — a common pattern when team configurations aren't balanced.
21
+
22
+
Cost breakdown is visible across all surfaces: the sidebar overview, the detail panel, and the team overview page. You don't have to navigate anywhere special to see where tokens are going.
23
+
24
+
## Sidechains
25
+
26
+
Teams spawn sub-agents — claude-view calls these **sidechains**. v0.33.0 adds a dedicated section for them: model info, timestamps, duration, and token usage per sidechain. Click any sidechain to drill into its full block view.
27
+
28
+
Sidechain data refreshes reactively via inbox versioning. When a team member spawns a new sub-agent, the UI updates immediately without polling. This is the same event-driven architecture we use across the live monitor — no `setInterval`, no stale data.
29
+
30
+
## ~/.claude integration
31
+
32
+
Your `~/.claude` directory contains your AI memory files, Claude Code settings, MCP server configs, active session metadata, and todo items. Until now, browsing these required terminal commands or a file manager.
33
+
34
+
v0.33.0 adds a **Memory page** with a 2-column layout: type-grouped memory files on the left, content preview on the right. Badges show counts per type (user, feedback, project, reference). The panel is resizable.
35
+
36
+
A separate **Settings page** surfaces your Claude Code configuration, MCP servers, active sessions, and todos. Everything is read-only — claude-view shows you what's there without modifying it.
37
+
38
+
## Sessions directory watcher
39
+
40
+
The live monitor now watches `~/.claude/projects/` for new session directories. When a new session appears on disk, it's picked up immediately — no restart, no manual refresh. The watcher also runs a startup scan to catch sessions created while claude-view wasn't running, and detects crash artifacts from sessions that didn't shut down cleanly.
41
+
42
+
## Update now
43
+
44
+
```bash
45
+
npx claude-view@latest
46
+
```
47
+
48
+
Open the Teams tab to see debate transcripts and cost breakdowns. Check the Memory page to browse your `~/.claude` directory from the dashboard.
**Team Debate Transcripts** — view multi-agent discussions as clean conversation transcripts with progressive disclosure. Non-technical users see the debate flow; engineers can expand technical details. Dedicated cards for agent messages, moderator prompts, verdicts, and round dividers.
10
+
11
+
**Team Sidechains** — drill into sub-agent activity per team member. See per-sidechain cost and token usage, model info, timestamps, and duration. Event-driven refresh via inbox versioning — no polling.
12
+
13
+
**Team Cost Breakdown** — per-member cost breakdown with crown indicator for highest-spending member. Visible across all surfaces: sidebar, detail panel, and overview.
14
+
15
+
**~/.claude Integration** — browse your Claude Code memory files, settings, MCP servers, active sessions, and todos directly from the dashboard. Two-phase rollout: memory viewer + settings (Phase 1), MCP + active sessions + todos (Phase 2).
16
+
17
+
**Memory Page Redesign** — 2-column layout with resizable panel, type badges, and per-type memory counts.
18
+
19
+
**Sessions Directory Watcher** — live monitor now detects new sessions via filesystem watcher with startup scan and crash detection.
20
+
21
+
## Improvements
22
+
23
+
- SessionCard layout redesign with amber as the new primary color
24
+
- Member Sessions moved from bottom panel to resizable right sidebar
25
+
- SSE-driven real-time team updates (replaces polling)
26
+
- Snapshot team data before deletion for recovery
27
+
- Member discovery from inbox filenames, not just senders
28
+
- External schema fields made optional to survive upstream SDK changes
29
+
- Stable-sort hook block merge to eliminate timestamp violations
0 commit comments