Metadata-Version: 2.4
Name: zenus-tui
Version: 0.6.3
Summary: Zenus - Text-based User Interface
License: MIT
Author: Zenus Team
Requires-Python: >=3.10,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: anthropic (>=0.47.0,<0.48.0)
Requires-Dist: openai (>=1.0.0,<2.0.0)
Requires-Dist: rich (>=13.7.0,<14.0.0)
Requires-Dist: textual (>=0.47.0,<0.48.0)
Requires-Dist: zenus-core (>=0.6.3,<0.7.0)
Description-Content-Type: text/markdown

# Zenus TUI

Text-based User Interface for Zenus using Textual framework.

## Features

- **Real-time Dashboard** - Live execution monitoring
- **Command History** - Browse past executions
- **Pattern Suggestions** - Visual pattern detection
- **Memory Explorer** - View sessions and patterns
- **Explainability** - Understand Zenus decisions
- **Keyboard Navigation** - F1-F4 to switch views

## Installation

```bash
cd packages/tui
poetry install
```

## Usage

```bash
zenus-tui
```

Or from Python:

```python
from zenus_tui.dashboard import main
main()
```

## Keyboard Shortcuts

- **F1** - Execution view
- **F2** - History view
- **F3** - Memory view
- **F4** - Explain view
- **Q** - Quit
- **Ctrl+C** - Quit

