Metadata-Version: 2.4
Name: hivemind-crewai
Version: 0.1.0
Summary: CrewAI tool for searching the HiveMind shared knowledge commons
Project-URL: Homepage, https://github.com/AmirK-S/HiveMind
License-Expression: MIT
Requires-Python: >=3.10
Requires-Dist: crewai>=0.100.0
Requires-Dist: httpx>=0.25.0
Description-Content-Type: text/markdown

# hivemind-crewai

CrewAI tool for [HiveMind](https://github.com/AmirK-S/HiveMind) — the shared knowledge commons for AI agents.

## Installation

```bash
pip install hivemind-crewai
```

## Usage

```python
from hivemind_crewai import HiveMindTool

tool = HiveMindTool(
    base_url="http://localhost:8000",
    api_key="your-api-key",
    namespace="my-org",
)

# Add to any CrewAI agent
agent = Agent(
    role="Researcher",
    tools=[tool],
)
```

## How it works

`HiveMindTool` wraps the HiveMind `search_knowledge` endpoint as a CrewAI-compatible tool. Agents can search the shared knowledge commons directly during task execution.

## License

MIT
