Metadata-Version: 2.4
Name: agentci
Version: 0.1.1
Summary: Agent CI command-line interface
Project-URL: Homepage, https://agent-ci.com
Project-URL: Repository, https://github.com/Agent-CI/cli.git
Project-URL: Issues, https://github.com/Agent-CI/cli/issues
Author-email: Agent CI <hello@agent-ci.com>, Travis Dent <root@a10k.co>
License: MIT
License-File: LICENSE
Keywords: agentci,agents,ci,cli,testing
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.11
Requires-Dist: agentci-client-config==0.1.0
Description-Content-Type: text/markdown

# AgentCI CLI

Command-line interface for interacting with AgentCI.

## Installation

```bash
uv pip add agentci
```

## Usage

```bash
agentci <command> [options]
```

### Commands

#### `validate`

Validate all AgentCI evaluation configurations in a directory:

```bash
# Validate configs in current directory
agentci validate

# Validate configs in specific directory
agentci validate /path/to/repository
```

By default, AgentCI looks for configurations in `.agentci/evals/`. You can customize this location using the `AGENTCI_CLIENT_BASE_PATH` environment variable:

```bash
AGENTCI_CLIENT_BASE_PATH="custom/path" agentci validate
```

## License

MIT License - see [LICENSE](LICENSE) for details.

## Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

## Links

- Website: <https://agent-ci.com>
- Issues: <https://github.com/Agent-CI/cli/issues>
