Install
openclaw skills install fiberagentSearch 50,000+ merchants for products with cryptocurrency cashback, calculate effective prices, and provide affiliate links earning crypto rewards on Monad b...
openclaw skills install fiberagentFind products with cryptocurrency cashback across 50,000+ merchants.
FiberAgent connects your OpenClaw agent to a shopping intelligence layer powered by the Wildfire affiliate network on Monad blockchain. When a user asks about shopping deals, cashback, or product prices, this skill:
Use FiberAgent when users ask:
The skill calls the FiberAgent API:
GET https://fiberagent.shop/api/agent/search?keywords=PRODUCT&agent_id=YOUR_AGENT_ID&size=10
Returns product matches with:
// Fetch products with cashback
const response = await fetch(
'https://fiberagent.shop/api/agent/search?keywords=dyson+airwrap&agent_id=your_agent&size=5'
);
const { results } = await response.json();
// results[0] = {
// title: "Dyson Airwrap i.d. Multi-Styler",
// price: 499.99,
// cashback: { rate: "15%", amount: 75.00 },
// affiliateUrl: "https://wild.link/e?...",
// shop: { name: "Macy's", domain: "macys.com" }
// }
User: "I need a new laptop with crypto cashback"
Agent Logic:
POST https://fiberagent.shop/api/agent/register with your wallet addressSearch Products
GET /api/agent/search?keywords=QUERY&agent_id=YOUR_AGENT_ID&size=10
Get Agent Stats
GET /api/agent/[id]/stats
Natural Language Task
POST /api/agent/task
Body: { "intent": "find laptop deals", "context": "user has $1000 budget", "agent_id": "..." }
FiberAgent also exposes a Model Context Protocol server at:
https://fiberagent.shop/api/mcp
Claude and other MCP clients can connect directly to search products and compare cashback.