AgentLens: Observability Tool for Multi-Agent AI Workflows

AgentLens is an observability tool designed for multi-agent AI workflows that combine local and cloud-based models. It addresses the challenge of tracking activities across different providers like Ollama, vLLM, Anthropic, and OpenAI.
Key Features
- Unified tracing across Ollama, vLLM, Anthropic, OpenAI, and other providers
- Cost tracking that includes local compute time converted to estimated cost
- MCP server for querying statistics from inside Claude Code
- CLI interface for quick inline checks with commands like
agentlens q stats - Self-hosted - runs on your machine with data staying local
Deployment and Usage
Deploy using Docker:
docker run -d -p 3100:3100 phoenixaihub/agentlens-collector
Wrap Ollama calls with one line of code:
const { client } = wrapOllama(ollama, { client: lens });
The dashboard displays agent flow, cost breakdowns, and latency by provider.
This tool is particularly useful for developers running mixed AI workflows where some tasks use local models (like Ollama) while others require cloud-based models (like Claude or GPT) for complex reasoning.
📖 Read the full source: r/LocalLLaMA
👀 See Also

InsForge: Self-Hosted Postgres Backend with MCP Integration for AI Coding Agents
InsForge is an open-source, self-hosted backend alternative to Supabase that connects to Claude Code via MCP, allowing AI agents to see schema, policies, and service state. It includes PostgreSQL 16.4, PostgREST, Deno Runtime, auth, storage, and edge functions.

Skir: A Modern Alternative to Protocol Buffers for Type-Safe Data Exchange
Skir is a declarative language for defining data types, constants, and APIs that generates idiomatic, type-safe code in TypeScript, Python, Java, C++, Kotlin, and Dart from a single .skir file. It includes built-in schema evolution safety, RPC support similar to gRPC, and serialization to JSON or binary formats.

Rukuzu: Porting a 200,000 Line C++ Graph Database to Rust with Systematic Testing
The Rukuzu project describes a workflow for porting the 200,000-line C++ kuzu embedded graph database to Rust, using a Claude Code custom command to maintain both versions simultaneously and verify correctness through 2,700+ tests.

Knowledge Raven: A Model-Agnostic Knowledge Base Platform Built with Claude Code
Knowledge Raven is a knowledge base platform that lets any MCP-compatible LLM search and cite company documents. The entire platform was built with Claude Code by a solo founder, featuring Python/FastAPI backend, MCP tool layer, and agentic RAG pipeline.