{
  "schemaVersion": "1.0",
  "item": {
    "slug": "abstract-toolkit",
    "name": "Abstract Toolkit",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Masoncags-tech/abstract-toolkit",
    "canonicalUrl": "https://clawhub.ai/Masoncags-tech/abstract-toolkit",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/abstract-toolkit",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=abstract-toolkit",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/addresses.md",
      "references/agw.md",
      "references/hardhat.config.js",
      "references/troubleshooting.md",
      "scripts/call-contract.js"
    ],
    "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-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.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/abstract-toolkit"
    },
    "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/abstract-toolkit",
    "agentPageUrl": "https://openagent3.xyz/skills/abstract-toolkit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/abstract-toolkit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/abstract-toolkit/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": "Abstract Onboard",
        "body": "Everything an agent needs to operate on Abstract."
      },
      {
        "title": "Create Abstract Global Wallet (AGW)",
        "body": "AGW is a smart contract wallet that earns XP on Abstract. Essential for agents!\n\nexport WALLET_PRIVATE_KEY=0x...\nnode scripts/create-agw.js\n\nYour EOA becomes the signer, AGW is a separate smart contract address."
      },
      {
        "title": "Check Balances",
        "body": "node scripts/check-balances.js <wallet> all"
      },
      {
        "title": "Bridge ETH to Abstract",
        "body": "export WALLET_PRIVATE_KEY=0x...\nnode scripts/relay-bridge.js --from base --amount 0.01"
      },
      {
        "title": "Deploy a Contract",
        "body": "export WALLET_PRIVATE_KEY=0x...\nnode scripts/deploy-abstract.js ./artifacts/MyContract.json \"constructor-arg\""
      },
      {
        "title": "Transfer Tokens",
        "body": "export WALLET_PRIVATE_KEY=0x...\nnode scripts/transfer.js --to 0x... --amount 0.01           # ETH\nnode scripts/transfer.js --to 0x... --amount 100 --token USDC  # Token"
      },
      {
        "title": "Swap Tokens",
        "body": "export WALLET_PRIVATE_KEY=0x...\nexport DEX_ROUTER=0x...  # Set DEX router address\nnode scripts/swap-tokens.js --from ETH --to USDC --amount 0.01"
      },
      {
        "title": "Call Any Contract",
        "body": "# Read\nnode scripts/call-contract.js --address 0x... --abi ./abi.json --function balanceOf --args 0x1234\n\n# Write\nexport WALLET_PRIVATE_KEY=0x...\nnode scripts/call-contract.js --address 0x... --abi ./abi.json --function transfer --args 0x1234,100 --write"
      },
      {
        "title": "Key Information",
        "body": "ItemValueChain ID2741RPChttps://api.mainnet.abs.xyzExplorerhttps://abscan.orgBridgehttps://relay.link/bridge/abstractUSDC0x84A71ccD554Cc1b02749b35d22F684CC8ec987e1WETH0x3439153EB7AF838Ad19d56E1571FBD09333C2809"
      },
      {
        "title": "Scripts",
        "body": "ScriptPurposecreate-agw.jsCreate Abstract Global Wallet (earns XP!)check-balances.jsCheck ETH and token balancesrelay-bridge.jsBridge ETH from other chainsdeploy-abstract.jsDeploy contracts to Abstracttransfer.jsSend ETH or tokensswap-tokens.jsTrade tokens via DEXcall-contract.jsCall any contract function"
      },
      {
        "title": "References",
        "body": "FileContentsagw.mdAbstract Global Wallet guide (XP, activation)hardhat.config.jsWorking Hardhat config for Abstractaddresses.mdKey contract addressestroubleshooting.mdCommon errors and fixes"
      },
      {
        "title": "Common Issues",
        "body": "Gas estimation fails → Use Hardhat, not foundry-zksync\nCompiler errors → Use Solidity 0.8.x with zksolc\nTX stuck → Check gas price, verify on abscan.org\n\nSee references/troubleshooting.md for detailed solutions."
      },
      {
        "title": "Dependencies",
        "body": "# Core dependencies\nnpm install ethers zksync-ethers viem\n\n# For contract deployment\nnpm install @matterlabs/hardhat-zksync\n\n# For AGW (Abstract Global Wallet)\nnpm install @abstract-foundation/agw-client"
      }
    ],
    "body": "Abstract Onboard\n\nEverything an agent needs to operate on Abstract.\n\nQuick Start\nCreate Abstract Global Wallet (AGW)\n\nAGW is a smart contract wallet that earns XP on Abstract. Essential for agents!\n\nexport WALLET_PRIVATE_KEY=0x...\nnode scripts/create-agw.js\n\n\nYour EOA becomes the signer, AGW is a separate smart contract address.\n\nCheck Balances\nnode scripts/check-balances.js <wallet> all\n\nBridge ETH to Abstract\nexport WALLET_PRIVATE_KEY=0x...\nnode scripts/relay-bridge.js --from base --amount 0.01\n\nDeploy a Contract\nexport WALLET_PRIVATE_KEY=0x...\nnode scripts/deploy-abstract.js ./artifacts/MyContract.json \"constructor-arg\"\n\nTransfer Tokens\nexport WALLET_PRIVATE_KEY=0x...\nnode scripts/transfer.js --to 0x... --amount 0.01           # ETH\nnode scripts/transfer.js --to 0x... --amount 100 --token USDC  # Token\n\nSwap Tokens\nexport WALLET_PRIVATE_KEY=0x...\nexport DEX_ROUTER=0x...  # Set DEX router address\nnode scripts/swap-tokens.js --from ETH --to USDC --amount 0.01\n\nCall Any Contract\n# Read\nnode scripts/call-contract.js --address 0x... --abi ./abi.json --function balanceOf --args 0x1234\n\n# Write\nexport WALLET_PRIVATE_KEY=0x...\nnode scripts/call-contract.js --address 0x... --abi ./abi.json --function transfer --args 0x1234,100 --write\n\nKey Information\nItem\tValue\nChain ID\t2741\nRPC\thttps://api.mainnet.abs.xyz\nExplorer\thttps://abscan.org\nBridge\thttps://relay.link/bridge/abstract\nUSDC\t0x84A71ccD554Cc1b02749b35d22F684CC8ec987e1\nWETH\t0x3439153EB7AF838Ad19d56E1571FBD09333C2809\nScripts\nScript\tPurpose\ncreate-agw.js\tCreate Abstract Global Wallet (earns XP!)\ncheck-balances.js\tCheck ETH and token balances\nrelay-bridge.js\tBridge ETH from other chains\ndeploy-abstract.js\tDeploy contracts to Abstract\ntransfer.js\tSend ETH or tokens\nswap-tokens.js\tTrade tokens via DEX\ncall-contract.js\tCall any contract function\nReferences\nFile\tContents\nagw.md\tAbstract Global Wallet guide (XP, activation)\nhardhat.config.js\tWorking Hardhat config for Abstract\naddresses.md\tKey contract addresses\ntroubleshooting.md\tCommon errors and fixes\nCommon Issues\nGas estimation fails → Use Hardhat, not foundry-zksync\nCompiler errors → Use Solidity 0.8.x with zksolc\nTX stuck → Check gas price, verify on abscan.org\n\nSee references/troubleshooting.md for detailed solutions.\n\nDependencies\n# Core dependencies\nnpm install ethers zksync-ethers viem\n\n# For contract deployment\nnpm install @matterlabs/hardhat-zksync\n\n# For AGW (Abstract Global Wallet)\nnpm install @abstract-foundation/agw-client"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Masoncags-tech/abstract-toolkit",
    "publisherUrl": "https://clawhub.ai/Masoncags-tech/abstract-toolkit",
    "owner": "Masoncags-tech",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/abstract-toolkit",
    "downloadUrl": "https://openagent3.xyz/downloads/abstract-toolkit",
    "agentUrl": "https://openagent3.xyz/skills/abstract-toolkit/agent",
    "manifestUrl": "https://openagent3.xyz/skills/abstract-toolkit/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/abstract-toolkit/agent.md"
  }
}