Metadata-Version: 2.4
Name: runopsy
Version: 0.1.0
Summary: Find where an AI agent run started going wrong, not just where it stopped
Project-URL: Homepage, https://github.com/vahit19/runopsy
Project-URL: Repository, https://github.com/vahit19/runopsy
Project-URL: Issues, https://github.com/vahit19/runopsy/issues
Project-URL: Changelog, https://github.com/vahit19/runopsy/blob/main/CHANGELOG.md
Project-URL: Documentation, https://github.com/vahit19/runopsy/tree/main/docs
Author-email: Vahit Feryad <vahit.feryat@gmail.com>
License-Expression: Apache-2.0
Keywords: agent,debugging,llm,observability,root-cause-analysis,tracing
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Debuggers
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Topic :: System :: Monitoring
Classifier: Typing :: Typed
Requires-Python: >=3.12
Requires-Dist: runopsy-cli==0.1.0
Requires-Dist: runopsy-server==0.1.0
Provides-Extra: all
Requires-Dist: runopsy-inspect==0.1.0; extra == 'all'
Provides-Extra: inspect
Requires-Dist: runopsy-inspect==0.1.0; extra == 'inspect'
Description-Content-Type: text/markdown

# runopsy

**Find where an AI agent run started going wrong — not just where it stopped.**

```bash
uv tool install runopsy        # or: pipx install runopsy
runopsy --help
```

This is the meta-distribution: it installs the CLI, the analysis engine, the collector,
replay, the runtime adapters and the local web view. Everything works offline with no
provider key.

```bash
runopsy record -s "make" -s "pytest"   # wrap any pipeline
runopsy diagnose latest                # where it started going wrong
runopsy ui                             # the timeline and failure map
```

Extras:

```bash
pip install "runopsy[inspect]"   # read Inspect AI eval logs
```

If you are writing code against Runopsy rather than using the CLI, depend on the piece
you need — `runopsy-core` is the framework-agnostic engine and pulls in nothing but
Pydantic.

Full documentation: https://github.com/vahit19/runopsy
