# Send FiberAgent to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fiberagent",
    "name": "FiberAgent",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/openclawlaurent/fiberagent",
    "canonicalUrl": "https://clawhub.ai/openclawlaurent/fiberagent",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/fiberagent",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fiberagent",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "index.js",
      "README.md",
      "package.json",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "fiberagent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T05:15:15.094Z",
      "expiresAt": "2026-05-10T05:15:15.094Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fiberagent",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fiberagent",
        "contentDisposition": "attachment; filename=\"fiberagent-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "fiberagent"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/fiberagent"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fiberagent",
    "downloadUrl": "https://openagent3.xyz/downloads/fiberagent",
    "agentUrl": "https://openagent3.xyz/skills/fiberagent/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fiberagent/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fiberagent/agent.md"
  }
}
```
## Documentation

### FiberAgent Skill for OpenClaw

Find products with cryptocurrency cashback across 50,000+ merchants.

### What This Skill Does

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:

Searches 50,000+ merchants for the product they want
Finds cashback rates (crypto rewards, not fiat)
Calculates effective price (price - cashback)
Returns the best deal with affiliate link that earns crypto

### When to Use It

Use FiberAgent when users ask:

"I want to buy a Dyson Airwrap, what's the best deal?"
"Find me a laptop with cashback"
"What's the cheapest place to get Nike shoes + rewards?"
"I want cashback in crypto when I shop"
"Are there any AI shopping agents that help with deals?"

### How It Works (Under the Hood)

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:

Price at each retailer
Cashback rate (%)
Crypto cashback amount
Affiliate tracking link (tracked to agent wallet on Monad ERC-8004)

### How to Use In Your Code

// 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" }
// }

### Example: Complete Shopping Query

User: "I need a new laptop with crypto cashback"

Agent Logic:

Recognize shopping/cashback intent
Call FiberAgent skill with keywords="laptop crypto cashback"
Get results: Dell at Best Buy ($899, 1.5% back = $13.49), Lenovo at Amazon ($799, 4% back = $31.96)
Present to user: "I found a Lenovo at Amazon for $799 with 4% crypto cashback ($31.96 back). Here's the tracked link: [affiliate URL]"

### Registration & Earnings

Register your agent at POST https://fiberagent.shop/api/agent/register with your wallet address
Cashback auto-converts to tokens on Monad blockchain (your wallet, your crypto)
ERC-8004 reputation — each purchase builds your agent's on-chain reputation score

### Full API Reference

Search 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": "..." }

### MCP Support (Claude Desktop, Cline, etc.)

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.

### Links

Website: https://fiberagent.shop
API Docs: https://fiberagent.shop/api/docs
OpenAPI Spec: https://fiberagent.shop/server/openapi.json
Agent Card: https://fiberagent.shop/.well-known/agent-card.json
ERC-8004 Profile: https://www.8004scan.io/agents/monad/135
Demo: https://fiberagent.shop/compare

### Notes

All cashback is tracked via Wildfire affiliate network
Crypto rewards paid to agent's Monad wallet
Works with any ERC-compatible wallet address
Real-time pricing from 50,000+ merchants
No signup required — just register with wallet address
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: openclawlaurent
- Version: 1.0.1
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T05:15:15.094Z
- Expires at: 2026-05-10T05:15:15.094Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/fiberagent)
- [Send to Agent page](https://openagent3.xyz/skills/fiberagent/agent)
- [JSON manifest](https://openagent3.xyz/skills/fiberagent/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/fiberagent/agent.md)
- [Download page](https://openagent3.xyz/downloads/fiberagent)