Metadata-Version: 2.4
Name: voidx
Version: 1.0.1
Summary: A coding agent that quantifies everything and solves with tools, not fuzzy prompts.
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: langgraph>=0.3.0
Requires-Dist: langchain>=0.3.0
Requires-Dist: langchain-anthropic>=0.3.0
Requires-Dist: langchain-openai>=0.3.0
Requires-Dist: pydantic>=2.10.0
Requires-Dist: pydantic-settings>=2.7.0
Requires-Dist: typer>=0.15.0
Requires-Dist: rich>=13.9.0
Requires-Dist: tiktoken>=0.8.0
Requires-Dist: httpx>=0.28.0
Requires-Dist: websockets>=16.0
Provides-Extra: dev
Requires-Dist: build>=1.2.0; extra == "dev"
Requires-Dist: pytest>=8.0.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.25.0; extra == "dev"

# voidx

voidx is a terminal AI coding agent built in Python.

## Install

Python users can install the canonical package from PyPI:

```bash
pip install voidx
voidx
```

Node users can install the npm launcher. The launcher requires Python 3.11+
on the machine and installs the matching Python package into an isolated
user-local virtual environment on first run:

```bash
npm install -g @chikhamx/voidx
voidx
```

## Useful Commands

```bash
voidx version
voidx sessions
voidx -w /path/to/project
```

## Development

```bash
.venv/bin/python -m pytest
.venv/bin/python scripts/package.py --format all --clean
npm --prefix npm run check
```
