Sui Move

PassAudited by ClawScan on May 1, 2026.

Overview

This appears to be a coherent Sui/Move development helper, but it relies on downloaded reference material and documents on-chain commands that should be run deliberately.

This skill looks reasonable for Sui/Move development. Before installing or using it, be aware that setup may clone changing GitHub documentation, metadata does not fully declare the required tools, and any Sui publish/call commands should be treated as manual actions that can spend gas or affect on-chain state.

Findings (4)

Artifact-based informational review of SKILL.md, metadata, install specs, static scan signals, and capability signals. ClawScan does not execute the skill or run runtime probes.

What this means

The installer may not clearly warn users that local tools such as the Sui CLI and ripgrep may be needed.

Why it was flagged

The registry does not surface install requirements, while SKILL.md declares `bins: [sui, rg]` and a brew install for `sui`. This is under-declared setup metadata, though it is aligned with the Sui development purpose.

Skill content
Required binaries (all must exist): none ... No install spec — this is an instruction-only skill.
Recommendation

Check prerequisites manually before relying on the skill, and prefer metadata that accurately declares required tools.

What this means

Answers may depend on the current state of remote repositories, which could change or become inconsistent with prior behavior.

Why it was flagged

The setup script clones and later pulls unpinned remote documentation from GitHub. This is expected for a documentation skill, but the referenced content can change over time.

Skill content
git clone --depth 1 https://github.com/MystenLabs/move-book.git ... cd move-book && git pull && cd ..
Recommendation

Run setup intentionally, use trusted networks, and pin repository commits if reproducibility or high-assurance development is important.

What this means

If run against a real wallet or mainnet environment, these commands can have public and potentially irreversible effects.

Why it was flagged

The skill documents Sui CLI commands that can submit blockchain transactions, spend gas, or mutate on-chain state. They appear as reference examples rather than hidden automatic execution.

Skill content
sui client publish --gas-budget 100000000 ... sui client call --package <PACKAGE_ID> --module <MODULE> --function <FUNCTION> --args <ARGS>
Recommendation

Confirm network, wallet, gas budget, and exact transaction intent before running publish or call commands; prefer testnet/devnet for experiments.

What this means

Generated guidance or code may reflect outdated or changed documentation/examples.

Why it was flagged

The skill instructs the agent to rely on locally cloned reference material as context. This is purpose-aligned, but those references are external content and may be stale or over-trusted.

Skill content
Search references first ... Read relevant files ... Provide code examples from the references
Recommendation

Treat retrieved examples as references, verify important code against current official Sui documentation, and review smart contracts before deployment.