https://github.com/papercomputeco/tapes
Transparent telemetry collector for agents
https://github.com/papercomputeco/tapes
agentops ai otel telemtry
Last synced: 5 days ago
JSON representation
Transparent telemetry collector for agents
- Host: GitHub
- URL: https://github.com/papercomputeco/tapes
- Owner: papercomputeco
- License: agpl-3.0
- Created: 2026-01-16T22:13:08.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2026-03-03T00:20:58.000Z (9 days ago)
- Last Synced: 2026-03-03T00:38:42.826Z (9 days ago)
- Topics: agentops, ai, otel, telemtry
- Language: Go
- Homepage: https://tapes.dev
- Size: 5.19 MB
- Stars: 174
- Watchers: 1
- Forks: 13
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Agents: AGENTS.md
Awesome Lists containing this project
- awesome-repositories - papercomputeco/tapes - Transparent telemetry collector for agents (Go)
README
tapes
Transparent agentic telemetry and instrumentation for content-addressable LLM interactions.
About
·
Download
·
Documentation
·
Contributing
`tapes` is an Agentic telemetry system for content-addressable LLM interactions.
It provides durable storage of agent sessions, plug-and-play OpenTelemetry instrumentation,
and deterministic replay of past agent messages.
---
# 📼 Quickstart
Install `tapes`:
```bash
curl -fsSL https://download.tapes.dev/install | bash
```
Run Ollama and the `tapes` services. By default, `tapes` targets embeddings on Ollama
with the `embeddinggema:latest` model - pull this model with `ollama pull embeddinggema`:
```bash
ollama serve
```
```bash
tapes serve
```
Start a chat session:
```bash
tapes chat --model gemma3
```
Search conversation turns:
```bash
tapes search "What's the weather like in New York?"
```
Checkout a previous conversation state for context check-pointing and retry:
```bash
tapes checkout abc123xyz987
tapes chat
```