Changelog
0.18.0
2026-04-02New features
- Import Claude.ai and ChatGPT conversations into AgentsView. Upload the zip file export from either service via the UI or CLI to bring your full conversation history — including ChatGPT images — into your local database alongside your agent coding sessions.
- Show token usage metrics across sessions, analytics views, and exports. Session breadcrumbs display peak context and output tokens, the analytics dashboard includes output token summary cards and heatmap metrics, and CSV exports include token totals.
Improvements
- Detect automated roborev sessions and filter them out of session lists, counts, and analytics by default. An “Include automated” toggle in the session filter dropdown opts back in.
Bug fixes
- Keep pinned messages pinned after a session resync. Previously, re-syncing a session’s messages could silently remove all pins due to cascade deletes; pins are now preserved by matching on message ordinal.
- Reduce WebView memory usage when rendering message content by rekeying content-parser caches on message ID instead of full message text and lowering cache capacity.
0.17.1
2026-03-29Bug fixes
pg serveautomatically applies pending PostgreSQL schema migrations on startup, reducing upgrade friction and startup failures.
0.17.0
2026-03-28New features
- Add a session activity minimap with click-to-navigate support for quickly jumping to activity hotspots within a session.
- Add a resizable session sidebar so you can drag the divider to adjust the layout to fit your workflow.
- Capture and display Codex subagent result events in session transcripts, with an expandable history of status updates per tool call.
Improvements
- Support Cursor’s nested transcript directory layout for more reliable transcript discovery.
Bug fixes
- Restore Copilot as an insight-generation agent alongside Claude, Codex, and Gemini.
- Fix transcript strip pill spacing in WebKit browsers.
0.16.2
2026-03-25Bug fixes
- Detect Claude conversation forks across the full reply subtree so branched threads display correctly.
0.16.1
2026-03-25Bug fixes
- Fix Linux container builds by disabling VCS stamping in the Go build.
0.16.0
2026-03-24New features
- Add direct URL links for opening specific sessions, enabling bookmarks and sharing of session deep links.
- Add machine labels and multi-host filtering to separate sessions by source machine in shared deployments.
- Add focused transcript mode with a responsive header that strips intermediate tool calls and thinking blocks for easier reading.
- Add
Delas a keyboard shortcut to delete or archive the selected session. - Add Kimi (Moonshot AI) session support for importing and viewing Kimi conversations.
- Add PostgreSQL push sync and a read-only server mode (
pg push,pg serve) for shared multi-user deployments backed by a central PostgreSQL database.
Improvements
- Group command palette search results by session, add a relevance/recency sort toggle, and match against session names in addition to message content.
- Show model information in the session UI, including Codex session models, displayed in message headers.
- Use OpenCode session titles as display names in the session list.
- Improve the mobile layout for smaller screens with a responsive sidebar and viewport-aware keyboard shortcuts.
- Add managed Caddy support to
pg servefor simpler TLS-terminated shared deployments. - Publish platform-specific wheels to PyPI for easier installation via
pip install agentsview. - Add standard macOS app menu actions for Hide and Hide Others.
Bug fixes
- Show user messages that begin with skill or command invocations (e.g.
[Skill: name]) in transcripts instead of hiding them. - Prevent Linux desktop app freezes with improved runtime CSP handling in the Tauri configuration.
- Restore desktop copy, paste, and cut keyboard shortcuts through the Edit menu.
- Fix pinned message navigation in very large sessions where the virtualizer could stop mid-scroll before reaching the target message.
- Surface insight generation errors directly in the UI with error status and message display instead of silently failing.
0.15.0
2026-03-17New features
- Add
agentsview token-use, a CLI command that outputs machine-readable token usage data for scripts and automation.
Improvements
- Improve cross-platform token usage reporting on macOS, Linux, and Windows.
- Make token usage insights more consistent across application and system restarts.
Bug fixes
- Fix cases where token usage can be attributed to the wrong process after PID reuse or restarts.
0.14.0
2026-03-15New features
- Add in-session search with
Cmd+F/Ctrl+Fand keyboard navigation between matches for finding text within a session’s messages. - Display token usage for each session, showing input and output token counts in the session detail header.
- Add Zencoder CLI session support for importing and viewing Zencoder conversations.
- Add GitHub Copilot CLI resume support in the session dropdown, letting you reopen Copilot CLI sessions directly.
- Ship Linux desktop builds as AppImages, adding Linux to the desktop app platform matrix alongside macOS
.dmgand Windows.exe.
Improvements
- Improve insight agent detection for sandboxed sessions and GitHub Copilot, producing more accurate and relevant insights.
- Speed up session resync for larger histories, reducing the time to re-parse all session files.
Bug fixes
- Fix updater output so the verify step starts on a new line after download progress.
0.13.0
2026-03-12New features
- Add a Settings page for appearance, terminal, GitHub, agent directory, and remote access options — centralizing configuration that was previously spread across individual modals and config file edits.
- Add remote access with bearer token authentication, trusted public origins, and managed Caddy reverse proxy mode for secure multi-device access.
- Organize sub-agents and teams in a collapsible tree view in the sidebar, making complex multi-agent sessions easier to navigate.
- Update live sessions incrementally as new activity arrives, replacing full refreshes for faster real-time updates.
- Add desktop zoom controls for adjusting the interface scale.
Improvements
- Skip common dependency and build folders (e.g.
node_modules,__pycache__,.git) during recursive watching to reduce noise and overhead. - Show release information in a new About dialog accessible from the header.
- Shut down cleanly on
Ctrl+Cand stop auto-opening the browser on startup by default.
Bug fixes
- Preserve original project name casing in group headers.
- Resolve project names correctly for deleted nested worktrees.
- Fix navigation issues in the Windows desktop app.
0.12.0
2026-03-10New features
- Add iFlow agent support for importing and viewing iFlow conversations, including JSONL session parsing and tool calls.
- Add a session resume menu with three actions: reopen a session, launch a terminal in its working directory, and open the directory in Finder/Explorer.
- Ship packaged desktop releases (
.dmgfor macOS,.exefor Windows) as the recommended install path, with built-in auto-update support.
Improvements
- Replace the single-select agent filter with a multi-select agent filter, allowing multiple agents to be selected at once.
- Improve cross-platform path handling for more reliable session discovery on Windows and WSL.
Bug fixes
- Fix Amp tool output rendering so tool results display correctly in expanded tool blocks.
0.11.0
2026-03-08New features
- Add Pi agent support for importing and viewing Pi conversations, including JSONL session parsing, thinking blocks, and tool calls.
- Add an
agentsview synccommand to populate the database without starting the HTTP server. Supports a-fullflag to force a complete resync. - Add session renaming (double-click or right-click context menu), soft delete with trash and undo, and pinned messages with a gallery view.
- Persist starred sessions in SQLite so stars survive server restarts. Existing localStorage stars are automatically migrated on first load.
Improvements
- Exclude single-turn sessions (one or fewer user messages) by default in session lists and analytics views to reduce noise. A new “Include single-turn” toggle in the sidebar filter dropdown opts back in.
- Normalize tool metadata across agents so tool calls from Gemini, Pi, and other agents display with the same metadata tags as their Claude equivalents.
Bug fixes
- Align timestamps between message headers and grouped tool call headers so they sit at the same right edge in all layouts.
- Show Copilot
reasoningTextas thinking blocks instead of discarding it. - Extract Gemini tool results more reliably and recognize additional Gemini tool names (
replace,run_shell_command,grep_search,glob,list_directory).
0.10.0
2026-03-04New features
- Add Amp, VS Code Copilot, and OpenClaw agent support, including session parsing, filtering, and agent-colored display.
- Add a Tauri-based desktop app wrapper that runs the web UI in a native window (in development, not yet released).
- Add session starring with
skey toggle and a starred-only filter for quick access to important sessions. - Add switchable message layouts — Default, Compact, and Stream — cycled with the
lkey. - Add collapsible sidebar grouping by agent to organize sessions by tool.
- Add block-type filtering to toggle visibility of user messages, assistant responses, thinking blocks, tool calls, and code blocks.
- Add a copy button on message headers to copy message content to the clipboard.
- Add inline subagent transcript viewing for Task and Agent tool calls, loading the full subagent conversation on demand.
Improvements
- Enrich Codex tool call display with structured formatting for bash, write_stdin, and apply_patch calls.
- Store tool result content alongside tool calls, with configurable category blocklists to control database size.
- Use a non-destructive database resync flow that preserves existing session data instead of dropping the database.
- Simplify the message viewer header by removing the dedicated toggle-thinking button (use block-type filtering instead).
Bug fixes
- Return an empty array instead of
nullfrom the sessions API when no sessions match. - Fix dashboard date handling in analytics and insights views for consistent date-range filtering.
0.9.0
2026-02-27New features
- Add Cursor agent support, including parsing Cursor sessions and filtering them in the UI.
Improvements
- Show tool call parameters in expanded tool blocks for better execution visibility.
- Restrict CORS to
localhostorigin to improve local security defaults.
Bug fixes
- Fix
install.shversion parsing so installs work correctly with minified release JSON.
0.8.0
2026-02-26New features
- Replace the project dropdown with a filterable typeahead to find and switch projects faster.
Improvements
- Improve resync reliability so session data stays in sync more consistently.
- Polish startup UX to make initial loading clearer and smoother.
Bug fixes
- Fix Gemini message parsing and display for thinking blocks.
- Fix text selection inside tool call blocks.
0.7.0
2026-02-25New features
- Add a session DAG view that detects forks and shows branch relationships.
- Add inline subagent linking so parent and subagent conversations are connected in context.
- Add an
Alloption to the Analytics date range picker. - Add a
Hide unknownfilter to reduce noise from unclassified items.
Improvements
- Improve Gemini project resolution for more accurate project attribution.
- Update Gemini model handling to support newer model variants.
Bug fixes
- Fix Analytics message counting so totals match actual message data.
- Fix agent color assignment for more consistent visual identification.
0.6.0
2026-02-25New features
- Support multiple Claude project directories, including mixed Windows/WSL setups.
- Add session filters to quickly narrow the session list and analytics views.
- Add in-app resync so you can refresh data without restarting AgentsView.
- Support theme control via
postMessagewhen embedding AgentsView in an iframe.
Improvements
- Condense watcher warnings to reduce noisy sync notifications.
- Add a polling fallback for unwatchable directories to keep sync running reliably.
Bug fixes
- Fix an app freeze when search returns no results.
- Fix Gemini project detection so sessions map to the correct project.
0.5.0
2026-02-25New features
- Add Copilot CLI session support so Copilot CLI conversations appear in AgentsView.
- Add OpenCode session history support so OpenCode conversations can be synced and viewed.
- Show a copyable Session ID in the session detail header for quicker sharing and lookup.
Improvements
- Improve session source classification and sync coverage for newly supported tools.
- Follow symlinks during project discovery so linked workspaces are detected correctly.
- Improve interrupted-run recovery so valid sync results are preserved more reliably.
0.4.1
2026-02-24Improvements
- Speed up sync to reduce startup and refresh time.
- Improve startup logging to make initialization progress clearer.
Bug fixes
- Fix insights generation/store behavior to improve stability and accuracy.
- Restore
CLAUDE_NO_SOUND=1for Claude subprocesses to keep background runs silent.
0.4.0
2026-02-24New features
- Add AI-powered Insights with multi-agent generation for session analysis.
- Introduce an Insights page to view and manage generated insights.
- Add structured tool-call metadata for clearer, richer tool output display.
Improvements
- Normalize worktree project names so sessions stay grouped consistently across worktrees.
- Improve message and tool block presentation for better readability.
Bug fixes
- Fix insight generation authentication failures.
- Skip oversized JSONL lines during ingest so one bad line no longer fails the whole session.
- Embed the IANA timezone database to improve timezone support on Windows.
0.3.2
2026-02-23New features
- Add session continuity via
sessionIdchaining, so resumed conversations stay linked as one ongoing session across sync/import.
Improvements
- Improve sidebar session list and item behavior to better represent continued sessions.
- Make session list state updates and virtualization smoother for larger histories.
Bug fixes
- Fix cases where continued conversation segments appear as separate sessions instead of a single chain.
- Fix Claude parsing/sync edge cases so session links persist reliably.
0.3.1
2026-02-22Bug fixes
- Keep exported and gist HTML styling in sync with current app design tokens for consistent visuals.
0.3.0
2026-02-22New features
- Add an Activity Timeline in Analytics to visualize session activity over time.
Improvements
- Improve the message viewer with clearer rendering for code blocks, tool calls, and thinking content.
- Refine the analytics experience for easier session exploration and readability.
- Improve sync performance to load and refresh data faster.
- Update project dependencies to improve compatibility and stability.
- Standardize session count formatting with explicit
en-USlocale handling for consistent display.
0.2.2
2026-02-22Improvements
- Reduce Hour-of-Week heatmap cell size by 20% for a denser, easier-to-scan analytics view.
Bug fixes
- Fix available-port probing to bind the correct host, improving startup reliability.
- Ensure builds compile without frontend assets by providing
go:embedstubs.
0.2.1
2026-02-21Improvements
- Improve Codex output parsing so edge cases are handled more reliably.
Bug fixes
- Make installer exit on
SHA256SUMSdownload failures to prevent incomplete or unverified installs.
0.2.0
2026-02-21New features
- Render Codex function calls as informative tool blocks in session views and exports.
Improvements
- Make the activity calendar full-width and centered for a cleaner analytics layout.
- Increase heatmap cell size (about 20%) to improve readability.
- Combine day and hour activity charts into a more streamlined analytics view.
- Default analytics to a 1-year date range instead of 30 days.
- Match gist/export styling with the app’s visual theme for consistent output.
- Filter out system-injected user messages from the message list display.
0.1.0
2026-02-21New features
- Launch AgentsView with an integrated Go backend and Svelte frontend.
- Add analytics as the home screen with a persistent sidebar.
- Add rich dashboard views, including summary cards, activity timeline, project breakdown, top sessions, and session shape metrics.
- Add hour-of-week heatmap analytics with timezone display and interactive filtering.
- Add tool-aware analytics, including tool usage, thinking/tool counts, velocity metrics, and agent comparison.
- Add analytics permalinks, drill-down navigation, transitions, and CSV export.
- Add Gemini CLI session ingestion.
- Add tool-call ingestion and parsing (including Codex function calls) for deeper analytics.
- Add self-update support and cross-platform install scripts.
- Add frontend/backend version tracking with mismatch detection.
Improvements
- Improve dashboard usability with centralized active filter badges, project filtering, top sessions, and layout updates.
- Improve session pane performance and virtualized list stability for deep scrolling.
- Load sessions and selected session messages fully by default for smoother browsing.
- Improve search UX by scrolling to and highlighting the matched message.
- Keep sessions newest-first while showing messages in chronological order.
- Refresh branding with the AgentsView name, periscope logo, and favicon.
- Update assistant message colors to a warmer, higher-contrast palette.
Bug fixes
- Fix analytics drill-down behavior so heatmap and project clicks filter and navigate correctly.
- Fix
prune --max-messagesso it counts user messages correctly. - Fix Claude parsing to skip system-injected user messages.
- Fix chart panels so they stay within dashboard grid bounds.
- Fix route and query handling to reject invalid routes and empty filters.
- Fix concurrent load/search race conditions to keep results consistent.
- Harden markdown sanitization to prevent XSS and preserve escaped content.
- Fix theme persistence when browser
localStorageis unavailable. - Fix session-loading edge cases, including short session IDs and empty Gemini directories.
- Fix Darwin release builds by targeting the macOS 15 runner.