# Send Sui to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/sui",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sui",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "package.json",
      "setup.sh",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "sui",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-03T22:48:20.791Z",
      "expiresAt": "2026-05-10T22:48:20.791Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sui",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sui",
        "contentDisposition": "attachment; filename=\"sui-1.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "sui"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Sui Knowledge Base

Expert knowledge about Sui blockchain ecosystem. Use this skill to answer questions about Sui concepts, architecture, tokenomics, and ecosystem.

### When to Use This Skill

Activate when users ask about:

What is Sui? How does it work?
Sui vs Ethereum/Solana/other chains
SUI token, tokenomics, staking
Validators, consensus, transactions
Sui ecosystem, projects, wallets
Object model, ownership concepts
Performance, TPS, finality

For Move programming questions → use sui-move skill instead

### Setup References

cd {baseDir}
chmod +x setup.sh && ./setup.sh

This clones:

Sui official documentation
Sui whitepaper and technical docs

### Quick Search

# Search Sui docs
rg -i "keyword" {baseDir}/references/sui-docs/ --type md -C 2

# Search for specific concepts
rg -i "object|ownership|transfer" {baseDir}/references/ --type md

### What is Sui?

Sui is a Layer 1 blockchain designed for high throughput and low latency. Key innovations:

Object-Centric Model: Unlike account-based chains, Sui treats everything as objects with unique IDs
Parallel Execution: Independent transactions execute in parallel without global ordering
Move Language: Safe, resource-oriented smart contract language
Mysticeti Consensus: Fast finality (~390ms) for shared objects

### Object Model

┌─────────────────────────────────────────┐
│              Object Types               │
├─────────────────────────────────────────┤
│ Owned Objects    → Single owner address │
│ Shared Objects   → Multiple can access  │
│ Immutable Objects→ Frozen, read-only    │
│ Wrapped Objects  → Nested in another    │
└─────────────────────────────────────────┘

Every object has a unique ObjectID (32 bytes)
Objects have version that increments on mutation
Owned object transactions don't need consensus (fast path)

### Transaction Types

TypeConsensusSpeedUse CaseOwned ObjectNo (fast path)~200msTransfers, simple opsShared ObjectYes (Mysticeti)~390msDEX, auctions, games

### SUI Token

Ticker: SUI
Total Supply: 10 billion SUI
Uses: Gas fees, staking, governance
Smallest Unit: MIST (1 SUI = 10^9 MIST)

### Gas Model

Gas price in MIST per computation unit
Storage rebates: Get gas back when deleting objects
Sponsored transactions: Third party pays gas

### Validators & Staking

Delegated Proof of Stake (DPoS)
~100+ active validators
Stake SUI to validators to earn rewards
Epoch: ~24 hours

### Consensus: Mysticeti

DAG-based consensus protocol
Sub-second finality for shared objects
Replaces Narwhal/Bullshark (used previously)

### Sui vs Other Chains

FeatureSuiEthereumSolanaModelObject-centricAccount-basedAccount-basedLanguageMoveSolidityRustTPS100k+~15~65kFinality<1s~12min~400msParallel ExecYes (objects)LimitedYes

### Wallets

Sui Wallet (official)
Suiet
Ethos
Martian

### DEXs

Cetus
Turbos
DeepBook (order book)

### NFT Marketplaces

BlueMove
Clutchy
Hyperspace

### Developer Tools

Sui CLI
Sui Explorer
Move Analyzer (VSCode)

### "Is Sui EVM compatible?"

No. Sui uses Move, not EVM. However, bridges exist to transfer assets from EVM chains.

### "How fast is Sui?"

Owned object txs: ~200ms
Shared object txs: ~390ms
Theoretical TPS: 100,000+

### "How do I stake SUI?"

Open Sui Wallet
Go to Staking tab
Choose a validator
Enter amount and confirm

### "What's the difference between Sui Move and Aptos Move?"

Sui uses object-centric storage
Different standard library
Sui has native object primitives
Some syntax differences in Move 2024

### Answering Workflow

Identify the question type:

General knowledge → Answer from this skill
Move programming → Refer to sui-move skill
Specific API/code → Search references



Search if needed:
rg -i "question keywords" {baseDir}/references/



Provide clear answer with:

Direct answer first
Supporting details
Links to official docs if relevant

### Official Resources

Website: https://sui.io
Docs: https://docs.sui.io
GitHub: https://github.com/MystenLabs/sui
Discord: https://discord.gg/sui
Twitter: @SuiNetwork
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: EasonC13
- Version: 1.1.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-03T22:48:20.791Z
- Expires at: 2026-05-10T22:48:20.791Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/sui)
- [Send to Agent page](https://openagent3.xyz/skills/sui/agent)
- [JSON manifest](https://openagent3.xyz/skills/sui/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/sui/agent.md)
- [Download page](https://openagent3.xyz/downloads/sui)