{
  "schemaVersion": "1.0",
  "item": {
    "slug": "moonbanking",
    "name": "Moon Banking",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/juanwall/moonbanking",
    "canonicalUrl": "https://clawhub.ai/juanwall/moonbanking",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/moonbanking",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=moonbanking",
    "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/moonbanking"
    },
    "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/moonbanking",
    "agentPageUrl": "https://openagent3.xyz/skills/moonbanking/agent",
    "manifestUrl": "https://openagent3.xyz/skills/moonbanking/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/moonbanking/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": "Moon Banking API",
        "body": "Query the Moon Banking API at https://api.moonbanking.com/v1 for data about every bank on Earth, as well as aggregated bank data at the world and country levels. Includes data about banks, countries, stories, votes, search, world overview, and more."
      },
      {
        "title": "Setup & Authentication",
        "body": "Set the environment variable:\nMOON_BANKING_API_KEY=your_api_key_here\n(A Moon Banking Pro plan is required to get your API key. Once you have a plan, you can create an API key in your Moon Banking dashboard.)\n\n\nEvery request must include the header:\nAuthorization: Bearer $MOON_BANKING_API_KEY\n\n\nUse exec with curl -s (silent mode) and pipe to jq for clean, readable JSON output.\n\n\nIf jq is not installed, remove | jq . — the agent can still parse raw JSON."
      },
      {
        "title": "Standard curl pattern",
        "body": "curl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/ENDPOINT?param=value&another=val\" | jq ."
      },
      {
        "title": "1. /banks",
        "body": "This endpoint allows you to retrieve a paginated list of all banks. By default, a maximum of ten banks are shown per page. You can search banks by name, filter by country, sort them by various fields, and include related data like scores and country information.\nCommon params\n\nlimit (optional) - (1–100, default 10)\nstarting_after (optional)\nending_before (optional)\nsortBy (optional) - (name, rank, countryRank, storiesCount, countryId, overall_score, overall_total, overall_up, overall_down, cryptoFriendly_score, cryptoFriendly_total, cryptoFriendly_up, cryptoFriendly_down, customerService_score, customerService_total, customerService_up, customerService_down, feesPricing_score, feesPricing_total, feesPricing_up, feesPricing_down, digitalExperience_score, digitalExperience_total, digitalExperience_up, digitalExperience_down, securityTrust_score, securityTrust_total, securityTrust_up, securityTrust_down, accountFeatures_score, accountFeatures_total, accountFeatures_up, accountFeatures_down, branchAtmAccess_score, branchAtmAccess_total, branchAtmAccess_up, branchAtmAccess_down, internationalBanking_score, internationalBanking_total, internationalBanking_up, internationalBanking_down, businessBanking_score, businessBanking_total, businessBanking_up, businessBanking_down, processingSpeed_score, processingSpeed_total, processingSpeed_up, processingSpeed_down, transparency_score, transparency_total, transparency_up, transparency_down, innovation_score, innovation_total, innovation_up, innovation_down, investmentServices_score, investmentServices_total, investmentServices_up, investmentServices_down, lending_score, lending_total, lending_up, lending_down)\nsortOrder (optional) - (asc, desc)\nQuery params\nsearch (optional)\ninclude (optional) - (scores, country, meta)\ncountryId (optional)\ncountryCode (optional)\nExample\n\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/banks?limit=10&search=ethical&sortBy=overall_score&sortOrder=desc&include=scores,country&countryCode=US\" | jq ."
      },
      {
        "title": "/banks/by-hostname",
        "body": "This endpoint allows you to retrieve banks by hostname. It will return up to one bank per country that matches the provided hostname. The hostname is normalized (www. prefix removed if present) and matched against both the primary hostname and alternative hostnames.\nQuery params\n\nhostname (required)\ninclude (optional) - (scores, country)\npageTitle (optional)\nExample\n\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/banks/by-hostname?hostname=fidelity.com&include=scores,country\" | jq ."
      },
      {
        "title": "/banks/{id}",
        "body": "This endpoint allows you to retrieve a specific bank by providing the bank ID. You can include related data like scores and country information in the response.\nQuery params\n\ninclude (optional) - (scores, country)\nPath params\nid (required)\nExample\n\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/banks/6jkxE4N8gHXgDPK?include=scores,country\" | jq ."
      },
      {
        "title": "2. /bank-votes",
        "body": "This endpoint allows you to retrieve a paginated list of bank votes. You can filter by bank ID, category, country, vote type (upvote or downvote), and other parameters.\nCommon params\n\nlimit (optional) - (1–100, default 10)\nstarting_after (optional)\nending_before (optional)\nsortBy (optional) - (createdAt)\nsortOrder (optional) - (asc, desc)\nQuery params\nbankId (optional)\ncategories (optional)\nisUp (optional)\ncountryCode (optional)\ninclude (optional) - (bank, country)\nExample\n\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/bank-votes?limit=10&bankId=bank_abc&isUp=true&countryCode=US&sortBy=createdAt&sortOrder=desc&include=scores,country\" | jq ."
      },
      {
        "title": "3. /countries",
        "body": "This endpoint allows you to retrieve a paginated list of all countries. By default, a maximum of ten countries are shown per page. You can search countries by name or 2-letter code, sort them by various fields, and include related data like scores.\nCommon params\n\nlimit (optional) - (1–100, default 10)\nstarting_after (optional)\nending_before (optional)\nsortBy (optional) - (name, code, rank, banksCount, storiesCount, overall_score, overall_total, overall_up, overall_down, cryptoFriendly_score, cryptoFriendly_total, cryptoFriendly_up, cryptoFriendly_down, customerService_score, customerService_total, customerService_up, customerService_down, feesPricing_score, feesPricing_total, feesPricing_up, feesPricing_down, digitalExperience_score, digitalExperience_total, digitalExperience_up, digitalExperience_down, securityTrust_score, securityTrust_total, securityTrust_up, securityTrust_down, accountFeatures_score, accountFeatures_total, accountFeatures_up, accountFeatures_down, branchAtmAccess_score, branchAtmAccess_total, branchAtmAccess_up, branchAtmAccess_down, internationalBanking_score, internationalBanking_total, internationalBanking_up, internationalBanking_down, businessBanking_score, businessBanking_total, businessBanking_up, businessBanking_down, processingSpeed_score, processingSpeed_total, processingSpeed_up, processingSpeed_down, transparency_score, transparency_total, transparency_up, transparency_down, innovation_score, innovation_total, innovation_up, innovation_down, investmentServices_score, investmentServices_total, investmentServices_up, investmentServices_down, lending_score, lending_total, lending_up, lending_down)\nsortOrder (optional) - (asc, desc)\nQuery params\nsearch (optional)\ninclude (optional) - (scores)\nExample\n\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/countries?limit=10&search=swiss&sortBy=overall_score&sortOrder=desc&include=scores\" | jq ."
      },
      {
        "title": "/countries/{code}",
        "body": "This endpoint allows you to retrieve a specific country by providing the 2-letter ISO country code. You can include related data like scores in the response.\nQuery params\n\ninclude (optional) - (scores)\nPath params\ncode (required)\nExample\n\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/countries/US?include=scores\" | jq ."
      },
      {
        "title": "4. /stories",
        "body": "This endpoint allows you to retrieve a paginated list of all stories. By default, a maximum of ten stories are shown per page. You can search stories by text content, filter by bank ID, sort them by various fields, and include related data like bank and country information.\nCommon params\n\nlimit (optional) - (1–100, default 10)\nstarting_after (optional)\nending_before (optional)\nsortBy (optional) - (createdAt, thumbsUpCount)\nsortOrder (optional) - (asc, desc)\nQuery params\nsearch (optional)\ninclude (optional) - (bank, country)\ncountryCode (optional)\nbankId (optional)\ntags (optional)\nExample\n\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/stories?limit=10&search=swiss&sortBy=createdAt&sortOrder=desc&include=bank,country&countryCode=US&bankId=bank_abc\" | jq ."
      },
      {
        "title": "/stories/{id}",
        "body": "This endpoint allows you to retrieve a specific story by providing the story ID. You can include related data like bank and country information in the response.\nQuery params\n\ninclude (optional) - (bank, country)\nPath params\nid (required)\nExample\n\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/stories/8HsY5nBc7jAqM4u?include=bank,country\" | jq ."
      },
      {
        "title": "5. /world",
        "body": "This endpoint allows you to retrieve global overview data that aggregates banks votes, stories and other data across all banks in all countries. You can include related data like scores in the response.\nQuery params\n\ninclude (optional) - (scores)\nExample\n\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/world?include=scores\" | jq ."
      },
      {
        "title": "6. /search",
        "body": "Search across banks, countries, and stories. You can specify which entities to search using the include parameter. If no include value is provided, all entities will be searched.\nCommon params\n\nlimit (optional) - (1–50, default 10)\nQuery params\nq (required)\ninclude (optional) - (banks, countries, stories)\nExample\n\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/search?q=crypto+friendly+banks&include=banks,countries,stories&limit=15\" | jq ."
      },
      {
        "title": "Best Practices & Tips",
        "body": "Use jq filters to extract useful fields, e.g.:\n| jq '.data[] | {name, overall_score, rank, country?.name}'\n\n\n\nError handling:\n\n401/403 → check or set MOON_BANKING_API_KEY\n404 → invalid ID or code\n429 → rate limit (wait and retry)\n\n\n\nPagination: Use starting_after / ending_before from previous responses.\n\n\nAlways summarize results helpfully (top banks, country rankings, popular stories, etc.) instead of dumping raw JSON.\n\n\nChain multiple exec calls for complex questions.\n\nUse this skill whenever questions or discussions involve bank information of any kind, including, but not limited to, rankings, reviews, country comparisons, customer experiences, or global banking insights."
      }
    ],
    "body": "Moon Banking API\n\nQuery the Moon Banking API at https://api.moonbanking.com/v1 for data about every bank on Earth, as well as aggregated bank data at the world and country levels. Includes data about banks, countries, stories, votes, search, world overview, and more.\n\nSetup & Authentication\n\nSet the environment variable:\nMOON_BANKING_API_KEY=your_api_key_here\n(A Moon Banking Pro plan is required to get your API key. Once you have a plan, you can create an API key in your Moon Banking dashboard.)\n\nEvery request must include the header:\nAuthorization: Bearer $MOON_BANKING_API_KEY\n\nUse exec with curl -s (silent mode) and pipe to jq for clean, readable JSON output.\n\nIf jq is not installed, remove | jq . — the agent can still parse raw JSON.\n\nStandard curl pattern\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/ENDPOINT?param=value&another=val\" | jq .\n\nAll Endpoints\n1. /banks\n\nThis endpoint allows you to retrieve a paginated list of all banks. By default, a maximum of ten banks are shown per page. You can search banks by name, filter by country, sort them by various fields, and include related data like scores and country information.\nCommon params\n\nlimit (optional) - (1–100, default 10)\nstarting_after (optional)\nending_before (optional)\nsortBy (optional) - (name, rank, countryRank, storiesCount, countryId, overall_score, overall_total, overall_up, overall_down, cryptoFriendly_score, cryptoFriendly_total, cryptoFriendly_up, cryptoFriendly_down, customerService_score, customerService_total, customerService_up, customerService_down, feesPricing_score, feesPricing_total, feesPricing_up, feesPricing_down, digitalExperience_score, digitalExperience_total, digitalExperience_up, digitalExperience_down, securityTrust_score, securityTrust_total, securityTrust_up, securityTrust_down, accountFeatures_score, accountFeatures_total, accountFeatures_up, accountFeatures_down, branchAtmAccess_score, branchAtmAccess_total, branchAtmAccess_up, branchAtmAccess_down, internationalBanking_score, internationalBanking_total, internationalBanking_up, internationalBanking_down, businessBanking_score, businessBanking_total, businessBanking_up, businessBanking_down, processingSpeed_score, processingSpeed_total, processingSpeed_up, processingSpeed_down, transparency_score, transparency_total, transparency_up, transparency_down, innovation_score, innovation_total, innovation_up, innovation_down, investmentServices_score, investmentServices_total, investmentServices_up, investmentServices_down, lending_score, lending_total, lending_up, lending_down)\nsortOrder (optional) - (asc, desc)\nQuery params\nsearch (optional)\ninclude (optional) - (scores, country, meta)\ncountryId (optional)\ncountryCode (optional)\nExample\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/banks?limit=10&search=ethical&sortBy=overall_score&sortOrder=desc&include=scores,country&countryCode=US\" | jq .  \n\n/banks/by-hostname\n\nThis endpoint allows you to retrieve banks by hostname. It will return up to one bank per country that matches the provided hostname. The hostname is normalized (www. prefix removed if present) and matched against both the primary hostname and alternative hostnames.\nQuery params\n\nhostname (required)\ninclude (optional) - (scores, country)\npageTitle (optional)\nExample\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/banks/by-hostname?hostname=fidelity.com&include=scores,country\" | jq .  \n\n/banks/{id}\n\nThis endpoint allows you to retrieve a specific bank by providing the bank ID. You can include related data like scores and country information in the response.\nQuery params\n\ninclude (optional) - (scores, country)\nPath params\nid (required)\nExample\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/banks/6jkxE4N8gHXgDPK?include=scores,country\" | jq .  \n\n2. /bank-votes\n\nThis endpoint allows you to retrieve a paginated list of bank votes. You can filter by bank ID, category, country, vote type (upvote or downvote), and other parameters.\nCommon params\n\nlimit (optional) - (1–100, default 10)\nstarting_after (optional)\nending_before (optional)\nsortBy (optional) - (createdAt)\nsortOrder (optional) - (asc, desc)\nQuery params\nbankId (optional)\ncategories (optional)\nisUp (optional)\ncountryCode (optional)\ninclude (optional) - (bank, country)\nExample\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/bank-votes?limit=10&bankId=bank_abc&isUp=true&countryCode=US&sortBy=createdAt&sortOrder=desc&include=scores,country\" | jq .  \n\n3. /countries\n\nThis endpoint allows you to retrieve a paginated list of all countries. By default, a maximum of ten countries are shown per page. You can search countries by name or 2-letter code, sort them by various fields, and include related data like scores.\nCommon params\n\nlimit (optional) - (1–100, default 10)\nstarting_after (optional)\nending_before (optional)\nsortBy (optional) - (name, code, rank, banksCount, storiesCount, overall_score, overall_total, overall_up, overall_down, cryptoFriendly_score, cryptoFriendly_total, cryptoFriendly_up, cryptoFriendly_down, customerService_score, customerService_total, customerService_up, customerService_down, feesPricing_score, feesPricing_total, feesPricing_up, feesPricing_down, digitalExperience_score, digitalExperience_total, digitalExperience_up, digitalExperience_down, securityTrust_score, securityTrust_total, securityTrust_up, securityTrust_down, accountFeatures_score, accountFeatures_total, accountFeatures_up, accountFeatures_down, branchAtmAccess_score, branchAtmAccess_total, branchAtmAccess_up, branchAtmAccess_down, internationalBanking_score, internationalBanking_total, internationalBanking_up, internationalBanking_down, businessBanking_score, businessBanking_total, businessBanking_up, businessBanking_down, processingSpeed_score, processingSpeed_total, processingSpeed_up, processingSpeed_down, transparency_score, transparency_total, transparency_up, transparency_down, innovation_score, innovation_total, innovation_up, innovation_down, investmentServices_score, investmentServices_total, investmentServices_up, investmentServices_down, lending_score, lending_total, lending_up, lending_down)\nsortOrder (optional) - (asc, desc)\nQuery params\nsearch (optional)\ninclude (optional) - (scores)\nExample\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/countries?limit=10&search=swiss&sortBy=overall_score&sortOrder=desc&include=scores\" | jq .  \n\n/countries/{code}\n\nThis endpoint allows you to retrieve a specific country by providing the 2-letter ISO country code. You can include related data like scores in the response.\nQuery params\n\ninclude (optional) - (scores)\nPath params\ncode (required)\nExample\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/countries/US?include=scores\" | jq .  \n\n4. /stories\n\nThis endpoint allows you to retrieve a paginated list of all stories. By default, a maximum of ten stories are shown per page. You can search stories by text content, filter by bank ID, sort them by various fields, and include related data like bank and country information.\nCommon params\n\nlimit (optional) - (1–100, default 10)\nstarting_after (optional)\nending_before (optional)\nsortBy (optional) - (createdAt, thumbsUpCount)\nsortOrder (optional) - (asc, desc)\nQuery params\nsearch (optional)\ninclude (optional) - (bank, country)\ncountryCode (optional)\nbankId (optional)\ntags (optional)\nExample\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/stories?limit=10&search=swiss&sortBy=createdAt&sortOrder=desc&include=bank,country&countryCode=US&bankId=bank_abc\" | jq .  \n\n/stories/{id}\n\nThis endpoint allows you to retrieve a specific story by providing the story ID. You can include related data like bank and country information in the response.\nQuery params\n\ninclude (optional) - (bank, country)\nPath params\nid (required)\nExample\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/stories/8HsY5nBc7jAqM4u?include=bank,country\" | jq .  \n\n5. /world\n\nThis endpoint allows you to retrieve global overview data that aggregates banks votes, stories and other data across all banks in all countries. You can include related data like scores in the response.\nQuery params\n\ninclude (optional) - (scores)\nExample\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/world?include=scores\" | jq .  \n\n6. /search\n\nSearch across banks, countries, and stories. You can specify which entities to search using the include parameter. If no include value is provided, all entities will be searched.\nCommon params\n\nlimit (optional) - (1–50, default 10)\nQuery params\nq (required)\ninclude (optional) - (banks, countries, stories)\nExample\ncurl -s -H \"Authorization: Bearer $MOON_BANKING_API_KEY\" \\\n     \"https://api.moonbanking.com/v1/search?q=crypto+friendly+banks&include=banks,countries,stories&limit=15\" | jq .  \n\nBest Practices & Tips\n\nUse jq filters to extract useful fields, e.g.:\n\n| jq '.data[] | {name, overall_score, rank, country?.name}'\n\n\nError handling:\n\n401/403 → check or set MOON_BANKING_API_KEY\n404 → invalid ID or code\n429 → rate limit (wait and retry)\n\nPagination: Use starting_after / ending_before from previous responses.\n\nAlways summarize results helpfully (top banks, country rankings, popular stories, etc.) instead of dumping raw JSON.\n\nChain multiple exec calls for complex questions.\n\nUse this skill whenever questions or discussions involve bank information of any kind, including, but not limited to, rankings, reviews, country comparisons, customer experiences, or global banking insights."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/juanwall/moonbanking",
    "publisherUrl": "https://clawhub.ai/juanwall/moonbanking",
    "owner": "juanwall",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/moonbanking",
    "downloadUrl": "https://openagent3.xyz/downloads/moonbanking",
    "agentUrl": "https://openagent3.xyz/skills/moonbanking/agent",
    "manifestUrl": "https://openagent3.xyz/skills/moonbanking/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/moonbanking/agent.md"
  }
}