{
  "schemaVersion": "1.0",
  "item": {
    "slug": "solana-connect",
    "name": "Solana Connect",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/Seenfinity/solana-connect",
    "canonicalUrl": "https://clawhub.ai/Seenfinity/solana-connect",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/solana-connect",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=solana-connect",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md",
      "package-lock.json",
      "package.json",
      "scripts/solana.js",
      "test.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. 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/solana-connect"
    },
    "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/solana-connect",
    "agentPageUrl": "https://openagent3.xyz/skills/solana-connect/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solana-connect/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solana-connect/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": "🔗 OpenClaw Solana Connect v3.0",
        "body": "Secure toolkit for AI agents to interact with Solana blockchain"
      },
      {
        "title": "🛡️ Security Features",
        "body": "Private Key Protection - Keys never exposed to agent\nMax Limits - Configurable transaction limits\nDry-Run Mode - Simulate before sending (default)\nHuman Confirmation - Required for large transactions\nTestnet Default - Safe by default"
      },
      {
        "title": "What Works",
        "body": "FunctionStatusDescriptiongenerateWallet()✅ WorksGenerate wallet addressesconnectWallet()✅ WorksValidate wallet addressesgetBalance()✅ WorksRead SOL/token balancesgetTransactions()✅ WorksRead transaction historygetTokenAccounts()✅ WorksRead token holdingssendSol()✅ WorksSend SOL (with security)"
      },
      {
        "title": "Installation",
        "body": "clawhub install solana-connect"
      },
      {
        "title": "Environment Variables",
        "body": "SOLANA_RPC_URL - RPC endpoint (default: testnet)\nMAX_SOL_PER_TX - Max SOL per transaction (default: 10)\nMAX_TOKENS_PER_TX - Max tokens per transaction (default: 10000)\nHUMAN_CONFIRMATION_THRESHOLD - SOL amount requiring human confirmation (default: 1)"
      },
      {
        "title": "Usage",
        "body": "const { generateWallet, getBalance, sendSol, getConfig } = require('./scripts/solana.js');\n\n// Generate wallet (address only - private key protected)\nconst wallet = generateWallet();\nconsole.log('Address:', wallet.address);\n\n// Check balance\nconst balance = await getBalance(wallet.address);\n\n// Send SOL (DRY-RUN by default - simulation only)\nconst result = await sendSol(privateKey, toAddress, 0.5, { dryRun: true });\nconsole.log('Simulation:', result);\n\n// Send real transaction\nconst tx = await sendSol(privateKey, toAddress, 0.5, { dryRun: false, skipConfirmation: true });\nconsole.log('Signature:', tx.signature);"
      },
      {
        "title": "Security Options",
        "body": "// Dry-run (simulation) - safe, doesn't send\nawait sendSol(key, to, amount, { dryRun: true });\n\n// Real transaction - requires explicit flag\nawait sendSol(key, to, amount, { dryRun: false });\n\n// Skip human confirmation (for automated agents)\nawait sendSol(key, to, amount, { dryRun: false, skipConfirmation: true });\n\nSecurity: Never hardcode private keys. Use environment variables."
      }
    ],
    "body": "🔗 OpenClaw Solana Connect v3.0\n\nSecure toolkit for AI agents to interact with Solana blockchain\n\n🛡️ Security Features\nPrivate Key Protection - Keys never exposed to agent\nMax Limits - Configurable transaction limits\nDry-Run Mode - Simulate before sending (default)\nHuman Confirmation - Required for large transactions\nTestnet Default - Safe by default\nWhat Works\nFunction\tStatus\tDescription\ngenerateWallet()\t✅ Works\tGenerate wallet addresses\nconnectWallet()\t✅ Works\tValidate wallet addresses\ngetBalance()\t✅ Works\tRead SOL/token balances\ngetTransactions()\t✅ Works\tRead transaction history\ngetTokenAccounts()\t✅ Works\tRead token holdings\nsendSol()\t✅ Works\tSend SOL (with security)\nInstallation\nclawhub install solana-connect\n\nEnvironment Variables\nSOLANA_RPC_URL - RPC endpoint (default: testnet)\nMAX_SOL_PER_TX - Max SOL per transaction (default: 10)\nMAX_TOKENS_PER_TX - Max tokens per transaction (default: 10000)\nHUMAN_CONFIRMATION_THRESHOLD - SOL amount requiring human confirmation (default: 1)\nUsage\nconst { generateWallet, getBalance, sendSol, getConfig } = require('./scripts/solana.js');\n\n// Generate wallet (address only - private key protected)\nconst wallet = generateWallet();\nconsole.log('Address:', wallet.address);\n\n// Check balance\nconst balance = await getBalance(wallet.address);\n\n// Send SOL (DRY-RUN by default - simulation only)\nconst result = await sendSol(privateKey, toAddress, 0.5, { dryRun: true });\nconsole.log('Simulation:', result);\n\n// Send real transaction\nconst tx = await sendSol(privateKey, toAddress, 0.5, { dryRun: false, skipConfirmation: true });\nconsole.log('Signature:', tx.signature);\n\nSecurity Options\n// Dry-run (simulation) - safe, doesn't send\nawait sendSol(key, to, amount, { dryRun: true });\n\n// Real transaction - requires explicit flag\nawait sendSol(key, to, amount, { dryRun: false });\n\n// Skip human confirmation (for automated agents)\nawait sendSol(key, to, amount, { dryRun: false, skipConfirmation: true });\n\n\nSecurity: Never hardcode private keys. Use environment variables."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/Seenfinity/solana-connect",
    "publisherUrl": "https://clawhub.ai/Seenfinity/solana-connect",
    "owner": "Seenfinity",
    "version": "3.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/solana-connect",
    "downloadUrl": "https://openagent3.xyz/downloads/solana-connect",
    "agentUrl": "https://openagent3.xyz/skills/solana-connect/agent",
    "manifestUrl": "https://openagent3.xyz/skills/solana-connect/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/solana-connect/agent.md"
  }
}