From sui-dev-agents
Fetches and analyzes deployed SUI Move contract source code from on-chain bytecode using CLI or block explorers. Useful for studying existing protocols, verifying code, or reverse engineering.
How this skill is triggered — by the user, by Claude, or both
Slash command
/sui-dev-agents:sui-decompileThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
**Fetch and analyze on-chain SUI Move contract source code.**
Fetch and analyze on-chain SUI Move contract source code.
sui-decompile → sui-architect → sui-developer → sui-tester → sui-deployer
Study Plan Write Test Deploy
sui client CLI (Fastest, No Browser)# Get package object with module bytecodes
sui client object <package_id> --json
# Revela decompiler (if installed)
revela decompile -p <package_id> --network mainnet
Often has verified source code (via MovebitAudit).
https://suivision.xyz/package/{package_id}?tab=Code
For Playwright MCP scraping workflow, see references/scraping-patterns.md.
https://suiscan.xyz/{network}/object/{package_id}/contracts
Always available via Revela decompilation. See references/scraping-patterns.md for extraction snippets.
| Protocol | Package ID | Network |
|---|---|---|
| Sui Framework | 0x2 | all |
| Sui System | 0x3 | all |
| DeepBook v2 | 0xdee9 | mainnet |
| Cetus CLMM | 0x1eabed72c53feb73c00... | mainnet |
| Turbos Finance | 0x91bfbc386a41afcfd9b... | mainnet |
sui-architectsui-developersui-red-teamnpx claudepluginhub first-mover-tw/sui-dev-agents --plugin sui-dev-agentsProvides behavioral guidelines to reduce common LLM coding mistakes, focusing on simplicity, surgical changes, assumption surfacing, and verifiable success criteria.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.