{
  "schemaVersion": "1.0",
  "item": {
    "slug": "crypto-portfolio-tracker-api",
    "name": "Crypto Portfolio Tracker API",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/StrykrAgent/crypto-portfolio-tracker-api",
    "canonicalUrl": "https://clawhub.ai/StrykrAgent/crypto-portfolio-tracker-api",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/crypto-portfolio-tracker-api",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=crypto-portfolio-tracker-api",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "cli.js",
      "examples/basic.js",
      "package.json",
      "skill.json"
    ],
    "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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-1.0.0.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/crypto-portfolio-tracker-api"
    },
    "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/crypto-portfolio-tracker-api",
    "agentPageUrl": "https://openagent3.xyz/skills/crypto-portfolio-tracker-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crypto-portfolio-tracker-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crypto-portfolio-tracker-api/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": "Crypto Portfolio Tracker API",
        "body": "Track cryptocurrency portfolios with real-time prices and P&L calculations."
      },
      {
        "title": "Installation",
        "body": "npm install crypto-portfolio-tracker-api"
      },
      {
        "title": "Usage",
        "body": "const { PortfolioTracker } = require('crypto-portfolio-tracker-api');\n\nconst tracker = new PortfolioTracker();\n\n// Get current price\nconst btc = await tracker.getPrice('BTC');\n\n// Get multiple prices\nconst prices = await tracker.getPrices(['BTC', 'ETH', 'SOL']);\n\n// Track portfolio with P&L\nconst portfolio = await tracker.trackPortfolio([\n  { symbol: 'BTC', amount: 0.5, costBasis: 30000 },\n  { symbol: 'ETH', amount: 10, costBasis: 2000 }\n]);\n\nconsole.log(`Total: $${portfolio.totalValue}`);\nconsole.log(`P&L: $${portfolio.totalPnL}`);"
      },
      {
        "title": "CLI",
        "body": "# Get price\nnpx crypto-portfolio-tracker-api price BTC\n\n# Track portfolio from file\nnpx crypto-portfolio-tracker-api track portfolio.json"
      },
      {
        "title": "API Methods",
        "body": "getPrice(symbol) - Get single token price\ngetPrices(symbols) - Get multiple prices\ntrackPortfolio(holdings) - Calculate portfolio value and P&L"
      },
      {
        "title": "Data Source",
        "body": "Powered by PRISM API"
      }
    ],
    "body": "Crypto Portfolio Tracker API\n\nTrack cryptocurrency portfolios with real-time prices and P&L calculations.\n\nInstallation\nnpm install crypto-portfolio-tracker-api\n\nUsage\nconst { PortfolioTracker } = require('crypto-portfolio-tracker-api');\n\nconst tracker = new PortfolioTracker();\n\n// Get current price\nconst btc = await tracker.getPrice('BTC');\n\n// Get multiple prices\nconst prices = await tracker.getPrices(['BTC', 'ETH', 'SOL']);\n\n// Track portfolio with P&L\nconst portfolio = await tracker.trackPortfolio([\n  { symbol: 'BTC', amount: 0.5, costBasis: 30000 },\n  { symbol: 'ETH', amount: 10, costBasis: 2000 }\n]);\n\nconsole.log(`Total: $${portfolio.totalValue}`);\nconsole.log(`P&L: $${portfolio.totalPnL}`);\n\nCLI\n# Get price\nnpx crypto-portfolio-tracker-api price BTC\n\n# Track portfolio from file\nnpx crypto-portfolio-tracker-api track portfolio.json\n\nAPI Methods\ngetPrice(symbol) - Get single token price\ngetPrices(symbols) - Get multiple prices\ntrackPortfolio(holdings) - Calculate portfolio value and P&L\nData Source\n\nPowered by PRISM API"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/StrykrAgent/crypto-portfolio-tracker-api",
    "publisherUrl": "https://clawhub.ai/StrykrAgent/crypto-portfolio-tracker-api",
    "owner": "StrykrAgent",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/crypto-portfolio-tracker-api",
    "downloadUrl": "https://openagent3.xyz/downloads/crypto-portfolio-tracker-api",
    "agentUrl": "https://openagent3.xyz/skills/crypto-portfolio-tracker-api/agent",
    "manifestUrl": "https://openagent3.xyz/skills/crypto-portfolio-tracker-api/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/crypto-portfolio-tracker-api/agent.md"
  }
}