Metadata-Version: 2.4
Name: acp-cli
Version: 0.0.4
Summary: CLI interface for ACP
License: Apache-2.0
Author: ACP Team
Requires-Python: >=3.11,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
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: anyio (>=4.2,<5.0)
Requires-Dist: langchain (>=0.3,<0.4)
Requires-Dist: langchain-anthropic (>=0.3,<0.4)
Requires-Dist: langchain-openai (>=0.3,<0.4)
Requires-Dist: lark (>=1.1,<2.0)
Requires-Dist: pydantic (>=2.5,<3.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Requires-Dist: rich (>=13.7,<14.0)
Requires-Dist: structlog (>=24.1.0,<25.0.0)
Requires-Dist: typer (>=0.12,<1.0)
Project-URL: Homepage, https://github.com/acp-team/acp
Project-URL: Repository, https://github.com/acp-team/acp
Description-Content-Type: text/markdown

# ACP CLI

Command line interface for ACP.

## Installation

```bash
poetry install
```

## Usage

```bash
# Validate a spec
acp validate my-agents.yaml

# Run a workflow
acp run workflow_name --spec my-agents.yaml --input '{"key": "value"}'
```


