Argus: A VS Code Extension to Debug Claude Code Session Costs and Behavior

Claude Code session costs can spike without obvious reasons—retry loops, repeated file reads, or context filling up before compaction. The JSONL files at ~/.claude/projects/ contain all the data, but raw inspection is painful. A developer built Argus, a VS Code extension that parses those transcripts and lays the session out as a timeline with granular metrics.
Key Features
- Timeline view of every tool call: Read, Write, Edit, and subagent calls.
- Per-step token and USD cost breakdown.
- Cache hit ratio for each step.
- Subagent attribution—see which subagent did what.
- Rule-based flagging for duplicate reads, retry loops, and context pressure.
- Cost breakdown tab and dependency graph of file operations.
- Context window usage visualization.
How It Works
Argus runs entirely locally—no login, no upload. It reads the JSONL files that Claude Code already writes, so no extra setup is needed. The developer built it originally for personal use after noticing unpredictable cost spikes across sessions.
Who It's For
Developers using Claude Code in agent mode who want to understand exactly what their agent did and why costs vary across sessions.
📖 Read the full source: r/ClaudeAI
👀 See Also

ClearSpec: A Spec Generator to Reduce Hallucination in Claude Code
ClearSpec is a tool that generates structured specifications from plain English descriptions, connecting to GitHub repos to reference real file paths and dependencies, then uses those specs as prompts for Claude Code to provide better context.

Claude Code v2.1.76 System Prompt Updates: Security Monitor Refinements and New Hook Event
Claude Code v2.1.76 includes updates to system prompts with 43 new tokens, featuring refinements to the security monitor for autonomous agents and the addition of a PostCompact hook event. Changes include clarified sensitive data detection, expanded code deserialization examples, and improved formatting for irreversible local destruction guidance.

MoltMarket: A Marketplace for Hiring AI Agents to Execute Digital Tasks
MoltMarket is a free platform where users can post jobs for AI agents to complete autonomously. The marketplace currently has 100+ users and verified agents that can handle tasks like web scraping, code generation, and content writing.

LocalSynapse MCP Server Enables Claude to Search Local Documents Offline
LocalSynapse is an MCP server that indexes and searches inside local documents (Word, Excel, PowerPoint, PDF) using hybrid BM25 + AI semantic search. Everything runs locally with no cloud or API keys required.