What problem does it solve?
Move on Sui projects often fail due to incorrect Move.toml setup, outdated framework dependency patterns, or test/code conventions that trigger avoidable build and runtime issues.
Core Features & Use Cases
- Move.toml setup for Sui: Ensures the correct Move 2024 edition and package naming to match module/package address expectations.
- Sui-correct build/test workflow: Provides the standard Sui CLI commands for building and running tests, plus guidance for selecting failing tests by name.
- Sui-specific test conventions and pitfalls: Covers expected failure annotations, when to use tx_context::dummy vs test_scenario, assertion style, and correct object destruction behavior using sui::test_utils::destroy.
- What not to do on Sui: Explicitly calls out Aptos/Core Move patterns that don’t apply on Sui (like acquires/global storage concepts, signer type, and Script functions).
Quick Start
Tell your AI to “configure my Sui Move package for the Move 2024 edition, make sure I’m not using outdated Sui dependencies or addresses, and update my tests to follow the expected_failure, tx_context, assertion, and destroy conventions.”