Metadata-Version: 2.4
Name: nexus-crewai
Version: 1.0.0
Summary: NEXUS AI market intelligence tools for CrewAI — signals, Kalshi markets, wallet AML
Project-URL: Homepage, https://nexus-agent-xa12.onrender.com
Project-URL: Repository, https://github.com/RileyCraig14/nexus-agent
Author-email: RileyCraig14 <rileycraig14@gmail.com>
License: MIT
Keywords: ai-agents,crewai,crypto,defi,kalshi,market-signals,mcp,x402
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Requires-Dist: crewai>=0.28.0
Requires-Dist: requests>=2.28.0
Provides-Extra: autopay
Requires-Dist: x402>=0.1.0; extra == 'autopay'
Description-Content-Type: text/markdown

# nexus-crewai

NEXUS AI market intelligence tools for CrewAI agents.

[![BTC Signal](https://nexus-agent-xa12.onrender.com/badge/BTC)](https://nexus-agent-xa12.onrender.com)

## Install

```bash
pip install nexus-crewai
```

## Quick start

```python
from crewai import Agent, Task, Crew
from nexus_crewai import NexusMarketSignal, NexusKalshi, get_nexus_tools

analyst = Agent(
    role="Financial Analyst",
    goal="Provide market intelligence using NEXUS data",
    backstory="Expert in crypto markets and prediction markets",
    tools=get_nexus_tools(include_paid=False),  # free tools to start
    verbose=True,
)

task = Task(
    description="What does Kalshi say about Bitcoin's chance of hitting $100k?",
    expected_output="Market-implied probability with context",
    agent=analyst,
)

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

## With paid tools (market signals, wallet AML)

```bash
export WALLET_PRIVATE_KEY=0x...   # Base mainnet wallet with USDC
pip install nexus-crewai[autopay]
```

## All tools

| Tool | Price | Description |
|------|-------|-------------|
| `NexusMarketSignal` | $0.05 | BULLISH/BEARISH/NEUTRAL + confidence |
| `NexusAggregate` | $0.15 | CoinGecko + QuantOracle + Kalshi consensus |
| `NexusWalletAML` | $0.001 | AML risk score for any EVM/Solana address |
| `NexusSentiment` | $0.002 | Sentiment analysis |
| `NexusSearch` | $0.02 | Web search + AI summary |
| `NexusKalshi` | **FREE** | Prediction market consensus |
| `NexusReputation` | **FREE** | Agent trust score 0-100 |
| `NexusDNS` | **FREE** | Route capability to best provider |

## Links

- API: [nexus-agent-xa12.onrender.com](https://nexus-agent-xa12.onrender.com)
- MCP: `claude mcp add nexus https://nexus-agent-xa12.onrender.com/mcp`
- LangChain version: `pip install nexus-langchain`
- AutoGen version: `pip install nexus-autogen`
