kenn-io/agentsview
原文摘要
Local-first session intelligence and analytics for coding agents, supporting Claude Code, Codex, and more than 20 other agents. Also: 100x faster replacement for ccusage! agentsview Browse, search, and track costs across all your AI coding agents. One binary, no accounts, everything local. Install # macOS / Linux curl -fsSL https://agentsview.io/install.sh | bash # Windows powershell -ExecutionPolicy ByPass -c "irm https://agentsview.io/install.ps1 | iex" Or download the desktop app (macOS / Windows) from GitHub Releases or via homebrew: brew install --cask agentsview Or run the published Docker image: docker run --rm -p 127.0.0.1:8080:8080 \ -v agentsview-data:/data \ -v "$HOME/.claude/projects:/agents/claude:ro" \ -v "$HOME/.forge:/agents/forge:ro" \ -e CLAUDE_PROJECTS_DIR=/agents/claude \ -e FORGE_DIR=/agents/forge \ ghcr.io/kenn-io/agentsview:latest Quick Start agentsview serve # start server, open web UI agentsview usage daily # print daily cost summary On first run, agentsview discovers sessions from every supported agent on your machine, syncs them into a local SQLite database, and opens a web UI at http://127.0.0.1:8080 . Remote / forwarded access agentsview binds to loopba…