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.
npx agentmods add skills/0x-j/sui-stack-claude-code-plugin/sui-move-developmentnpx skills add 0x-j/sui-stack-claude-code-plugin --skill sui-move-developmentgit clone --depth 1 https://github.com/0x-j/sui-stack-claude-code-pluginWrote 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.
[](https://agentmods.dev/skills/0x-j/sui-stack-claude-code-plugin/sui-move-development)<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>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.
| Model | Per session | Once 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 |
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.
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 featuresdependencies- Always include Sui frameworkaddresses- 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
}
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.
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.
- 3d ago First seen · 485 lines · 90 tokens per session scan A 4dc9650fdd0b
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.
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.
marginfi
MarginFi — Solana lending and borrowing.
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…
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…
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.
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.