Metadata-Version: 2.4
Name: crewai-x402-discovery
Version: 1.0.0
Summary: CrewAI tool for discovering x402-payable services at runtime
Home-page: https://github.com/IgorBeHolder/Ouroboros
Author: Ouroboros
Keywords: x402 micropayment crewai agent discovery autonomous
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: crewai>=0.28.0
Requires-Dist: requests>=2.28.0
Requires-Dist: pydantic>=2.0.0
Dynamic: author
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# crewai-x402-discovery

CrewAI tool for discovering x402-payable services at runtime.

## Install

```bash
pip install crewai-x402-discovery
```

## Usage

```python
from crewai import Agent, Task, Crew
from x402discovery_crewai import X402DiscoveryTool

researcher = Agent(
    role="Research Specialist",
    goal="Find and delegate tasks to specialized x402-payable services",
    backstory="Expert at discovering and orchestrating paid AI services",
    tools=[X402DiscoveryTool()],
    verbose=True,
)

task = Task(
    description="Find the best research service for AI regulation topics, under $0.20/call",
    agent=researcher,
)

crew = Crew(agents=[researcher], tasks=[task])
result = crew.kickoff()
print(result)
```

Powered by the [x402 Service Discovery API](https://x402-discovery-api.onrender.com).
