Metadata-Version: 2.4
Name: codex-eta
Version: 0.1.0
Summary: Time estimation for codex tasks. MCP server that tracks steps and predicts completion time.
License-Expression: MIT
Requires-Python: >=3.10
Requires-Dist: mcp
Description-Content-Type: text/markdown

# codex-eta

time estimation for codex tasks. shows how long things will take.

## install

```
pip install codex-eta
codex mcp add eta-monitor -- codex-eta
```

thats it. codex will automatically estimate task time and show progress.

## what happens

when you give codex a task:
1. it reports its plan (how many steps, what it'll do)
2. you get an ETA
3. a live progress bar pops up in a separate terminal
4. progress updates as codex works
5. when done, you see actual time vs estimate

## env vars

- `ETA_NO_WATCHER=1` skip the popup progress window (eta still shows in codex chat)
- `ETA_VERBOSE=1` show more detail on progress updates

## files

- `~/.codex/eta_monitor_log.jsonl` log of predictions vs actuals
- `~/.codex/eta_progress` live progress (read by watcher)

## uninstall

```
codex mcp remove eta-monitor
pip uninstall codex-eta
```
