{
  "schemaVersion": "1.0",
  "item": {
    "slug": "exchange-rate",
    "name": "Exchange Rate",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/ax2/exchange-rate",
    "canonicalUrl": "https://clawhub.ai/ax2/exchange-rate",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/exchange-rate",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=exchange-rate",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "scripts/exchange_rate.mjs"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/exchange-rate"
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/exchange-rate",
    "agentPageUrl": "https://openagent3.xyz/skills/exchange-rate/agent",
    "manifestUrl": "https://openagent3.xyz/skills/exchange-rate/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/exchange-rate/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Exchange Rate",
        "body": "Real-time currency exchange rate and conversion using QVeris tools."
      },
      {
        "title": "What This Skill Does",
        "body": "Exchange Rate provides:\n\nRate lookup – Current exchange rate between two currencies (e.g. USD/EUR, CNY/JPY).\nAmount conversion – Convert an amount from one currency to another at current rates.\n\nSupported via QVeris: forex and common fiat pairs; optional historical date for rate/conversion when the tool supports it."
      },
      {
        "title": "Key Advantages",
        "body": "Uses only QVeris API: search for tools by capability, then execute; no hardcoded provider list.\nFallback across providers (e.g. Alpha Vantage, Twelve Data) when one fails or is unavailable.\nSame credential as other skills: QVERIS_API_KEY only.\nRead-only, no side effects; suitable for travel, trade, and reporting."
      },
      {
        "title": "Core Workflow",
        "body": "Parse user intent: rate (from_currency, to_currency) or convert (from_currency, to_currency, amount).\nSearch QVeris for tools: e.g. \"currency exchange rate real-time\", \"currency conversion\".\nRank results by success_rate, latency, and parameter fit (rate vs conversion).\nBuild request parameters: for rate use from_currency/to_currency or symbol (e.g. EUR/USD); for conversion add amount.\nExecute chosen tool with 5s timeout; on failure try next candidate.\nReturn formatted rate and/or converted amount (markdown or JSON)."
      },
      {
        "title": "Command Surface",
        "body": "Primary script: scripts/exchange_rate.mjs\n\nGet rate only:\n\nnode scripts/exchange_rate.mjs rate --from USD --to EUR\nnode scripts/exchange_rate.mjs rate --from CNY --to USD\n\n\nConvert amount:\n\nnode scripts/exchange_rate.mjs convert --from USD --to JPY --amount 1000\nnode scripts/exchange_rate.mjs convert --from EUR --to GBP --amount 500\n\nOptional: --date YYYY-MM-DD for historical rate/conversion when the tool supports it; --format json for machine-readable output."
      },
      {
        "title": "Safety and Disclosure",
        "body": "Uses only QVERIS_API_KEY; no other secrets.\nCalls only QVeris over HTTPS; no package install or arbitrary commands.\nOutput is for reference only; not financial or contractual advice."
      }
    ],
    "body": "Exchange Rate\n\nReal-time currency exchange rate and conversion using QVeris tools.\n\nWhat This Skill Does\n\nExchange Rate provides:\n\nRate lookup – Current exchange rate between two currencies (e.g. USD/EUR, CNY/JPY).\nAmount conversion – Convert an amount from one currency to another at current rates.\n\nSupported via QVeris: forex and common fiat pairs; optional historical date for rate/conversion when the tool supports it.\n\nKey Advantages\nUses only QVeris API: search for tools by capability, then execute; no hardcoded provider list.\nFallback across providers (e.g. Alpha Vantage, Twelve Data) when one fails or is unavailable.\nSame credential as other skills: QVERIS_API_KEY only.\nRead-only, no side effects; suitable for travel, trade, and reporting.\nCore Workflow\nParse user intent: rate (from_currency, to_currency) or convert (from_currency, to_currency, amount).\nSearch QVeris for tools: e.g. \"currency exchange rate real-time\", \"currency conversion\".\nRank results by success_rate, latency, and parameter fit (rate vs conversion).\nBuild request parameters: for rate use from_currency/to_currency or symbol (e.g. EUR/USD); for conversion add amount.\nExecute chosen tool with 5s timeout; on failure try next candidate.\nReturn formatted rate and/or converted amount (markdown or JSON).\nCommand Surface\n\nPrimary script: scripts/exchange_rate.mjs\n\nGet rate only:\nnode scripts/exchange_rate.mjs rate --from USD --to EUR\nnode scripts/exchange_rate.mjs rate --from CNY --to USD\nConvert amount:\nnode scripts/exchange_rate.mjs convert --from USD --to JPY --amount 1000\nnode scripts/exchange_rate.mjs convert --from EUR --to GBP --amount 500\n\nOptional: --date YYYY-MM-DD for historical rate/conversion when the tool supports it; --format json for machine-readable output.\n\nSafety and Disclosure\nUses only QVERIS_API_KEY; no other secrets.\nCalls only QVeris over HTTPS; no package install or arbitrary commands.\nOutput is for reference only; not financial or contractual advice."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ax2/exchange-rate",
    "publisherUrl": "https://clawhub.ai/ax2/exchange-rate",
    "owner": "ax2",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/exchange-rate",
    "downloadUrl": "https://openagent3.xyz/downloads/exchange-rate",
    "agentUrl": "https://openagent3.xyz/skills/exchange-rate/agent",
    "manifestUrl": "https://openagent3.xyz/skills/exchange-rate/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/exchange-rate/agent.md"
  }
}