Project Telescope: Local Observability to See What Your AI Agents Are Actually Doing
Telescope is a local-first observability tool for AI Agents and MCPs, giving teams clear visibility into what agents did, why they did it, and where they got stuck.
AI agents have become a part of our daily workflows. They refactor code, orchestrate sub-agents, call tools, read and write files, and burn through tokens โ all while you're sipping your coffee. But here's the problem: its hard to see what they're actually doing.
Until now.
Project Telescope is a local-first observability tool for AI agents. Think of it as DevTools for your AI pair programmer โ a live, structured view of everything happening beneath the surface of tools like GitHub Copilot, Claude, and any MCP-compatible agent.
๐ฐ The Problem
| Challenge | What's Happening | |
|---|---|---|
| ๐ฎ | Black Box Agents | AI agents work in isolation. You can't see what they're doing, what tools they call, or why they make decisions. |
| ๐คท | No Unified View | Multiple agents, multiple logs, multiple formats. No single place to understand the full picture. |
| ๐ | Hard to Debug | When things go wrong, tracing the issue across agent sessions, MCP calls, and tool responses is painful. |
When you run a traditional CI pipeline, you get logs. When your web app throws an error, you get a stack trace. But when your AI agent decides to spawn three sub-agents, rewrite a config file, and make a network request โ what do you get? A chat message that says "Done."
That gap between what agents do and what developers see is growing fast. As agents become more autonomous the need for transparency grows with them.
โจ The Solution
Telescope captures, structures, and surfaces what your AI agents do โ tool calls, decisions, conversations, and reasoning โ in one beautiful dashboard and CLI.
Copilot CLI Claude CLI OpenClaw Any Agent
| | | |
+--------------+------------+-----------+
|
v
Collect --> Local Store --> Visualize
No cloud accounts. No API keys. No config files. Everything runs on your machine, and everything stays on your machine.

๐ง How It Works
Telescope has three layers:
-
Collectors (open-source) โ shared libraries that watch AI agents and emit structured events. They hook into agent activity via stdin/stdout interception, JSONL log scanning, SDK hooks, and MCP proxy interception.
-
The Service (installed locally) โ ingests collector events, stores them in local SQLite databases, and surfaces insights through a CLI and desktop dashboard.
-
CLI & Dashboard โ a powerful command-line interface (
tele) and a desktop dashboard for exploring sessions, watching live events, and drilling into agent behavior.
The architecture is deliberately flat: every collector, whether built-in or community-authored, uses the exact same C-ABI interface. A collector you write has identical capabilities to one that ships in the box.
Agent (Copilot, Claude, your agent, etc.)
|
v
Collector <-- open-source, extensible
|
v
Telescope Service <-- local, no network egress
|
+-----+-----+
v v
Dashboard CLI
๐ Key Features
- ๐ Timeline view of all agent activity
- ๐ Execution graph showing tool call relationships
- ๐ Chat turn grouping (user โ agent โ response)
- ๐งน Automatic noise and duplicate filtering
- ๐ Tool start/complete event merging
- ๐ท๏ธ Agent-specific parsing (Copilot, Claude, etc.)
- ๐ Full event data in detail pane
๐ What You See
| Category | Details | |
|---|---|---|
| ๐ฌ | Conversations | Every user message and agent response, with full context and reasoning. |
| ๐ ๏ธ | Tool Calls | Which tools were called, with what arguments, and what they returned. |
| ๐ฏ | Decisions | Agent intents, reasoning, and choices. |
| โก | Performance | Tool durations, session lengths, and execution patterns. |
This isn't just logging. It's a structured, queryable record of agent behavior that lets you debug failures, audit decisions, spot patterns, and understand where agents get stuck.


โก Quick Start
1๏ธโฃ Install
Windows
Download the MSI from the releases page
msiexec /i telescope-windows-x64.msi /quiet
This downloads and runs the MSI installer, which sets up the background service, dashboard, tele CLI, and all built-in collectors.
macOS & Linux โ coming next week! Stay tuned for installation instructions.
2๏ธโฃ Verify it's running
tele doctor
3๏ธโฃ See what your agents are up to
tele watch # Live stream of agent activity
tele sessions # Browse recent sessions
tele insights # Surface patterns and anomalies
tele dashboard # Launches the dashboard
4๏ธโฃ (Optional) Build a custom collector
git clone https://github.com/microsoft/project-telescope.git
cd project-telescope/examples
cargo build --release
tele collector install ./target/release/
tele collector enable my-custom-collector
That's it. Your collector is now feeding events into the same pipeline as the built-in ones.
What's Next
Project Telescope is available now on Windows, with macOS and Linux support coming next week. The collector plugin system is open-source under the MIT license.
If you've ever stared at an AI agent's output and wonderedย how it got there, give Telescope a look. Your agents are doing more than you think. Now you can finally see it.
๐ญ See Everything. Debug Agents. Trust Your Agents.
Project Telescope is open-source preview project at github.com/microsoft/project-telescope. The collector SDK is MIT-licensed. The service, dashboard, and CLI are distributed as closed-source binaries under MIT license terms.
Built by Cassie Breviu and Daniel Pagan