Metadata-Version: 2.3
Name: unwind-labs
Version: 0.2.2
Summary: Outside-in web observer for Claude Code sessions and callstack call trees
License: MIT License
         
         Copyright (c) 2026 unwind-labs
         
         Permission is hereby granted, free of charge, to any person obtaining a copy
         of this software and associated documentation files (the "Software"), to deal
         in the Software without restriction, including without limitation the rights
         to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
         copies of the Software, and to permit persons to whom the Software is
         furnished to do so, subject to the following conditions:
         
         The above copyright notice and this permission notice shall be included in all
         copies or substantial portions of the Software.
         
         THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
         IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
         FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
         AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
         LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
         OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
         SOFTWARE.
Keywords: claude-code,agents,observability,callstack
Author: Amol Kelkar
Requires-Python: >=3.11
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Debuggers
Requires-Dist: fastapi (>=0.115)
Requires-Dist: psutil (>=5.9)
Requires-Dist: pydantic (>=2.7)
Requires-Dist: pyyaml (>=6.0)
Requires-Dist: rich (>=13.7)
Requires-Dist: typer (>=0.12)
Requires-Dist: uvicorn[standard] (>=0.30)
Requires-Dist: watchdog (>=4.0)
Project-URL: Homepage, https://github.com/amolk/agent-callstack
Project-URL: Repository, https://github.com/amolk/agent-callstack
Description-Content-Type: text/markdown

# unwind

A web UI for Claude Code sessions. Run it in any project folder; a browser tab opens showing every Claude Code session that's run there, the conversation for each one, and — when the [callstack](https://github.com/amolk/agent-callstack) plugin's `/call` skill is used — the call hierarchy between sessions.

## Install

```bash
pip install unwind-labs
```

## Use

```bash
cd /path/to/your/claude-project
unwind
```

A browser tab opens at `http://127.0.0.1:<port>/` with that project's sessions. `Ctrl-C` to stop.

`unwind --help` lists flags (custom port, `--all` project picker, `--no-browser`, etc.).

## How it works

unwind never wraps or controls Claude Code. It reads:

- `~/.claude/projects/<slug>/*.jsonl` — Claude Code's own session logs
- `<project>/.claude/callstack/log/` — `/call` invocation reports written by the [callstack](https://github.com/amolk/agent-callstack) plugin

…and renders them in a live-updating web UI. Loopback only (`127.0.0.1`); read-only.

## More

- Architecture and design notes: [dev/PRD.md](dev/PRD.md), [dev/PLAN.md](dev/PLAN.md)
- License: [MIT](LICENSE)

