Metadata-Version: 2.4
Name: zolvix-agent
Version: 0.4.0
Summary: Zolvix local file agent — connects your codebase to Zolvix AI
Author: Zolvix
License: MIT
Project-URL: Homepage, https://zolvix.app
Keywords: zolvix,ai,agent,rag,cli
Classifier: Programming Language :: Python :: 3
Classifier: Environment :: Console
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: websockets>=12.0
Requires-Dist: watchdog>=4.0
Requires-Dist: httpx>=0.27
Requires-Dist: click>=8.1
Requires-Dist: rich>=13.0
Requires-Dist: pydantic>=2.0
Requires-Dist: python-dotenv>=1.0
Requires-Dist: aiofiles>=23.0
Requires-Dist: pathspec>=0.12
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"

# Zolvix Agent

Command-line agent that lets Zolvix AI work with your local files.

## Install

```bash
pip install zolvix-agent
```

## Usage

```bash
# 1. Log in (saves your API key)
zolvix login

# 2. Watch a project folder and connect it to Zolvix
zolvix watch ./src

# 3. Check your status
zolvix status
```

Run `zolvix` with no command to see a quick getting-started guide, or
`zolvix --help` for the full command reference.

`zolvix watch` shows local file-change activity; the server-side change feed is
not implemented yet.

Use `--confirm-writes` to be asked before each file write.

## Security

- The agent only operates inside the folder you point it at (sandboxed).
- `.env`, `*.key`, `*.pem`, `.git/`, `node_modules/`, `dist/`, and `build/` are
  excluded from both reads and writes.
- Every action is recorded in an audit log.

## Requirements

- Python 3.10+
- A Business or Enterprise plan
