{
  "schemaVersion": "1.0",
  "item": {
    "slug": "near-batch-sender",
    "name": "Near Batch Sender",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/shaiss/near-batch-sender",
    "canonicalUrl": "https://clawhub.ai/shaiss/near-batch-sender",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/near-batch-sender",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=near-batch-sender",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "package.json",
      "README.md",
      "scripts/batch.js",
      "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/near-batch-sender"
    },
    "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/near-batch-sender",
    "agentPageUrl": "https://openagent3.xyz/skills/near-batch-sender/agent",
    "manifestUrl": "https://openagent3.xyz/skills/near-batch-sender/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/near-batch-sender/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": "NEAR Batch Sender Skill",
        "body": "Batch operations for NEAR sends, NFT transfers, and claims with cost estimation."
      },
      {
        "title": "Description",
        "body": "This skill provides batch operations for sending NEAR tokens, transferring NFTs, and claiming rewards. Includes cost estimation before execution."
      },
      {
        "title": "Features",
        "body": "Batch send NEAR to multiple addresses\nBatch transfer NFTs\nBatch claim operations\nCost estimation before execution\nProgress tracking for batch operations"
      },
      {
        "title": "near-batch send <sender_account> <file.json>",
        "body": "Batch send NEAR to multiple recipients.\n\nJSON format:\n\n{\n  \"recipients\": [\n    {\"account\": \"account1.near\", \"amount\": \"1.5\"},\n    {\"account\": \"account2.near\", \"amount\": \"0.5\"}\n  ]\n}"
      },
      {
        "title": "near-batch nft <sender_account> <file.json>",
        "body": "Batch transfer NFTs.\n\nJSON format:\n\n{\n  \"transfers\": [\n    {\"token_id\": \"123\", \"receiver\": \"account1.near\", \"contract\": \"nft.near\"},\n    {\"token_id\": \"456\", \"receiver\": \"account2.near\", \"contract\": \"nft.near\"}\n  ]\n}"
      },
      {
        "title": "near-batch estimate <sender_account> <file.json> [type]",
        "body": "Estimate gas costs for a batch operation.\n\nParameters:\n\ntype - Operation type: send, nft, claim (default: send)"
      },
      {
        "title": "near-batch claim <file.json>",
        "body": "Batch claim rewards/airdrops."
      },
      {
        "title": "References",
        "body": "NEAR CLI: https://docs.near.org/tools/near-cli\nNEAR Batch Actions: https://docs.near.org/api/rpc/transactions/batch-actions"
      }
    ],
    "body": "NEAR Batch Sender Skill\n\nBatch operations for NEAR sends, NFT transfers, and claims with cost estimation.\n\nDescription\n\nThis skill provides batch operations for sending NEAR tokens, transferring NFTs, and claiming rewards. Includes cost estimation before execution.\n\nFeatures\nBatch send NEAR to multiple addresses\nBatch transfer NFTs\nBatch claim operations\nCost estimation before execution\nProgress tracking for batch operations\nCommands\nnear-batch send <sender_account> <file.json>\n\nBatch send NEAR to multiple recipients.\n\nJSON format:\n\n{\n  \"recipients\": [\n    {\"account\": \"account1.near\", \"amount\": \"1.5\"},\n    {\"account\": \"account2.near\", \"amount\": \"0.5\"}\n  ]\n}\n\nnear-batch nft <sender_account> <file.json>\n\nBatch transfer NFTs.\n\nJSON format:\n\n{\n  \"transfers\": [\n    {\"token_id\": \"123\", \"receiver\": \"account1.near\", \"contract\": \"nft.near\"},\n    {\"token_id\": \"456\", \"receiver\": \"account2.near\", \"contract\": \"nft.near\"}\n  ]\n}\n\nnear-batch estimate <sender_account> <file.json> [type]\n\nEstimate gas costs for a batch operation.\n\nParameters:\n\ntype - Operation type: send, nft, claim (default: send)\nnear-batch claim <file.json>\n\nBatch claim rewards/airdrops.\n\nReferences\nNEAR CLI: https://docs.near.org/tools/near-cli\nNEAR Batch Actions: https://docs.near.org/api/rpc/transactions/batch-actions"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/shaiss/near-batch-sender",
    "publisherUrl": "https://clawhub.ai/shaiss/near-batch-sender",
    "owner": "shaiss",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/near-batch-sender",
    "downloadUrl": "https://openagent3.xyz/downloads/near-batch-sender",
    "agentUrl": "https://openagent3.xyz/skills/near-batch-sender/agent",
    "manifestUrl": "https://openagent3.xyz/skills/near-batch-sender/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/near-batch-sender/agent.md"
  }
}