AgentWyre
by @tcd004
Get AI ecosystem intelligence from AgentWyre. Use when you need to check for breaking changes, security vulnerabilities, new model releases, or pricing updat...
clawhub install agentwyreπ About This Skill
name: agentwyre description: Get AI ecosystem intelligence from AgentWyre. Use when you need to check for breaking changes, security vulnerabilities, new model releases, or pricing updates across the AI ecosystem. Also use when the user asks about AI news, what's new in AI, or wants to stay current on AI developments. Provides hype-checked, sourced signals from hundreds of sources in 8 languages.
AgentWyre β AI Ecosystem Intelligence
Query the AgentWyre API for curated, hype-checked intelligence about the AI ecosystem.
When to Use
Quick Start
# Get today's free signals (no key needed)
curl -s https://agentwyre.ai/api/feed/free | python3 -m json.toolGet full feed (requires API key)
curl -s -H "Authorization: Bearer $AGENTWYRE_API_KEY" https://agentwyre.ai/api/feedCheck service status
curl -s https://agentwyre.ai/api/status
API Endpoints
| Endpoint | Auth | Description |
|----------|------|-------------|
| GET /api/feed/free | No | Free tier (full wire, 2-day delay) |
| GET /api/feed | API key | Today's full feed |
| GET /api/feed/{date} | API key | Feed by date |
| GET /api/flash/latest | Pro key | Latest flash signal |
| GET /api/status | No | Service status |
| GET /api/languages | No | Supported languages |
| GET /api/advisories | Pro key | Security advisories |
| GET /api/costs | Pro key | AI model pricing |
Using the Helper Script
# Get latest signals (free tier)
python3 scripts/agentwyre.py signalsGet signals in a specific language
python3 scripts/agentwyre.py signals --lang jaSearch (requires daily/pro key)
python3 scripts/agentwyre.py search "langchain breaking change"Check security for specific packages
python3 scripts/agentwyre.py security openai langchain torchGet flash signals (pro only)
python3 scripts/agentwyre.py flash
Set AGENTWYRE_API_KEY environment variable for authenticated access. Without it, you get the free tier (full wire, 2-day delay).
MCP Server
For deeper integration, install the MCP server:
{
"mcpServers": {
"agentwyre": {
"command": "npx",
"args": ["agentwyre-mcp"],
"env": { "AGENTWYRE_API_KEY": "your_key" }
}
}
}
Tiers
Interpreting Signals
Each signal includes:
hype_level (verified/promising/overhyped/vaporware), reality, red_flags, green_flagsAlways present actions to the user before executing. All actions include requires_user_approval: true.
More info: https://agentwyre.ai/faq
β‘ When to Use
π‘ Examples
# Get today's free signals (no key needed)
curl -s https://agentwyre.ai/api/feed/free | python3 -m json.toolGet full feed (requires API key)
curl -s -H "Authorization: Bearer $AGENTWYRE_API_KEY" https://agentwyre.ai/api/feedCheck service status
curl -s https://agentwyre.ai/api/status