What problem does it solve? AI agents frequently generate incorrect Aptos code by confusing it with Sui Move or Solidity patterns, using deprecated packages like the aptos npm module or Token V1, and hallucinating contract addresses. This Skill provides verified chain configuration, correct Move module patterns, and current SDK usage for building on Aptos. ## Core Features & Use Cases - Move Module Development: Write modules using global storage operations, resource accounts, access control, events, and Block-STM-friendly per-user state patterns. - Coin and Token Standards: Create custom coins with the Coin standard and NFT collections with Token V2 (Digital Assets), with verified mainnet coin type addresses. - TypeScript SDK Integration: Transfer APT, call view functions, estimate gas, handle multi-agent transactions, and deploy modules using @aptos-labs/ts-sdk. - Use Case: Deploy a vault module to testnet, then use the SDK to deposit APT, query user balances via view functions, and decode abort codes when transactions fail. ## Quick Start Ask the agent to create and deploy an Aptos Move module with a counter resource and then interact with it using the TypeScript SDK on testnet.