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

Chrome Extension Bridges Google Messages to Claude Code via MCP
A developer built a Chrome extension that connects Google Messages Web to Claude Code using MCP with stdio and WebSocket transport. The extension lists chats, reads messages, and drafts replies but currently can't send messages due to Angular's zone.js isolation.

yburn: Tool to audit and replace unnecessary AI agent cron jobs
yburn is a Python tool that audits AI agent cron jobs and replaces those that don't need LLMs with standalone Python scripts. The creator found 58% of 98 cron jobs were purely mechanical tasks like system health checks and git backups.

Skill Scaffolder: Build OpenClaw Skills Without Writing Code
Skill Scaffolder is an open-source tool that lets users create OpenClaw skills by describing what they want in plain English. It handles the entire process—interviewing users, writing skill files, testing, and installation—without requiring YAML, Python, or config files.

Memora v0.2.25 MCP Server: 5× Faster Writes on D1 Database
Memora v0.2.25, an MCP server for Claude persistent memory, achieves 5× faster writes on Cloudflare D1 with memory_create dropping from 10s+ to ~1.8s and memory_update from 10s+ to ~1.1s per call.