Metadata-Version: 2.4
Name: aci-spec
Version: 1.0.0
Summary: Agent Capability Interface — open standard for AI agent capability discovery and interoperability
License-Expression: MIT
Project-URL: Homepage, https://github.com/narko4u/agent-interaction-specs
Project-URL: Repository, https://github.com/narko4u/agent-interaction-specs
Keywords: ai,agents,standards,capabilities,interoperability
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# ACI Spec — Agent Capability Interface

An open standard for AI agent capability discovery and interoperability.

## Installation

```bash
pip install aci-spec
```

## Usage

```python
from aci import SpecValidator, MANIFEST_SCHEMA

manifest = {
    "agent_name": "research-agent-v1",
    "version": "1.0.0",
    "capabilities": ["web_search", "code_execution"],
    "constraints": {"max_tokens": 32000}
}

validator = SpecValidator()
result = validator.validate_manifest(manifest)
print(result)
```

## License

MIT
