{
  "schemaVersion": "1.0",
  "item": {
    "slug": "fairscale-solana-skill",
    "name": "Fairscale Solana Skill",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/RisheeA/fairscale-solana-skill",
    "canonicalUrl": "https://clawhub.ai/RisheeA/fairscale-solana-skill",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/fairscale-solana-skill",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=fairscale-solana-skill",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "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. 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/fairscale-solana-skill"
    },
    "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/fairscale-solana-skill",
    "agentPageUrl": "https://openagent3.xyz/skills/fairscale-solana-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fairscale-solana-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fairscale-solana-skill/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": "FairScale Reputation Skill",
        "body": "Check Solana wallet reputation scores. Free tier: 100 calls/day, no API key needed."
      },
      {
        "title": "What This Does",
        "body": "FairScale provides reputation scores (0-100) for any Solana wallet based on 50+ on-chain signals. Use it to:\n\nCheck a wallet's trustworthiness before transacting\nFilter wallets for airdrops or whitelists\nBuild custom scoring models for your use case\nAdd reputation data to your agent's decision-making"
      },
      {
        "title": "API Endpoint",
        "body": "https://x402.fairscale.xyz\n\nNo API key required for free tier."
      },
      {
        "title": "GET /score",
        "body": "Get a wallet's reputation score.\n\nGET https://x402.fairscale.xyz/score?wallet=WALLET_ADDRESS\n\nResponse:\n\n{\n  \"wallet\": \"7xK9...\",\n  \"fairscore\": 72,\n  \"tier\": \"gold\",\n  \"_meta\": {\n    \"remaining_today\": 99\n  }\n}"
      },
      {
        "title": "GET /check",
        "body": "Get a risk assessment for a specific transaction amount.\n\nGET https://x402.fairscale.xyz/check?wallet=WALLET_ADDRESS&amount=500\n\nResponse:\n\n{\n  \"wallet\": \"7xK9...\",\n  \"fairscore\": 72,\n  \"risk_level\": \"medium\",\n  \"recommendation\": \"proceed_with_caution\",\n  \"max_suggested_amount_usd\": 1000\n}"
      },
      {
        "title": "POST /score/custom",
        "body": "Create custom scoring rules. Requires credits.\n\nPOST https://x402.fairscale.xyz/score/custom\nContent-Type: application/json\n\n{\n  \"wallet\": \"WALLET_ADDRESS\",\n  \"rules\": {\n    \"min_score\": 60,\n    \"min_age_days\": 90,\n    \"no_rug_history\": true\n  }\n}\n\nResponse:\n\n{\n  \"wallet\": \"7xK9...\",\n  \"passes\": true,\n  \"rule_results\": {\n    \"min_score\": { \"pass\": true, \"required\": 60, \"actual\": 72 },\n    \"min_age_days\": { \"pass\": true, \"required\": 90, \"actual\": 340 },\n    \"no_rug_history\": { \"pass\": true }\n  }\n}"
      },
      {
        "title": "POST /batch",
        "body": "Score multiple wallets at once. Requires credits.\n\nPOST https://x402.fairscale.xyz/batch\nContent-Type: application/json\n\n{\n  \"wallets\": [\"wallet1\", \"wallet2\", \"wallet3\"]\n}"
      },
      {
        "title": "Custom Rules",
        "body": "Use these with /score/custom:\n\nRuleTypeExamplemin_scorenumber\"min_score\": 60min_age_daysnumber\"min_age_days\": 90no_rug_historyboolean\"no_rug_history\": truemin_transaction_countnumber\"min_transaction_count\": 100min_volume_usdnumber\"min_volume_usd\": 5000max_burst_rationumber\"max_burst_ratio\": 0.5min_tierstring\"min_tier\": \"silver\""
      },
      {
        "title": "Score Guide",
        "body": "ScoreTierMeaning80-100PlatinumHighly trusted60-79GoldGood reputation40-59SilverAverage0-39BronzeLow trust"
      },
      {
        "title": "Pricing",
        "body": "TierLimitCostFree100 calls/day$0CreditsUnlimited$0.01/call"
      },
      {
        "title": "Get Credits",
        "body": "Send USDC to: fairAUEuR1SCcHL254Vb3F3XpUWLruJ2a11f6QfANEN\nCall POST /credits/deposit with your wallet and tx signature\nGet a session token\nInclude x-session-token header on requests"
      },
      {
        "title": "Examples",
        "body": "Check a wallet:\n\nGET https://x402.fairscale.xyz/score?wallet=7xK9abc...\n\nCheck risk for $500 trade:\n\nGET https://x402.fairscale.xyz/check?wallet=7xK9abc...&amount=500\n\nCustom rules for lending:\n\nPOST https://x402.fairscale.xyz/score/custom\n{\n  \"wallet\": \"7xK9abc...\",\n  \"rules\": {\n    \"min_score\": 70,\n    \"min_age_days\": 180,\n    \"no_rug_history\": true\n  }\n}"
      },
      {
        "title": "Monetise This Skill",
        "body": "Build products on top of FairScale:\n\nGated access: Charge users to verify their reputation\nAirdrop filtering: Charge projects to filter sybils\nLending checks: Charge per credit decision\nPremium verification: Offer \"FairScale Verified\" badges\n\nYour agent can charge users while paying $0.01/call to FairScale."
      },
      {
        "title": "Links",
        "body": "Docs: https://docs.fairscale.xyz\nAPI: https://x402.fairscale.xyz"
      }
    ],
    "body": "FairScale Reputation Skill\n\nCheck Solana wallet reputation scores. Free tier: 100 calls/day, no API key needed.\n\nWhat This Does\n\nFairScale provides reputation scores (0-100) for any Solana wallet based on 50+ on-chain signals. Use it to:\n\nCheck a wallet's trustworthiness before transacting\nFilter wallets for airdrops or whitelists\nBuild custom scoring models for your use case\nAdd reputation data to your agent's decision-making\nAPI Endpoint\nhttps://x402.fairscale.xyz\n\n\nNo API key required for free tier.\n\nEndpoints\nGET /score\n\nGet a wallet's reputation score.\n\nGET https://x402.fairscale.xyz/score?wallet=WALLET_ADDRESS\n\n\nResponse:\n\n{\n  \"wallet\": \"7xK9...\",\n  \"fairscore\": 72,\n  \"tier\": \"gold\",\n  \"_meta\": {\n    \"remaining_today\": 99\n  }\n}\n\nGET /check\n\nGet a risk assessment for a specific transaction amount.\n\nGET https://x402.fairscale.xyz/check?wallet=WALLET_ADDRESS&amount=500\n\n\nResponse:\n\n{\n  \"wallet\": \"7xK9...\",\n  \"fairscore\": 72,\n  \"risk_level\": \"medium\",\n  \"recommendation\": \"proceed_with_caution\",\n  \"max_suggested_amount_usd\": 1000\n}\n\nPOST /score/custom\n\nCreate custom scoring rules. Requires credits.\n\nPOST https://x402.fairscale.xyz/score/custom\nContent-Type: application/json\n\n{\n  \"wallet\": \"WALLET_ADDRESS\",\n  \"rules\": {\n    \"min_score\": 60,\n    \"min_age_days\": 90,\n    \"no_rug_history\": true\n  }\n}\n\n\nResponse:\n\n{\n  \"wallet\": \"7xK9...\",\n  \"passes\": true,\n  \"rule_results\": {\n    \"min_score\": { \"pass\": true, \"required\": 60, \"actual\": 72 },\n    \"min_age_days\": { \"pass\": true, \"required\": 90, \"actual\": 340 },\n    \"no_rug_history\": { \"pass\": true }\n  }\n}\n\nPOST /batch\n\nScore multiple wallets at once. Requires credits.\n\nPOST https://x402.fairscale.xyz/batch\nContent-Type: application/json\n\n{\n  \"wallets\": [\"wallet1\", \"wallet2\", \"wallet3\"]\n}\n\nCustom Rules\n\nUse these with /score/custom:\n\nRule\tType\tExample\nmin_score\tnumber\t\"min_score\": 60\nmin_age_days\tnumber\t\"min_age_days\": 90\nno_rug_history\tboolean\t\"no_rug_history\": true\nmin_transaction_count\tnumber\t\"min_transaction_count\": 100\nmin_volume_usd\tnumber\t\"min_volume_usd\": 5000\nmax_burst_ratio\tnumber\t\"max_burst_ratio\": 0.5\nmin_tier\tstring\t\"min_tier\": \"silver\"\nScore Guide\nScore\tTier\tMeaning\n80-100\tPlatinum\tHighly trusted\n60-79\tGold\tGood reputation\n40-59\tSilver\tAverage\n0-39\tBronze\tLow trust\nPricing\nTier\tLimit\tCost\nFree\t100 calls/day\t$0\nCredits\tUnlimited\t$0.01/call\nGet Credits\nSend USDC to: fairAUEuR1SCcHL254Vb3F3XpUWLruJ2a11f6QfANEN\nCall POST /credits/deposit with your wallet and tx signature\nGet a session token\nInclude x-session-token header on requests\nExamples\n\nCheck a wallet:\n\nGET https://x402.fairscale.xyz/score?wallet=7xK9abc...\n\n\nCheck risk for $500 trade:\n\nGET https://x402.fairscale.xyz/check?wallet=7xK9abc...&amount=500\n\n\nCustom rules for lending:\n\nPOST https://x402.fairscale.xyz/score/custom\n{\n  \"wallet\": \"7xK9abc...\",\n  \"rules\": {\n    \"min_score\": 70,\n    \"min_age_days\": 180,\n    \"no_rug_history\": true\n  }\n}\n\nMonetise This Skill\n\nBuild products on top of FairScale:\n\nGated access: Charge users to verify their reputation\nAirdrop filtering: Charge projects to filter sybils\nLending checks: Charge per credit decision\nPremium verification: Offer \"FairScale Verified\" badges\n\nYour agent can charge users while paying $0.01/call to FairScale.\n\nLinks\nDocs: https://docs.fairscale.xyz\nAPI: https://x402.fairscale.xyz"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/RisheeA/fairscale-solana-skill",
    "publisherUrl": "https://clawhub.ai/RisheeA/fairscale-solana-skill",
    "owner": "RisheeA",
    "version": "0.1.3",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/fairscale-solana-skill",
    "downloadUrl": "https://openagent3.xyz/downloads/fairscale-solana-skill",
    "agentUrl": "https://openagent3.xyz/skills/fairscale-solana-skill/agent",
    "manifestUrl": "https://openagent3.xyz/skills/fairscale-solana-skill/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/fairscale-solana-skill/agent.md"
  }
}