Metadata-Version: 2.4
Name: agent-marketplace
Version: 0.2.0
Summary: Agent capability registry, discovery, and semantic matching
Project-URL: Homepage, https://github.com/aumos-ai/agent-marketplace
Project-URL: Documentation, https://github.com/aumos-ai/agent-marketplace#readme
Project-URL: Repository, https://github.com/aumos-ai/agent-marketplace
Project-URL: Issues, https://github.com/aumos-ai/agent-marketplace/issues
Author: AumOS Contributors
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Typing :: Typed
Requires-Python: >=3.10
Requires-Dist: click>=8.0
Requires-Dist: pydantic>=2.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: rich>=13.0
Provides-Extra: agentcore
Requires-Dist: aumos-agentcore-sdk>=0.1.0; extra == 'agentcore'
Provides-Extra: dev
Requires-Dist: mypy>=1.8; extra == 'dev'
Requires-Dist: pip-audit; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest-cov>=4.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: ruff>=0.3; extra == 'dev'
Description-Content-Type: text/markdown

# agent-marketplace

Agent capability registry, discovery, and semantic matching

[![CI](https://github.com/aumos-ai/agent-marketplace/actions/workflows/ci.yaml/badge.svg)](https://github.com/aumos-ai/agent-marketplace/actions/workflows/ci.yaml)
[![PyPI version](https://img.shields.io/pypi/v/agent-marketplace.svg)](https://pypi.org/project/agent-marketplace/)
[![Python versions](https://img.shields.io/pypi/pyversions/agent-marketplace.svg)](https://pypi.org/project/agent-marketplace/)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE)

Part of the [AumOS](https://github.com/aumos-ai) open-source agent infrastructure portfolio.

---

## Features

- `AgentCapability` Pydantic schema captures category, pricing model, quality metrics (accuracy, latency, throughput), SLA tiers, input/output schemas, and per-capability provider info
- Three registry backends — in-memory, SQLite, and Redis — all implementing the `CapabilityStore` ABC, with namespace support for multi-tenant deployments
- Semantic search and keyword filtering via `DiscoveryClient` with a `Ranker` that scores candidates on quality metrics, trust score, and cost compatibility
- Trust and reputation system with peer reviews, usage history, and a composite `TrustScorer` that aggregates reviewer ratings into a single trust signal
- `MatchingEngine` negotiates capability requests against registered providers, handling partial matches and SLA compatibility checks
- Import adapters for OpenAPI and AsyncAPI specs so existing API documentation can be ingested directly as capability registrations
- REST API server (`server.api`) and health endpoint for embedding the marketplace as a sidecar service in larger agent deployments

## Quick Start

Install from PyPI:

```bash
pip install agent-marketplace
```

Verify the installation:

```bash
agent-marketplace version
```

Basic usage:

```python
import agent_marketplace

# See examples/01_quickstart.py for a working example
```

## Documentation

- [Architecture](docs/architecture.md)
- [Contributing](CONTRIBUTING.md)
- [Changelog](CHANGELOG.md)
- [Examples](examples/README.md)

## Enterprise Upgrade

For production deployments requiring SLA-backed support and advanced
integrations, contact the maintainers or see the commercial extensions documentation.

## Contributing

Contributions are welcome. Please read [CONTRIBUTING.md](CONTRIBUTING.md)
before opening a pull request.

## License

Apache 2.0 — see [LICENSE](LICENSE) for full terms.

---

Part of [AumOS](https://github.com/aumos-ai) — open-source agent infrastructure.
