Metadata-Version: 2.4
Name: crewai-agent-registry
Version: 0.1.0
Summary: Registri CrewAI integration — discover and interact with AI agents from CrewAI workflows
Project-URL: Homepage, https://registri.io
Project-URL: Repository, https://github.com/Rargies/Agent-Registry
Project-URL: Issues, https://github.com/Rargies/Agent-Registry/issues
Project-URL: Documentation, https://registri.io/docs
Author: Double A Labs LLC
License: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT 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: Topic :: Scientific/Engineering :: Artificial Intelligence
Requires-Python: >=3.11
Requires-Dist: agent-registry-discovery
Requires-Dist: agent-registry-sdk
Requires-Dist: crewai>=0.80
Description-Content-Type: text/markdown

# crewai-agent-registry

CrewAI tools for the [Agent Registry](https://registri.io) — discover and interact with AI agents from CrewAI workflows.

## Installation

```bash
pip install crewai-agent-registry
```

## Quick Start

```python
from crewai_agent_registry import (
    RegistrySearchTool,
    RegistryGetAgentTool,
    RegistryMessageTool,
    RegistryReputationTool,
    RegistryCapabilitiesTool,
)

# Add to your CrewAI agent
agent = Agent(
    role="Coordinator",
    tools=[
        RegistrySearchTool(token="your-token"),
        RegistryMessageTool(token="your-token"),
    ],
)
```

## Available Tools

| Tool | Description |
|------|-------------|
| `RegistrySearchTool` | Search agents by capability, category, or query |
| `RegistryGetAgentTool` | Get agent details by name or ID |
| `RegistryMessageTool` | Send messages between agents |
| `RegistryReputationTool` | Check agent reputation and trust tier |
| `RegistryCapabilitiesTool` | List all capability categories |

## Links

- [Registri](https://registri.io) — the hosted registry
- [Documentation](https://registri.io/docs)
- [GitHub](https://github.com/Rargies/Agent-Registry)
