{
  "schemaVersion": "1.0",
  "item": {
    "slug": "sui",
    "name": "Sui",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/EasonC13/sui",
    "canonicalUrl": "https://clawhub.ai/EasonC13/sui",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/sui",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sui",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "package.json",
      "setup.sh",
      "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/sui"
    },
    "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/sui",
    "agentPageUrl": "https://openagent3.xyz/skills/sui/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sui/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sui/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": "Sui Knowledge Base",
        "body": "Expert knowledge about Sui blockchain ecosystem. Use this skill to answer questions about Sui concepts, architecture, tokenomics, and ecosystem."
      },
      {
        "title": "When to Use This Skill",
        "body": "Activate when users ask about:\n\nWhat is Sui? How does it work?\nSui vs Ethereum/Solana/other chains\nSUI token, tokenomics, staking\nValidators, consensus, transactions\nSui ecosystem, projects, wallets\nObject model, ownership concepts\nPerformance, TPS, finality\n\nFor Move programming questions → use sui-move skill instead"
      },
      {
        "title": "Setup References",
        "body": "cd {baseDir}\nchmod +x setup.sh && ./setup.sh\n\nThis clones:\n\nSui official documentation\nSui whitepaper and technical docs"
      },
      {
        "title": "Quick Search",
        "body": "# Search Sui docs\nrg -i \"keyword\" {baseDir}/references/sui-docs/ --type md -C 2\n\n# Search for specific concepts\nrg -i \"object|ownership|transfer\" {baseDir}/references/ --type md"
      },
      {
        "title": "What is Sui?",
        "body": "Sui is a Layer 1 blockchain designed for high throughput and low latency. Key innovations:\n\nObject-Centric Model: Unlike account-based chains, Sui treats everything as objects with unique IDs\nParallel Execution: Independent transactions execute in parallel without global ordering\nMove Language: Safe, resource-oriented smart contract language\nMysticeti Consensus: Fast finality (~390ms) for shared objects"
      },
      {
        "title": "Object Model",
        "body": "┌─────────────────────────────────────────┐\n│              Object Types               │\n├─────────────────────────────────────────┤\n│ Owned Objects    → Single owner address │\n│ Shared Objects   → Multiple can access  │\n│ Immutable Objects→ Frozen, read-only    │\n│ Wrapped Objects  → Nested in another    │\n└─────────────────────────────────────────┘\n\nEvery object has a unique ObjectID (32 bytes)\nObjects have version that increments on mutation\nOwned object transactions don't need consensus (fast path)"
      },
      {
        "title": "Transaction Types",
        "body": "TypeConsensusSpeedUse CaseOwned ObjectNo (fast path)~200msTransfers, simple opsShared ObjectYes (Mysticeti)~390msDEX, auctions, games"
      },
      {
        "title": "SUI Token",
        "body": "Ticker: SUI\nTotal Supply: 10 billion SUI\nUses: Gas fees, staking, governance\nSmallest Unit: MIST (1 SUI = 10^9 MIST)"
      },
      {
        "title": "Gas Model",
        "body": "Gas price in MIST per computation unit\nStorage rebates: Get gas back when deleting objects\nSponsored transactions: Third party pays gas"
      },
      {
        "title": "Validators & Staking",
        "body": "Delegated Proof of Stake (DPoS)\n~100+ active validators\nStake SUI to validators to earn rewards\nEpoch: ~24 hours"
      },
      {
        "title": "Consensus: Mysticeti",
        "body": "DAG-based consensus protocol\nSub-second finality for shared objects\nReplaces Narwhal/Bullshark (used previously)"
      },
      {
        "title": "Sui vs Other Chains",
        "body": "FeatureSuiEthereumSolanaModelObject-centricAccount-basedAccount-basedLanguageMoveSolidityRustTPS100k+~15~65kFinality<1s~12min~400msParallel ExecYes (objects)LimitedYes"
      },
      {
        "title": "Wallets",
        "body": "Sui Wallet (official)\nSuiet\nEthos\nMartian"
      },
      {
        "title": "DEXs",
        "body": "Cetus\nTurbos\nDeepBook (order book)"
      },
      {
        "title": "NFT Marketplaces",
        "body": "BlueMove\nClutchy\nHyperspace"
      },
      {
        "title": "Developer Tools",
        "body": "Sui CLI\nSui Explorer\nMove Analyzer (VSCode)"
      },
      {
        "title": "\"Is Sui EVM compatible?\"",
        "body": "No. Sui uses Move, not EVM. However, bridges exist to transfer assets from EVM chains."
      },
      {
        "title": "\"How fast is Sui?\"",
        "body": "Owned object txs: ~200ms\nShared object txs: ~390ms\nTheoretical TPS: 100,000+"
      },
      {
        "title": "\"How do I stake SUI?\"",
        "body": "Open Sui Wallet\nGo to Staking tab\nChoose a validator\nEnter amount and confirm"
      },
      {
        "title": "\"What's the difference between Sui Move and Aptos Move?\"",
        "body": "Sui uses object-centric storage\nDifferent standard library\nSui has native object primitives\nSome syntax differences in Move 2024"
      },
      {
        "title": "Answering Workflow",
        "body": "Identify the question type:\n\nGeneral knowledge → Answer from this skill\nMove programming → Refer to sui-move skill\nSpecific API/code → Search references\n\n\n\nSearch if needed:\nrg -i \"question keywords\" {baseDir}/references/\n\n\n\nProvide clear answer with:\n\nDirect answer first\nSupporting details\nLinks to official docs if relevant"
      },
      {
        "title": "Official Resources",
        "body": "Website: https://sui.io\nDocs: https://docs.sui.io\nGitHub: https://github.com/MystenLabs/sui\nDiscord: https://discord.gg/sui\nTwitter: @SuiNetwork"
      }
    ],
    "body": "Sui Knowledge Base\n\nExpert knowledge about Sui blockchain ecosystem. Use this skill to answer questions about Sui concepts, architecture, tokenomics, and ecosystem.\n\nWhen to Use This Skill\n\nActivate when users ask about:\n\nWhat is Sui? How does it work?\nSui vs Ethereum/Solana/other chains\nSUI token, tokenomics, staking\nValidators, consensus, transactions\nSui ecosystem, projects, wallets\nObject model, ownership concepts\nPerformance, TPS, finality\n\nFor Move programming questions → use sui-move skill instead\n\nSetup References\ncd {baseDir}\nchmod +x setup.sh && ./setup.sh\n\n\nThis clones:\n\nSui official documentation\nSui whitepaper and technical docs\nQuick Search\n# Search Sui docs\nrg -i \"keyword\" {baseDir}/references/sui-docs/ --type md -C 2\n\n# Search for specific concepts\nrg -i \"object|ownership|transfer\" {baseDir}/references/ --type md\n\nCore Concepts\nWhat is Sui?\n\nSui is a Layer 1 blockchain designed for high throughput and low latency. Key innovations:\n\nObject-Centric Model: Unlike account-based chains, Sui treats everything as objects with unique IDs\nParallel Execution: Independent transactions execute in parallel without global ordering\nMove Language: Safe, resource-oriented smart contract language\nMysticeti Consensus: Fast finality (~390ms) for shared objects\nObject Model\n┌─────────────────────────────────────────┐\n│              Object Types               │\n├─────────────────────────────────────────┤\n│ Owned Objects    → Single owner address │\n│ Shared Objects   → Multiple can access  │\n│ Immutable Objects→ Frozen, read-only    │\n│ Wrapped Objects  → Nested in another    │\n└─────────────────────────────────────────┘\n\nEvery object has a unique ObjectID (32 bytes)\nObjects have version that increments on mutation\nOwned object transactions don't need consensus (fast path)\nTransaction Types\nType\tConsensus\tSpeed\tUse Case\nOwned Object\tNo (fast path)\t~200ms\tTransfers, simple ops\nShared Object\tYes (Mysticeti)\t~390ms\tDEX, auctions, games\nSUI Token\nTicker: SUI\nTotal Supply: 10 billion SUI\nUses: Gas fees, staking, governance\nSmallest Unit: MIST (1 SUI = 10^9 MIST)\nGas Model\nGas price in MIST per computation unit\nStorage rebates: Get gas back when deleting objects\nSponsored transactions: Third party pays gas\nValidators & Staking\nDelegated Proof of Stake (DPoS)\n~100+ active validators\nStake SUI to validators to earn rewards\nEpoch: ~24 hours\nConsensus: Mysticeti\nDAG-based consensus protocol\nSub-second finality for shared objects\nReplaces Narwhal/Bullshark (used previously)\nSui vs Other Chains\nFeature\tSui\tEthereum\tSolana\nModel\tObject-centric\tAccount-based\tAccount-based\nLanguage\tMove\tSolidity\tRust\nTPS\t100k+\t~15\t~65k\nFinality\t<1s\t~12min\t~400ms\nParallel Exec\tYes (objects)\tLimited\tYes\nEcosystem\nWallets\nSui Wallet (official)\nSuiet\nEthos\nMartian\nDEXs\nCetus\nTurbos\nDeepBook (order book)\nNFT Marketplaces\nBlueMove\nClutchy\nHyperspace\nDeveloper Tools\nSui CLI\nSui Explorer\nMove Analyzer (VSCode)\nCommon Questions\n\"Is Sui EVM compatible?\"\n\nNo. Sui uses Move, not EVM. However, bridges exist to transfer assets from EVM chains.\n\n\"How fast is Sui?\"\nOwned object txs: ~200ms\nShared object txs: ~390ms\nTheoretical TPS: 100,000+\n\"How do I stake SUI?\"\nOpen Sui Wallet\nGo to Staking tab\nChoose a validator\nEnter amount and confirm\n\"What's the difference between Sui Move and Aptos Move?\"\nSui uses object-centric storage\nDifferent standard library\nSui has native object primitives\nSome syntax differences in Move 2024\nAnswering Workflow\n\nIdentify the question type:\n\nGeneral knowledge → Answer from this skill\nMove programming → Refer to sui-move skill\nSpecific API/code → Search references\n\nSearch if needed:\n\nrg -i \"question keywords\" {baseDir}/references/\n\n\nProvide clear answer with:\n\nDirect answer first\nSupporting details\nLinks to official docs if relevant\nOfficial Resources\nWebsite: https://sui.io\nDocs: https://docs.sui.io\nGitHub: https://github.com/MystenLabs/sui\nDiscord: https://discord.gg/sui\nTwitter: @SuiNetwork"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/EasonC13/sui",
    "publisherUrl": "https://clawhub.ai/EasonC13/sui",
    "owner": "EasonC13",
    "version": "1.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/sui",
    "downloadUrl": "https://openagent3.xyz/downloads/sui",
    "agentUrl": "https://openagent3.xyz/skills/sui/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sui/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sui/agent.md"
  }
}