Skip to content

Commit 7d98224

Browse files
Claudeclaude
authored andcommitted
fix: relabel misleading "Open Threads" to "Threads Referenced" in analyze output
The analyze tool was summing open_threads arrays across all sessions, producing an inflated count (e.g., 2107) vs the actual 14 deduplicated threads. Relabeling to accurately describe what the metric measures. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 6f57baa commit 7d98224

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/services/analytics.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ export function formatSummary(data: SummaryAnalytics): string {
585585
const lines: string[] = [
586586
`## ${period.days}-Day Summary (${period.start} to ${period.end})`,
587587
``,
588-
`**Sessions:** ${total_sessions} | **Decisions:** ${total_decisions} | **Open Threads:** ${total_open_threads}`,
588+
`**Sessions:** ${total_sessions} | **Decisions:** ${total_decisions} | **Threads Referenced:** ${total_open_threads}`,
589589
`**With Reflections:** ${sessions_with_reflections} | **With Issues:** ${sessions_with_issues}`,
590590
``,
591591
`### Agents`,

0 commit comments

Comments
 (0)