Argus: Open-Source VS Code Extension for Real-Time Claude Code Observability

Running Claude Code in the terminal feels like a black box — you don't see what the agent is doing until it finishes (or gets stuck in an infinite loop). To solve this, someone built Argus, an open-source (MIT) VS Code extension that provides real-time observability into Claude Code sessions.
Key Features
- Real-Time Timeline: Streams the JSONL transcript as it's generated, showing each agent step (Bash, Read, Write, WebFetch) with no delay.
- Dependency Graph: Automatically maps which files the agent touches and how they connect — useful for understanding impact on the codebase.
- Cost & Loop Detection: Identifies duplicate reads and retry loops that burn tokens. The author reports catching several such inefficiencies already.
The extension is lightweight and works entirely inside VS Code — no external dashboard or service needed. Source is available on GitHub under the MIT license.
Who It's For
Developers who use Claude Code in their terminal and want to avoid surprise token costs or wasted time on stuck agent loops.
📖 Read the full source: r/ClaudeAI
👀 See Also

YantrikClaw Fork Adds Cognitive Memory, Companion Mode, and Tier-Aware Tools to ZeroClaw
YantrikClaw is a fork of ZeroClaw that introduces three major features: Cognitive Memory with YantrikDB for persistent semantic recall, Companion Mode with bond tracking and proactive behavior, and tier-aware tool selection that adapts to model size from Raspberry Pi to large clusters.

GPT-5.5 Codex vs Claude Opus 4.7: Real-world coding agent benchmarks
A developer pitted GPT-5.5 Codex against Claude Opus 4.7 on two real tasks: a PR triage bot and a real-time code review UI. Claude shipped cleaner with zero errors; Codex was 18% cheaper but needed a patch pass.

Using MCP Code Mode for Efficient Claude Keyword Research
A developer built an MCP server that enables Claude to perform autonomous keyword research using a Code Mode pattern, reducing tool definition tokens from thousands to ~1,000 with just two tools: search and execute.

RouteLLM Setup for Cost-Effective AI Task Routing
A Reddit user shares a Docker Compose configuration that combines Ollama's local Qwen3.5:4b model with GitHub Copilot via OpenWire, using RouteLLM to route complex tasks to GPT-4o while handling simpler tasks locally.