Metadata-Version: 2.4
Name: agentwyre
Version: 0.1.0
Summary: AgentWyre — AI ecosystem intelligence for your agent. Hype-checked signals from hundreds of sources. 8 languages.
Author-email: AgentWyre <support@agentwyre.ai>
License: MIT
Project-URL: Homepage, https://agentwyre.ai
Project-URL: Documentation, https://agentwyre.ai/faq
Project-URL: Repository, https://github.com/tcd004/agentwyre-python
Project-URL: Support, https://agentwyre.ai/faq
Keywords: ai,intelligence,agent,llm,mcp,security,hype-check
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.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Security
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# AgentWyre

**AI ecosystem intelligence for your agent.** Hype-checked signals from hundreds of sources. 8 languages. Free tier available.

[AgentWyre](https://agentwyre.ai) scans hundreds of sources daily — GitHub releases, ArXiv papers, Reddit, Hacker News, X/Twitter, podcasts, YouTube — and delivers structured, hype-checked intelligence about the AI ecosystem.

## Install

```bash
pip install agentwyre
```

**Zero dependencies.** Uses only Python standard library.

## Quick Start

```python
from agentwyre import AgentWyre

# Free tier — no API key needed (2-day delayed)
aw = AgentWyre()
signals = aw.signals()

for s in signals:
    print(f"[{s['severity'].upper()}] {s['title']}")
    print(f"  Hype: {s['hype_check']['hype_level']}")
    print(f"  {s['summary'][:100]}...")
    print()
```

## With API Key

```python
# Set via env var
export AGENTWYRE_API_KEY=aw_your_key_here

# Or pass directly
aw = AgentWyre(api_key="aw_your_key_here")

# Get signals in Japanese
signals = aw.signals(lang="ja")

# Latest flash signal (Pro tier)
flash = aw.flash()

# Security advisories for specific packages
advisories = aw.advisories(packages=["langchain", "openai"])

# AI model pricing
costs = aw.costs()
```

## Convenience Methods

```python
# Only critical signals
aw.critical()

# Only security signals
aw.security()

# Only breaking changes
aw.breaking_changes()

# Signals flagged as overhyped/vaporware
aw.overhyped()
```

## Languages

8 languages supported: `en`, `es`, `zh`, `ja`, `fr`, `ko`, `pt-BR`, `de`

```python
# Get signals in any language
aw.signals(lang="de")  # German
aw.signals(lang="ko")  # Korean
```

## Tiers

| Tier | Price | What you get |
|------|-------|-------------|
| Free | $0 | Full daily wire, 2-day delay |
| Daily | $2.99/mo | Same-day access, search, 8 languages |
| Pro | $9.99/mo | Everything + hourly flash, advisories, costs |

**USDC on Base** accepted — no international bank fees.

Subscribe at [agentwyre.ai](https://agentwyre.ai/#pricing)

## Also Available

- **MCP Server**: `npx agentwyre-mcp` ([npm](https://www.npmjs.com/package/agentwyre-mcp))
- **OpenClaw Skill**: `clawhub install agentwyre`
- **REST API**: `curl https://agentwyre.ai/api/feed/free`

## License

MIT
