Sui Move Development

Sui Move Development is a skill for Claude Code, Codex from 0x-j/sui-stack-claude-code-plugin. It costs 90 tokens per session (2,984 once invoked), scanned A, original, MIT.

A development guide for writing smart contracts in Move for Sui, a blockchain platform. It covers Move code structure, Sui data objects, reusable types, tests, and deployment.

In plain words
What is it for?
Use it to write and test Move modules, work with Sui objects and type properties, define asset-transfer rules, and deploy Move packages.
Why use it?
It explains the language and Sui-specific rules developers need when building programs that manage blockchain assets and transactions.

Skill for Claude CodeCodex

Part of the sui-stack-dev plugin — 6 skills, 3 commands, 2 agents shipped together

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add skills/0x-j/sui-stack-claude-code-plugin/sui-move-development
Any agent
npx skills add 0x-j/sui-stack-claude-code-plugin --skill sui-move-development
Clone the repo
git clone --depth 1 https://github.com/0x-j/sui-stack-claude-code-plugin

Made for: Claude Code, Codex.

Or install sui-stack-dev, the plugin that ships this one along with the rest of its 6 skills, 3 commands, 2 agents.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for Sui Move Development

README.md
[![agentmods](https://agentmods.dev/badge/skills/0x-j/sui-stack-claude-code-plugin/sui-move-development.svg)](https://agentmods.dev/skills/0x-j/sui-stack-claude-code-plugin/sui-move-development)
Your own site
<a href="https://agentmods.dev/skills/0x-j/sui-stack-claude-code-plugin/sui-move-development"><img src="https://agentmods.dev/badge/skills/0x-j/sui-stack-claude-code-plugin/sui-move-development.svg" alt="Measured on agentmods" height="20"></a>
Per session 90 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 2,984 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5 $0.00090 $0.02984
Opus 5 $0.00045 $0.01492
Sonnet 5 $0.00018 $0.00597
Haiku 4.5 $0.00009 $0.00298

Measured 3d ago against content hash 4dc9650fdd0b, method: parsed. Prices are Anthropic first-party input rates as of 2026-08-30, from the pricing page.

Security

Grade A, and why

Sui Move Development scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/sui-move-development/SKILL.md · 485 lines

How it starts

The opening of the file, as written. The whole thing — 485 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Sui Move Development

Provides expert guidance for developing smart contracts on Sui using the Move programming language. This skill covers Move syntax, Sui-specific patterns, module structure, testing, and deployment workflows.

Overview

Sui Move is a variant of the Move programming language designed specifically for the Sui blockchain. It emphasizes safety, composability, and expressiveness for defining digital assets and their behavior.

Key concepts:

  • Objects - The fundamental unit of storage on Sui, owned by addresses or shared
  • Abilities - Type properties (copy, drop, store, key) that control how types can be used
  • Generics - Parameterized types for reusable, type-safe code
  • One-time witnesses - Pattern for creating unique types for initialization
  • Transfer policies - Programmable rules for asset transfers

Module Structure

A typical Sui Move package follows this structure:

my-package/
├── Move.toml           # Package manifest
├── sources/            # Move source files
│   ├── my_module.move
│   └── helpers.move
├── tests/              # Test files
│   └── my_module_tests.move
└── examples/           # Example transactions (optional)

Move.toml Configuration

The package manifest defines dependencies and metadata:

[package]
name = "MyPackage"
version = "0.0.1"
edition = "2024.beta"

[dependencies]
Sui = { git = "https://github.com/MystenLabs/sui.git", subdir = "crates/sui-framework/packages/sui-framework", rev = "framework/mainnet" }

[addresses]
my_package = "0x0"

Important fields:

  • edition - Use "2024.beta" for latest features
  • dependencies - Always include Sui framework
  • addresses - Named addresses for the package (0x0 for templates, replaced at publish)

Module Declaration

Every Move file starts with a module declaration:

module my_package::my_module {
    use sui::object::{Self, UID};
    use sui::tx_context::{Self, TxContext};
    use sui::transfer;

    // Module contents
}

Read the full file on GitHub · 485 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 485 lines · 90 tokens per session scan A 4dc9650fdd0b

Subscribe to this mod's changes

Sui Move Development is a skill published in the GitHub repository 0x-j/sui-stack-claude-code-plugin (10 stars, last pushed 6mo ago), licensed MIT. It adds 90 tokens to every session and 2,984 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

requirements-author

Requirements authoring guide for BRD and PRD across Discover, Define, and Govern with canonical templates and handoff contracts.

microsoft/hve-core · 27 tokens

marginfi

MarginFi — Solana lending and borrowing.

alsk1992/CloddsBot · 11 tokens

crypto-market-rank

Crypto market rankings and leaderboards. Query trending tokens, top searched tokens, Binance Alpha tokens, tokenized stocks, social hype sentiment ranks, smart money inflow token rankings, top meme token rankings from Pulse launchpad, and top trader PnL leaderboards. Use this skill when users ask about token rankings…

tradecatlabs/tradecat-public · 85 tokens

trading-signal

Subscribe and retrieve on-chain Smart Money signals. Monitor trading activities of smart money addresses, including buy/sell signals, trigger price, current price, max gain, and exit rate. Use this skill when users are looking for investment opportunities — smart money signals can serve as valuable references for…

tradecatlabs/tradecat-public · 64 tokens

deposit-qr

Use when a user needs a QR code or wallet payment URI to fund a Superior-managed EVM wallet on a specific chain before using Lighter, Polymarket, Hyperliquid, or other Superior Trade workflows.

Superior-Trade/superior-skills · 47 tokens

sparkbtcbot-proxy-deploy

Deploy a serverless Spark Bitcoin L2 proxy on Vercel with spending limits, auth, and Redis logging. Use when user wants to set up a new proxy, configure env vars, deploy to Vercel, or manage the proxy infrastructure.

berabuddies/Semia · 59 tokens