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

Qwen3.6:27b + Custom Go Agent: A Local Alternative to Claude Code
A developer tests Qwen3.6:27b at Q8 on an RTX 6000 (96GB), claims it matches Claude Code for daily coding, and open-sources a minimal Go agent with no plugins or MCP.

Open-source Specialist Dispatch adapter delegates complex tasks to Claude Code
expert-dispatch is a ~500-line bash script that lets a cheap AI assistant delegate complex coding tasks to Claude Code CLI. It uses commands like dispatch-cc run to send tasks and maintains per-project directories with CLAUDE.md for persistent context.

Atlarix v5.1 adds cloud tiers while maintaining local AI coding support
Atlarix v5.1.0 introduces Compass cloud tiers for immediate use while maintaining full Ollama and LM Studio support. The IDE uses a persistent SQLite graph called Blueprint to provide precise context to local models.

Demo for AI Agent Micropayments Using x402 and Solana
The x402-hello demo illustrates AI agents autonomously handling micropayments using USDC on the Solana blockchain.