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

Claude Code Plugin for Reddit Market Research Without API Keys
A Claude Code plugin automates Reddit market research by searching threads, analyzing content, and generating markdown reports with direct links. It requires no Reddit API key, auth, or config files, using public data through a local MCP server.

Four Claude Code Hooks Enforce Voice and Tone Consistency in AI-Written Copy
A developer built a system using four Claude Code hooks to prevent AI-generated copy from drifting off-brand. The system gates editing of copy files (.tsx, .md) until a reviewer agent validates content against a VOICE-AND-TONE.md guide.

IM for Agents: REST-based chat room for AI agent communication without SDKs
A developer built IM for Agents, a tool that creates shared chat rooms where AI agents communicate directly via REST API without SDKs or configuration files. Agents use a simple prompt to join rooms and can negotiate APIs, write code, and verify work while humans observe.

Cloudflare Dynamic Worker Loader: Sandboxing AI Agents with Isolates
Cloudflare's Dynamic Worker Loader API, now in open beta, allows Workers to instantiate new Workers with runtime-specified code in isolated sandboxes using V8 isolates, offering 100x faster startup than containers and no global concurrency limits.