Sui (Mysten Labs) logo

Skill

move-bytecode-comprehension

analyze and disassemble Move bytecode

Covers Sui Engineering Code Analysis

Description

Use when reading or reasoning about compiled Move bytecode or `sui move disassemble` output. Mental model for the binary format, what survives compilation (and what's lost), and how to read disassembly soundly. Trigger on "what does this package do?", "read this .mv module", "interpret this disassembly", or whenever an analysis needs to interpret bytecode faithfully.

SKILL.md

Move Bytecode Comprehension

Self-bootstrap: before relying on the routing below, load every reference file — default to sui prompt skill move-bytecode-comprehension --all, or --list + --file <ref> when budget is tight. This SKILL.md is the mental-model wrapper; reference files cover the binary format and the practice of reading disassembly.

On-chain Sui packages are compiled Move bytecode (.mv, magic 0xA11CEB0B). For analysis you read it as disassembly (stack-machine, via sui move disassemble). This skill is the mental model for the binary format and for reading disassembly soundly.

The single most important fact when reading Move bytecode: abilities, visibility, the entry flag, signatures (incl. generics/phantom), and all on-chain identifiers — module/struct/field/function names — are preserved. What is lost is human intent metadata: constant/error names, #[error] messages, local variable names, comments, and macro structure. Tune reasoning accordingly.

What survives compilation — the survival table

Source constructIn bytecode?How it appears in disassemblyImplication
Module address + namemodule <addr>.<name>Identity is exact
Struct namesstruct Name ...Type-name reasoning is reliable
Field names + typeslisted on the structField-level reasoning holds
Abilities (key/store/copy/drop)has store, keyCapability / soulbound / hot-potato reasoning is reliable
Visibility (private/public/friend)keyword on fnCall-surface reasoning is reliable
entry flagentry keywordTx-entry reasoning is reliable
Function signaturesfull (Arg0: T, ...): RetParam/return reasoning holds
Generics + phantom type params<T> / phantomType-identity reasoning holds
Constant valuesLdConst[i](T: ...)Values readable, names are not
Constant / error namesLdConst[i] index onlyUse abort codes/positions, not names
#[error] messagesError intent lost; reason from the abort site
Local variable namesloc0, Arg1, …Don't trust names; trust dataflow
Comments / docNo author intent text
Macros (assert!, 1u8.do!)expandedinlined opcodes / branchesA macro looks like its expansion
Empty struct (e.g. OTW)✓ (as 1 field)dummy_field: boolOTW detect via name+drop+synthetic field

How to read

FileUse for
format.mdThe binary format: tables, abilities, visibility, signatures, opcode categories. Read once.
disassembly.mdReading the disassembly view: stack machine, basic blocks, locals, and the opcodes you'll actually see.

Practical stance

  • Disassembly is the view. Apply analyses to the .asm files produced by sui-and-move-tools/fetch-and-disassemble.md. Abilities, visibility, the entry flag, signatures, struct/field shapes, control flow, and call patterns are all faithful.
  • Citation. Findings cite <module>.asm:B<block>@i<index> — the basic-block label plus instruction index within the block.
  • Bytecode version is shown as // Move bytecode vN; note it — opcode availability varies by version.

© 2026 YourAI.tools. Every skill from an identity-verified publisher.

Independent catalog. Not affiliated with, endorsed by, or sponsored by Anthropic or any listed publisher. All trademarks belong to their respective owners.