{
  "schemaVersion": "1.0",
  "item": {
    "slug": "nft-tracker",
    "name": "Nft Tracker",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ianalloway/nft-tracker",
    "canonicalUrl": "https://clawhub.ai/ianalloway/nft-tracker",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/nft-tracker",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=nft-tracker",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "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. 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. 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/nft-tracker"
    },
    "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/nft-tracker",
    "agentPageUrl": "https://openagent3.xyz/skills/nft-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nft-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nft-tracker/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "NFT Price Tracker",
        "body": "Track NFT collection stats, floor prices, and recent sales using free APIs."
      },
      {
        "title": "Reservoir API (Recommended)",
        "body": "Get collection floor price:\n\ncurl -s \"https://api.reservoir.tools/collections/v6?slug=boredapeyachtclub\" | jq '.collections[0] | {name, floorAsk: .floorAsk.price.amount.native, volume24h: .volume[\"1day\"], volumeChange: .volumeChange[\"1day\"]}'"
      },
      {
        "title": "Popular Collection Slugs",
        "body": "boredapeyachtclub - Bored Ape Yacht Club (BAYC)\nmutant-ape-yacht-club - Mutant Ape Yacht Club (MAYC)\ncryptopunks - CryptoPunks\nazuki - Azuki\npudgypenguins - Pudgy Penguins\ndoodles-official - Doodles\nclonex - CloneX"
      },
      {
        "title": "Collection Stats",
        "body": "Get detailed collection stats:\n\ncurl -s \"https://api.reservoir.tools/collections/v6?slug=mutant-ape-yacht-club\" | jq '.collections[0] | {\n  name: .name,\n  floor_eth: .floorAsk.price.amount.native,\n  floor_usd: .floorAsk.price.amount.usd,\n  volume_24h: .volume[\"1day\"],\n  volume_7d: .volume[\"7day\"],\n  volume_30d: .volume[\"30day\"],\n  owners: .ownerCount,\n  supply: .tokenCount\n}'"
      },
      {
        "title": "Recent Sales",
        "body": "Get recent sales for a collection:\n\ncurl -s \"https://api.reservoir.tools/sales/v6?collection=0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d&limit=10\" | jq '.sales[] | {token_id: .token.tokenId, price_eth: .price.amount.native, timestamp: .timestamp, marketplace: .orderSource}'\n\nContract addresses:\n\nBAYC: 0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d\nMAYC: 0x60e4d786628fea6478f785a6d7e704777c86a7c6\nCryptoPunks: 0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb"
      },
      {
        "title": "Floor Price History",
        "body": "Get floor price over time:\n\ncurl -s \"https://api.reservoir.tools/collections/daily-volumes/v1?collection=0x60e4d786628fea6478f785a6d7e704777c86a7c6&limit=30\" | jq '.[] | {date: .timestamp, floor: .floorAskPrice, volume: .volume}'"
      },
      {
        "title": "Top Collections",
        "body": "Get top collections by volume:\n\ncurl -s \"https://api.reservoir.tools/collections/v6?sortBy=1DayVolume&limit=10\" | jq '.collections[] | {name: .name, floor: .floorAsk.price.amount.native, volume_24h: .volume[\"1day\"]}'"
      },
      {
        "title": "Token Lookup",
        "body": "Get details for a specific NFT:\n\n# MAYC #1234\ncurl -s \"https://api.reservoir.tools/tokens/v7?tokens=0x60e4d786628fea6478f785a6d7e704777c86a7c6:1234\" | jq '.tokens[0] | {name: .token.name, image: .token.image, lastSale: .token.lastSale.price.amount.native, owner: .token.owner}'"
      },
      {
        "title": "Price Alerts (Script Example)",
        "body": "Monitor floor price and alert when below threshold:\n\n#!/bin/bash\nCOLLECTION=\"mutant-ape-yacht-club\"\nTHRESHOLD=5  # ETH\n\nFLOOR=$(curl -s \"https://api.reservoir.tools/collections/v6?slug=$COLLECTION\" | jq -r '.collections[0].floorAsk.price.amount.native')\n\nif (( $(echo \"$FLOOR < $THRESHOLD\" | bc -l) )); then\n  echo \"ALERT: $COLLECTION floor is $FLOOR ETH (below $THRESHOLD ETH)\"\nfi"
      },
      {
        "title": "OpenSea API (With Key)",
        "body": "If you have an OpenSea API key:\n\ncurl -s \"https://api.opensea.io/api/v2/collections/mutant-ape-yacht-club/stats\" \\\n  -H \"X-API-KEY: $OPENSEA_API_KEY\" | jq '.'"
      },
      {
        "title": "Tips",
        "body": "Reservoir API is free and doesn't require authentication for basic queries\nRate limits apply - cache responses when possible\nPrices are in ETH unless specified otherwise\nUse contract addresses for precise lookups, slugs for convenience"
      }
    ],
    "body": "NFT Price Tracker\n\nTrack NFT collection stats, floor prices, and recent sales using free APIs.\n\nFree APIs (No Key Required)\nReservoir API (Recommended)\n\nGet collection floor price:\n\ncurl -s \"https://api.reservoir.tools/collections/v6?slug=boredapeyachtclub\" | jq '.collections[0] | {name, floorAsk: .floorAsk.price.amount.native, volume24h: .volume[\"1day\"], volumeChange: .volumeChange[\"1day\"]}'\n\nPopular Collection Slugs\nboredapeyachtclub - Bored Ape Yacht Club (BAYC)\nmutant-ape-yacht-club - Mutant Ape Yacht Club (MAYC)\ncryptopunks - CryptoPunks\nazuki - Azuki\npudgypenguins - Pudgy Penguins\ndoodles-official - Doodles\nclonex - CloneX\nCollection Stats\n\nGet detailed collection stats:\n\ncurl -s \"https://api.reservoir.tools/collections/v6?slug=mutant-ape-yacht-club\" | jq '.collections[0] | {\n  name: .name,\n  floor_eth: .floorAsk.price.amount.native,\n  floor_usd: .floorAsk.price.amount.usd,\n  volume_24h: .volume[\"1day\"],\n  volume_7d: .volume[\"7day\"],\n  volume_30d: .volume[\"30day\"],\n  owners: .ownerCount,\n  supply: .tokenCount\n}'\n\nRecent Sales\n\nGet recent sales for a collection:\n\ncurl -s \"https://api.reservoir.tools/sales/v6?collection=0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d&limit=10\" | jq '.sales[] | {token_id: .token.tokenId, price_eth: .price.amount.native, timestamp: .timestamp, marketplace: .orderSource}'\n\n\nContract addresses:\n\nBAYC: 0xbc4ca0eda7647a8ab7c2061c2e118a18a936f13d\nMAYC: 0x60e4d786628fea6478f785a6d7e704777c86a7c6\nCryptoPunks: 0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb\nFloor Price History\n\nGet floor price over time:\n\ncurl -s \"https://api.reservoir.tools/collections/daily-volumes/v1?collection=0x60e4d786628fea6478f785a6d7e704777c86a7c6&limit=30\" | jq '.[] | {date: .timestamp, floor: .floorAskPrice, volume: .volume}'\n\nTop Collections\n\nGet top collections by volume:\n\ncurl -s \"https://api.reservoir.tools/collections/v6?sortBy=1DayVolume&limit=10\" | jq '.collections[] | {name: .name, floor: .floorAsk.price.amount.native, volume_24h: .volume[\"1day\"]}'\n\nToken Lookup\n\nGet details for a specific NFT:\n\n# MAYC #1234\ncurl -s \"https://api.reservoir.tools/tokens/v7?tokens=0x60e4d786628fea6478f785a6d7e704777c86a7c6:1234\" | jq '.tokens[0] | {name: .token.name, image: .token.image, lastSale: .token.lastSale.price.amount.native, owner: .token.owner}'\n\nPrice Alerts (Script Example)\n\nMonitor floor price and alert when below threshold:\n\n#!/bin/bash\nCOLLECTION=\"mutant-ape-yacht-club\"\nTHRESHOLD=5  # ETH\n\nFLOOR=$(curl -s \"https://api.reservoir.tools/collections/v6?slug=$COLLECTION\" | jq -r '.collections[0].floorAsk.price.amount.native')\n\nif (( $(echo \"$FLOOR < $THRESHOLD\" | bc -l) )); then\n  echo \"ALERT: $COLLECTION floor is $FLOOR ETH (below $THRESHOLD ETH)\"\nfi\n\nOpenSea API (With Key)\n\nIf you have an OpenSea API key:\n\ncurl -s \"https://api.opensea.io/api/v2/collections/mutant-ape-yacht-club/stats\" \\\n  -H \"X-API-KEY: $OPENSEA_API_KEY\" | jq '.'\n\nTips\nReservoir API is free and doesn't require authentication for basic queries\nRate limits apply - cache responses when possible\nPrices are in ETH unless specified otherwise\nUse contract addresses for precise lookups, slugs for convenience"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ianalloway/nft-tracker",
    "publisherUrl": "https://clawhub.ai/ianalloway/nft-tracker",
    "owner": "ianalloway",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/nft-tracker",
    "downloadUrl": "https://openagent3.xyz/downloads/nft-tracker",
    "agentUrl": "https://openagent3.xyz/skills/nft-tracker/agent",
    "manifestUrl": "https://openagent3.xyz/skills/nft-tracker/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/nft-tracker/agent.md"
  }
}