Rewind
Time-travel debugging for AI agents — an OTel-in / replay-out engine
Rewind an agent to any span, change a prompt, and re-run live from there — branching a new timeline you can diff against the original. Consumes standard OpenTelemetry / OpenInference traces. No cloud, no API keys, no persistent production proxy, no data leaving the machine.
What it does
A developer running an agent on qwen3:32b via Ollama captures a run with any
OpenInference/OTel instrumentor, rewinds to span 4, edits the system prompt,
branches the execution forward live against the same local model, and sees a
side-by-side diff of what changed — all offline, in under a minute of setup.
Architecture (the key insight)
Capture = PASSIVE -> an OTel span only exists *after* a call completes.
OpenTelemetry + OpenInference solve this. We ingest.
Replay = ACTIVE -> to rewind we *inject* the cached response during a
re-run. That is runtime patching, not observability.
So Rewind does not need its own capture proxy. It needs:
- A local OTLP receiver that stores traces into SQLite (production path, zero agent-side lock-in).
- A decorator-first workbench that invokes registered agents with typed
inputs and a
RewindContextonly during a debug session. - An opt-in replay-time LLM-client wrapper (
rewind.replay()) — only active during a debug session, never in production.
Status
| Phase | What | Status |
|---|---|---|
| P0 | Foundation + OTel-shaped data model | ✅ Done (docs/phases/phase-0.md) |
| P1 | OTLP ingestion + receiver + storage | ✅ Done (docs/phases/phase-1.md) |
| P2 | Read-only timeline UI | ✅ Done (docs/phases/phase-2.md) |
| P3 | Replay engine + interceptor (the moat) | ✅ Done (docs/phases/phase-3.md) |
| P4 | State checkpointing | ✅ Done (docs/phases/phase-4.md) |
| P5 | Branching & diff UI | ✅ Done (docs/phases/phase-5.md) |
| P5.5 | Batch parallel eval harness | ✅ Done (docs/phases/phase-5.5.md) |
| P6 | Per-framework replay adapters | ✅ Done (docs/phases/phase-6.md) |
| P7 | Local-model enrichment | ✅ Done (docs/phases/phase-7.md) |
| P8 | Polish, packaging, distribution | ✅ Done (docs/phases/phase-8.md) |
| P9 | Interactive step-through debugging | ✅ Done (docs/phases/phase-9.md) |
Quick start
pip install rewind-debugger
# The wheel includes the built timeline UI; no separate frontend build is needed.
rewind serve --port 4318 --db ./rewind.db
# Point your OTel/OpenInference-instrumented agent at:
# OTEL_EXPORTER_OTLP_ENDPOINT=http://127.0.0.1:4318
# Run a trace, then inspect it in the browser:
rewind ui --port 8484 --db ./rewind.db
# → http://127.0.0.1:8484/ui
Decorator-first agents
The current workbench entry point is a Rewind object with typed agent inputs:
from rewind import RewindContext, rewind
@rewind.agent(description="Answer a question")
async def answer(question: str, context: RewindContext | None = None) -> str:
return question
Run rewind dev app:rewind to expose the agent list and interactive
sessions at the local UI. Direct calls to answer(...) remain ordinary
pass-through calls; RewindContext is injected only for workbench runs.
For a custom title or separate registry, use:
from rewind import Rewind, RewindContext
rewind = Rewind(title="Research")
Existing names such as debugger remain supported.
During a workbench run, Rewind auto-activates interception for the frameworks below — no manual model wrapping required:
- OpenAI — official OpenAI Python SDK Chat Completions calls
(
chat.completions.create, sync and async), including when the SDK is configured for an OpenAI-compatible endpoint. - LangGraph / langchain — every
BaseChatModel/BaseToolinvoke/ainvoke(whichbind_toolsbindings and ToolNode calls route through), so graphs that construct models inside their nodes are stepped, replayed, and captured unchanged. This includes graphs built with deepagents, LangGraph's prebuiltcreate_react_agent, and similar frameworks on top oflangchain-core.
Other framework replay adapters (CrewAI, PydanticAI, ADK, SmolAgents)
remain explicit: use the factories in
docs/replay-adapters.md when needed. Generic
decorator auto-activation for those frameworks is currently unavailable, and
the workbench reports the actionable adapter/wrapper instead of claiming the
framework is installed.
Run any LangGraph app
A foreign LangGraph project needs no Rewind-specific code. Install
rewind-debugger[langgraph] alongside the app, then point the CLI at the
exported graph:
pip install rewind-debugger[langgraph] # or: pip install -e /path/to/rewind[langgraph]
rewind app:main # ≡ rewind dev app:main
app:main may be a rewind.Rewind registry, a compiled LangGraph graph /
langchain runnable (wrapped into a one-agent registry automatically), or a
plain callable. The workbench opens in your browser
(--no-open to suppress) with the graph registered as an interactive agent:
start it from the form, and every LLM and tool call pauses in the
step-by-step debugger.
Replay a recorded trace
# Read-only inspection (prints cursor + branch info):
rewind replay <trace_id> --mode frozen --db ./rewind.db
# Branch from span index 4 and go live from there:
rewind replay <trace_id> --branch-at 4 --mode branch --db ./rewind.db
From Python (the load-bearing integration point)
from rewind.replay import replay
from rewind.storage import TraceStore
store = TraceStore("~/.rewind/db.sqlite")
# Frozen replay — zero outbound calls, deterministic:
with replay(store, trace_id="<trace>", mode="frozen"):
agent.run() # every LLM call served from the recorded spans
# Branch from span 4, then go live:
with replay(store, trace_id="<trace>", branch_at=4, mode="branch"):
agent.run() # spans 0-3 from recording, span 4+ calls your live model
Wrap a framework model (Phase 6 adapters)
One import + one wrapper call per agent — no upstream framework changes:
# Google ADK
from rewind.adapters.adk import replay_llm
agent = Agent(model=replay_llm(real_adk_llm))
# CrewAI
from rewind.adapters.crewai import replay_llm
crew.llm = replay_llm(real_crewai_llm)
# PydanticAI
from rewind.adapters.pydantic_ai import replay_model
agent = Agent(model=replay_model(real_model))
# HuggingFace SmolAgents
from rewind.adapters.smolagents import replay_model
agent.model = replay_model(real_smol_model)
# LangGraph (Phase 3 — adapter pattern origin)
from rewind.adapters.langgraph import replay_chat_model
graph.compiled = replay_chat_model(real_chat_model)
Install the optional extras as needed:
pip install rewind-debugger[adk] # one framework
pip install rewind-debugger[adk,pydantic-ai] # several Rewind-managed frameworks
pip install crewai # CrewAI adapter dependency
pip install rewind-debugger[adapters] # all four
Without an extra installed, the corresponding factory raises
rewind.adapters.<fw>.AdapterError with an actionable install hint at call
time. rewind --version and import rewind.adapters.<fw> both succeed
without any framework installed.
Eval a replay candidate against a baseline (Phase 5.5)
rewind eval suite.yaml --db ./rewind.db --suite-name my-suite
# exit 0 = PASS, 1 = FAIL, 2 = ERROR/validation
Run the live decorator-first workbench
The verified local demo uses the decorator-first registry and a seeded
OpenAI-compatible Gemma/Unsloth endpoint. Start the backend with
examples/start_deep_research_stepping.py,
run Vite on port 5174, and open the workbench on port 8484. The complete
commands and acceptance walkthrough are in
docs/interactive-workbench-testing.md.
The current walkthrough verifies fresh sessions, automatic PROCEED
advancement, substantive-call pauses after the final response, separate
thinking, token/cost/latency/context panels, checkpoints, saved-step
navigation, no-call rewind/forward, continue-from-checkpoint, and the
available edit, variant, assertion, review, and regression flows. It does not
claim that every planned recording or framework-integration feature is
implemented or demonstrated.
The older register_runner/POST /api/v1/sessions surface remains available
as an advanced escape hatch for custom runners and explicit framework wiring;
it is not the primary decorator-first usage path.
Development
# from rewind/
python -m venv .venv && source .venv/bin/activate
pip install -e ".[dev]"
# full quality gate (run before commit)
ruff check src/rewind tests
pylint src/rewind/
mypy --strict src/rewind
python -m pytest tests --no-cov -q
# per-phase security scan (ruff S-rules + bandit, deepsec if available)
python scripts/security_scan.py --phase <N>
# frontend dev server (Vite 6 — must run from web/; --host avoids IPv6 trap)
cd web && pnpm dev # or: node_modules/.bin/vite --host 127.0.0.1
Latest verified full suite: 527 passed, 13 skipped, 49 deselected, and 3
warnings. Frontend TypeScript typecheck and production build passed, and
git diff --check passed. See
docs/interactive-workbench-testing.md
for the live workbench checks.
Layout
rewind/
src/rewind/ Python package
adapters/ Phase 6 — per-framework replay wrappers (adk, crewai,
pydantic_ai, smolagents, langgraph) + shared _common.py
receiver.py OTLP/HTTP ingest (Phase 1)
replay.py Frozen / branch / full replay engine (Phase 3)
checkpoint.py State snapshot/restore (Phase 4)
diff.py Trace diff (Phase 5)
eval_api.py Suite runner + baseline diff (Phase 5.5)
cli.py Click-based CLI: serve / ui / replay / eval / version
tests/ pytest suites (latest full suite: 527 passed)
web/ React + Vite + TypeScript timeline UI (P2)
docs/
phases/ Per-phase: QA, security, dev-handoff, design
diagrams/ Architecture + sequence (.mmd) for each phase
scripts/
dev_seed_serve.py Local dev harness
security_scan.py ruff S + bandit per-phase vulnerability scan
.deepsec/ Vulnerability scan reports (when deepsec available)
pyproject.toml Strict ruff + pylint + mypy config; optional extras
See docs/README.md for a navigable index of all phase docs and diagrams.
For wheel builds, installation requirements, and release publishing, see
docs/packaging-release.md.
Out of scope (v1)
- A bespoke capture proxy / capture decorator SDK (OTel + OpenInference solve this; Phase 6 adds a thin adapter factory for replay, not capture).
- Cloud / multi-user / team / sync (a trace is a local SQLite file).
- MCP security sandbox, model routing, mobile/remote access.
See plan.md (parent dir) for the full phased plan.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rewind_debugger-0.1.2.tar.gz.
File metadata
- Download URL: rewind_debugger-0.1.2.tar.gz
- Upload date:
- Size: 2.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
538ed4f2bc49066af922931345e1fa824ef4fa960af7cc8e51ab6d8f68ae4617
|
|
| MD5 |
ac075394084722622b7c7224219478b5
|
|
| BLAKE2b-256 |
e2c3d3414edb94f420939998270631874a67cf1848a17c620092f106bc53b523
|
Provenance
The following attestation bundles were made for rewind_debugger-0.1.2.tar.gz:
Publisher:
release.yml on akshay-mp/Rewind
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rewind_debugger-0.1.2.tar.gz -
Subject digest:
538ed4f2bc49066af922931345e1fa824ef4fa960af7cc8e51ab6d8f68ae4617 - Sigstore transparency entry: 2498538898
- Sigstore integration time:
-
Permalink:
akshay-mp/Rewind@cd5849cf3f1bdc711469d0445a8bdeaea472041d -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/akshay-mp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@cd5849cf3f1bdc711469d0445a8bdeaea472041d -
Trigger Event:
push
-
Statement type:
File details
Details for the file rewind_debugger-0.1.2-py3-none-any.whl.
File metadata
- Download URL: rewind_debugger-0.1.2-py3-none-any.whl
- Upload date:
- Size: 931.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3b44eb4f672580682f438eaa6469d6c062c534ecb88801e8fc8c571726945a72
|
|
| MD5 |
c7123aca3a8ff566b9f181b026f5437d
|
|
| BLAKE2b-256 |
94da00243f0e9a08f2334ac3a4d7121fcaccbf5406b52119864336859450be03
|
Provenance
The following attestation bundles were made for rewind_debugger-0.1.2-py3-none-any.whl:
Publisher:
release.yml on akshay-mp/Rewind
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
rewind_debugger-0.1.2-py3-none-any.whl -
Subject digest:
3b44eb4f672580682f438eaa6469d6c062c534ecb88801e8fc8c571726945a72 - Sigstore transparency entry: 2498538903
- Sigstore integration time:
-
Permalink:
akshay-mp/Rewind@cd5849cf3f1bdc711469d0445a8bdeaea472041d -
Branch / Tag:
refs/tags/v0.1.2 - Owner: https://github.com/akshay-mp
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@cd5849cf3f1bdc711469d0445a8bdeaea472041d -
Trigger Event:
push
-
Statement type: