惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
aimingoo的专栏
aimingoo的专栏
Jina AI
Jina AI
Microsoft Security Blog
Microsoft Security Blog
IT之家
IT之家
V
Visual Studio Blog
量子位
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 聂微东
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
大猫的无限游戏
大猫的无限游戏
Y
Y Combinator Blog
Stack Overflow Blog
Stack Overflow Blog
D
Docker
MyScale Blog
MyScale Blog
小众软件
小众软件
云风的 BLOG
云风的 BLOG
美团技术团队
Microsoft Azure Blog
Microsoft Azure Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
Last Week in AI
Last Week in AI
Apple Machine Learning Research
Apple Machine Learning Research
博客园 - 【当耐特】

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
I Added a Live Dashboard to My LLM Proxy. Zero Instrument...
Shouvik Pali · 2026-05-28 · via DEV Community

I built Trooper as a fallback proxy. Claude hits quota → falls back to Ollama. Useful but passive. It sat in the background, invisible, doing its job silently.

Today it became something different.


The Original Problem

When you're building with LLMs, quota hits are inevitable. Claude's free tier is generous until it isn't. A mid-session 429 kills your context, your workflow, your train of thought.

Trooper solved that. Point your app at http://localhost:3000 instead of the Claude API. When Claude fails, Trooper catches it, preserves the full session context via a 3-layer compaction system (Anchor + SITREP + Tail), and continues on local Ollama. Your app never knows anything happened.

That's still there. But it was passive. Useful when things broke. Invisible when they didn't.


The Problem With Passive

Passive infrastructure has an adoption problem. Developers install it, forget about it, and only notice it when something breaks. That's not a product — that's a safety net.

The question I kept asking: what does Trooper do that has daily value, not just failure value?

The answer was sitting in the code the whole time.


What Was Already There

Trooper captures every message in every session. It runs a classifier on each one — extracting intent, entities, open loops, completed steps, recent actions. All rule-based, zero LLM calls, zero latency.

This is what powers the fallback context preservation. When Claude fails and Ollama picks up, Ollama doesn't start blind — it receives a SITREP (Situation Report) that tells it what the session was about, what was completed, what's still pending.

That data exists for every session. It was just never visible to the developer.


The Dashboard

I added a live dashboard at localhost:3000/dashboard.

Point any agent at Trooper — just change your base URL:

export ANTHROPIC_BASE_URL=http://localhost:3000
# or
export OPENAI_BASE_URL=http://localhost:3000

Enter fullscreen mode Exit fullscreen mode

Open the dashboard. Keep it on a second monitor while your agent runs.

From a single message, it already shows:

  • Intent — what your agent is trying to do, extracted automatically
  • Open Loops — what it's stuck on, highlighted in red
  • Completed Steps — what it finished, tracked as it happens
  • Entities — the key things being referenced
  • Session Transcript — every message, colour coded by role

Auto-refreshes every 5 seconds. No page reload needed.


What It Looks Like In Practice

I ran a 3-turn agent session simulating a database debugging workflow:

Turn 1: "I am building a Go API server. The database connection is failing with connection refused errors on port 5432."

Turn 2: "Checked the config. Postgres is running on port 5433 not 5432. Fixing the connection string now."

Turn 3: "Fixed the port. Database connection is working. API server is running successfully."

After Turn 1, the dashboard immediately showed:

  • Intent: "building a go api server. the database connection is failing with connection refused errors on port" (100% confidence)
  • Entities: Postgres, network
  • Open Loops: "fail with connection refused error on port"

After Turn 3:

  • Completed Steps: "successfully fixed the port"
  • Open loops cleared

Zero instrumentation. No SDK. No code changes to the agent. Just a URL change.


Why This Matters

Every observability tool requires you to instrument your code:

  • LangSmith — wrap your agent in LangChain
  • Langfuse — add their SDK
  • AgentOps — add @observe decorators

Trooper requires nothing. Your agent already communicates over HTTP to an LLM. Trooper sits in that path and observes everything automatically.

Helicone was the closest — proxy-based, zero instrumentation. But it went into maintenance mode in March 2026 and was cloud-only. Your data went to their servers.

Trooper is open source, local-first, and free forever. Your data never leaves your machine.


The Sessions Endpoint

Not sure which session to look at? Hit /sessions:

curl http://localhost:3000/sessions
# {"sessions":["agent-debug-123","agent-debug-456"],"count":2}

Enter fullscreen mode Exit fullscreen mode

Click any session in the dashboard home page at localhost:3000/dashboard to open it.


The Recovery Endpoint

Still there. When an agent fails mid-task:

curl http://localhost:3000/recovery/{session_id}

Enter fullscreen mode Exit fullscreen mode

Returns exactly what completed and where to resume. The dashboard makes this visual — completed steps are tracked in real time.


The Pivot

Trooper started as: "Claude failed. Trooper caught it."

Trooper is now: "Your agent communicates over HTTP to an LLM. Trooper can observe it."

The fallback is a feature. Observability is the product.

Your agent was always talking. Now you can hear it.


Get Started

git clone https://github.com/shouvik12/trooper
cd trooper
export CLAUDE_API_KEY=sk-ant-...
go run .

Enter fullscreen mode Exit fullscreen mode

Open http://localhost:3000/dashboard in your browser.

Point your agent at Trooper:

export ANTHROPIC_BASE_URL=http://localhost:3000

Enter fullscreen mode Exit fullscreen mode

That's it. Zero dependencies. Pure Go. Runs in under 60 seconds.

GitHub: github.com/shouvik12/trooper


Tags: llm, agents, observability, ollama, go, opensource