# Send Sui Move 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-move",
    "name": "Sui Move",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/EasonC13/sui-move",
    "canonicalUrl": "https://clawhub.ai/EasonC13/sui-move",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/sui-move",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sui-move",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "_meta.json",
      "package.json",
      "setup.sh"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "sui-move",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-09T13:54:57.685Z",
      "expiresAt": "2026-05-16T13:54:57.685Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sui-move",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=sui-move",
        "contentDisposition": "attachment; filename=\"sui-move-1.1.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "sui-move"
      },
      "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-move"
    },
    "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-move",
    "downloadUrl": "https://openagent3.xyz/downloads/sui-move",
    "agentUrl": "https://openagent3.xyz/skills/sui-move/agent",
    "manifestUrl": "https://openagent3.xyz/skills/sui-move/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/sui-move/agent.md"
  }
}
```
## Documentation

### Sui Move Development

Comprehensive knowledge base for Sui blockchain and Move smart contract development.

GitHub: https://github.com/EasonC13-agent/sui-skills/tree/main/sui-move

### Setup References

Clone the official documentation:

# Create skill directory
mkdir -p {baseDir}/references && cd {baseDir}/references

# Clone Move Book (The Move Language Bible)
git clone --depth 1 https://github.com/MystenLabs/move-book.git

# Clone Sui docs (sparse checkout)
git clone --depth 1 --filter=blob:none --sparse https://github.com/MystenLabs/sui.git
cd sui && git sparse-checkout set docs

# Clone Awesome Move (curated examples and resources)
# Note: Some code examples may be outdated
git clone --depth 1 https://github.com/MystenLabs/awesome-move.git

### Awesome Move (references/awesome-move/)

A curated list of Move resources, including:

Example projects and code snippets
Libraries and frameworks
Tools and utilities
Learning resources

⚠️ Note: Some code examples in awesome-move may be outdated as the Move language and Sui platform evolve. Always verify against the latest Move Book and Sui documentation.

### Move Book (references/move-book/book/)

DirectoryContentyour-first-move/Hello World, Hello Sui tutorialsmove-basics/Variables, functions, structs, abilities, genericsconcepts/Packages, manifest, addresses, dependenciesstorage/Object storage, UID, transfer functionsobject/Object model, ownership, dynamic fieldsprogrammability/Events, witness, publisher, displaymove-advanced/BCS, PTB, cryptographyguides/Testing, debugging, upgrades, BCSappendix/Glossary, reserved addresses

### Sui Docs (references/sui/docs/content/)

Concepts, guides, standards, references

### Quick Search

# Search Move Book for a topic
rg -i "keyword" {baseDir}/references/move-book/book/ --type md

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

# Find all files about a topic
find {baseDir}/references -name "*.md" | xargs grep -l "topic"

### Move Language Basics

Abilities - Type capabilities:

copy - Can be copied
drop - Can be dropped (destroyed)
store - Can be stored in objects
key - Can be used as a key in global storage (objects)

public struct MyStruct has key, store {
    id: UID,
    value: u64
}

Object Model:

Every object has a unique UID
Objects can be owned (address), shared, or immutable
Transfer functions: transfer::transfer, transfer::share_object, transfer::freeze_object

### Common Patterns

Create and Transfer Object:

public fun create(ctx: &mut TxContext) {
    let obj = MyObject {
        id: object::new(ctx),
        value: 0
    };
    transfer::transfer(obj, tx_context::sender(ctx));
}

Shared Object:

public fun create_shared(ctx: &mut TxContext) {
    let obj = SharedObject {
        id: object::new(ctx),
        counter: 0
    };
    transfer::share_object(obj);
}

Entry Functions:

public entry fun do_something(obj: &mut MyObject, value: u64) {
    obj.value = value;
}

### CLI Commands

# Create new project
sui move new my_project

# Build
sui move build

# Test
sui move test

# Publish
sui client publish --gas-budget 100000000

# Call function
sui client call --package <PACKAGE_ID> --module <MODULE> --function <FUNCTION> --args <ARGS>

# Get object
sui client object <OBJECT_ID>

### Workflow

When answering Sui/Move questions:

Search references first:
rg -i "topic" {baseDir}/references/move-book/book/ -l



Read relevant files:
cat {baseDir}/references/move-book/book/<path>/<file>.md



Provide code examples from the references


Link to official docs when helpful:

Move Book: https://move-book.com
Sui Docs: https://docs.sui.io

### Topics Index

TopicLocationHello Worldmove-book/book/your-first-move/hello-world.mdHello Suimove-book/book/your-first-move/hello-sui.mdPrimitivesmove-book/book/move-basics/primitive-types.mdStructsmove-book/book/move-basics/struct.mdAbilitiesmove-book/book/move-basics/abilities-introduction.mdGenericsmove-book/book/move-basics/generics.mdObject Modelmove-book/book/object/Storagemove-book/book/storage/Eventsmove-book/book/programmability/events.mdTestingmove-book/book/guides/testing.mdUpgradesmove-book/book/guides/upgradeability.mdPTBmove-book/book/move-advanced/ptb/BCSmove-book/book/move-advanced/bcs.md

### Related Skills

This skill is part of the Sui development skill suite:

SkillDescriptionsui-decompileFetch and read on-chain contract source codesui-moveWrite and deploy Move smart contractssui-coverageAnalyze test coverage with security analysissui-agent-walletBuild and test DApps frontend

Workflow:

sui-decompile → sui-move → sui-coverage → sui-agent-wallet
    Study        Write      Test & Audit   Build DApps

All skills: https://github.com/EasonC13-agent/sui-skills

### Notes

Move 2024 edition introduces new features (enums, method syntax, etc.)
Sui uses a unique object-centric model different from other blockchains
Gas is paid in SUI tokens
Testnet/Devnet available for development
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: EasonC13
- Version: 1.1.1
## 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-09T13:54:57.685Z
- Expires at: 2026-05-16T13:54:57.685Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/sui-move)
- [Send to Agent page](https://openagent3.xyz/skills/sui-move/agent)
- [JSON manifest](https://openagent3.xyz/skills/sui-move/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/sui-move/agent.md)
- [Download page](https://openagent3.xyz/downloads/sui-move)