Metadata-Version: 2.4
Name: agentrr-ui
Version: 0.1.0a2
Summary: Visual stepper UI for agentrr record-and-replay
Project-URL: Homepage, https://github.com/ip174/agentrr
Project-URL: Documentation, https://github.com/ip174/agentrr/blob/main/docs/ui.md
Project-URL: Repository, https://github.com/ip174/agentrr
Project-URL: Issues, https://github.com/ip174/agentrr/issues
Project-URL: Changelog, https://github.com/ip174/agentrr/blob/main/CHANGELOG.md
License-Expression: Apache-2.0
Keywords: agents,ai,debugging,replay,ui
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.11
Requires-Dist: agentrr>=0.1.0a2
Requires-Dist: fastapi>=0.115
Requires-Dist: uvicorn[standard]>=0.32
Requires-Dist: websockets>=13.0
Description-Content-Type: text/markdown

# agentrr-ui

Local web UI for [agentrr](https://pypi.org/project/agentrr/) — list saved agent runs, read a plain-language timeline, and step through replay to see if behavior still matches the recording.

```bash
pip install agentrr-ui
export PYTHONPATH=path/to/your/agents   # so replay can import entrypoints
agentrr-ui
```

Open http://127.0.0.1:8765

Full documentation: [docs/ui.md](https://github.com/ip174/agentrr/blob/main/docs/ui.md) in the main repository.

**Security:** replay runs your agent’s real Python entrypoint. Bind to localhost only unless you add TLS and authentication in front (see docs).
