Build, test, and deploy full-stack dApps on the SUI blockchain: write Move smart contracts, generate TypeScript frontends with wallet integration, run security audits and adversarial tests, and orchestrate staged deployments across devnet/testnet/mainnet.
Security audit checklist and vulnerability scanning
Build Move package with comprehensive error reporting
Interactive deployment with pre-deploy checks and network selection
Gas analysis and optimization recommendations
Initialize new SUI Move project with proper structure
Top-level orchestrator for all SUI blockchain development tasks. Analyzes requests, decomposes into subtasks, routes to category agents (sui-core-agent, sui-infrastructure-agent, sui-development-agent, sui-ecosystem-agent), and maintains global project state.
Orchestrates complete full-stack SUI projects from architecture to deployment. Executes the sui-full-stack skill end-to-end, coordinating all phases (architecture → development → testing → deployment).
Provide documentation queries and security scanning services to all other agents. Delegates to sui-docs-query-subagent for documentation and sui-security-guard-subagent for security scans.
Execute complete development lifecycle from architecture to deployment. Delegates to specialized subagents (sui-architect-subagent, sui-developer-subagent, sui-frontend-subagent, sui-tester-subagent, sui-deployer-subagent) for specific phases.
Integrate with SUI ecosystem services (Kiosk, Walrus, zkLogin, DeepBook, etc.). Provides integration patterns and code by delegating to specialized ecosystem subagents.
Analyzes Move packages against the official Move Book Code Quality Checklist. Use when reviewing Move code quality, checking Move 2024 Edition compliance, auditing best practices, or when the user says "review my Move code", "check code quality", "Move lint", or "does this follow best practices". Activates automatically when working with .move files. Different from sui-developer (which writes code) — this skill reviews and audits existing code.
Use when planning SUI Move architecture, generating technical specs, or designing object/module structure before writing code. Triggers on "design", "architect", "plan the contracts", "object model", "module structure", "how should I structure", or any SUI system design task. For new projects from scratch, use sui-full-stack (which calls this skill at Phase 1). For ecosystem tool/stack selection (Walrus vs IPFS, zkLogin vs Passkey), use sui-tools-guide.
Use when bumping any @mysten/* SDK version, adding a new SDK-using skill, or diagnosing version-drift errors across the plugin. Defines the canonical compat matrix, banner spec, and SDK-bump audit SOP. Triggers on "@mysten upgrade", "SDK bump", "version drift", "banner format", "compat matrix".
Use when fetching or analyzing deployed SUI Move contract source code from on-chain bytecode. Triggers on "decompile", "show me the contract code", "reverse engineer", "read on-chain module", "analyze deployed package", or when the user provides a package ID and wants to understand what it does. Also use when studying existing protocols or verifying deployed code.
Use when integrating DeepBook V3 — SUI's native CLOB DEX, margin trading, prediction markets, or DEEP-token fee mechanics. Triggers on "DeepBook", "DBv3", "BalanceManager", "DEEP token", "order book", "CLOB", "limit order", "market order", "Pool", "margin trading", "perpetuals on Sui", "leverage", "TPSL", "take-profit / stop-loss", "flash loan on Sui", "prediction market", "predict", "DeepBook indexer", "Pyth price feed", "permissionless pool", or any on-chain trading / DEX / market-making integration on SUI. Use even when the user only says "I need an orderbook on Sui" or mentions building a DEX without naming DeepBook — DeepBook V3 is the canonical answer.
Admin access level
Server config contains admin-level keywords
Executes bash commands
Hook triggers when Bash tool is used
Own this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimOwn this plugin?
Verify ownership to unlock analytics, metadata editing, and a verified badge. GitHub access is read-only (username + org membership).
Sign in to claimBased on adoption, maintenance, documentation, and repository signals. Not a security audit or endorsement.
Modifies files
Hook triggers on file write and edit operations
Modifies files
Hook triggers on file write and edit operations
Uses power tools
Uses Bash, Write, or Edit tools
Uses power tools
Uses Bash, Write, or Edit tools
v2.9.2 — An open-source toolkit built for the SUI community to streamline blockchain development. Provides skills, agents, commands, hooks, rules, and a built-in MCP Server for on-chain queries + agent wallet. Aligned with SUI CLI v1.72+ (Protocol 125, mainnet v1.72.3+ / testnet v1.73.0), SUI SDK v2, dApp Kit v2 (@mysten/dapp-kit-react / @mysten/dapp-kit-core), Move 2024 Edition, and gRPC transport (JSON-RPC deprecated, Quorum Driver disabled, permanent deactivation 2026-07-31). Integrates MystenLabs sui-dev-skills as source of truth.
Works with Claude Code (full plugin) and other AI development tools (rules-only) — see Platform Guides.
# From Marketplace
/plugin marketplace add first-mover-tw/sui-dev-agents
/plugin install sui-dev-agents
# Or direct install
/plugin install first-mover-tw/sui-dev-agents
Rules and skill prompts are portable markdown — works with any AI-powered development tool. Quick setup for popular CLI tools:
| Tool | Quick Start |
|---|---|
| Antigravity | cp -r rules/sui-move/ .antigravity/rules/ |
| Gemini CLI | cat rules/sui-move/conventions.md rules/sui-move/security.md > GEMINI.md |
| Codex CLI | cat rules/sui-move/conventions.md rules/sui-move/security.md > codex-instructions.md |
| OpenCode | cp rules/sui-move/conventions.md .opencode/context/sui-conventions.md |
Detailed guides for 14 platforms (Cursor, Windsurf, Cline, GitHub Copilot, Zed, Continue, Aider, Augment Code, Amazon Q, and more): docs/platforms/
cargo install --locked --git https://github.com/MystenLabs/sui.git suinpm install -g @anthropic-ai/claude-code/sui-full-stack # Full project: architecture → deploy
/sui-dev-agents:init # Init new Move project
/sui-dev-agents:build # Build & verify
/sui-dev-agents:test # Run tests
/sui-dev-agents:deploy # Deploy to network
/sui-dev-agents:audit # Security audit
/sui-security-guard # Defensive scan, Git hooks, vulnerability detection
/sui-red-team # Adversarial testing & exploit simulation (10-round default)
/sui-decompile # Reverse-engineer on-chain contracts for analysis
/sui-dev-agents:audit # Quick security checklist
Red Team simulates real attack vectors against your Move contracts — reentrancy, flash loan exploits, access control bypass, overflow attacks, fee rounding bypass — and generates a security report with fixes. Decompile lets you study any on-chain contract via CLI or block explorer.
| Phase | Skill | What it does |
|---|---|---|
| Setup | /sui-install | Install Sui CLI (suiup), manage versions, fix version mismatch, client setup |
| Design | /sui-architect | Architecture spec generation |
| Code | /sui-developer | Move contract dev + quality checks |
| SDK | /sui-ts-sdk | TypeScript SDK v2 — PTB, queries, sponsored tx |
| Frontend | /sui-frontend | React/Next.js + dApp Kit v2 wallet integration |
| Test | /sui-tester | Unit, integration, E2E, gas benchmarks, coverage analysis |
| Deploy | /sui-deployer | Staged rollout: devnet → testnet → mainnet |
| Quality | /move-code-quality | Move Book code quality checklist |
| Versioning | /sui-compat-matrix | @mysten/* SDK version source-of-truth + bump SOP (CI-enforced) |
/sui-kiosk (NFT marketplace) · /sui-zklogin (ZK auth) · /sui-deepbook (CLOB DEX + margin + predict) · /sui-walrus (storage) · /sui-passkey (WebAuthn) · /sui-suins (name service) · /sui-seal (threshold encryption & access control) · /sui-enoki (zkLogin-as-a-service + sponsored tx) · /sui-nautilus (TEE off-chain compute) · /sui-indexer (data pipelines)
Built-in MCP server with 14 tools for on-chain queries and wallet operations (gRPC primary, JSON-RPC fallback for BigInt-sensitive endpoints):
# Query tools (no approval needed)
sui_get_balance, sui_get_object, sui_get_coins, sui_get_events,
sui_get_transaction, sui_get_package, sui_resolve_name, ...
# Wallet tools (dry-run → approve → execute)
sui_wallet_status, sui_wallet_transfer, sui_wallet_call, sui_wallet_publish
npx claudepluginhub first-mover-tw/sui-dev-agents --plugin sui-dev-agentsComprehensive skill pack with 66 specialized skills for full-stack developers: 12 language experts (Python, TypeScript, Go, Rust, C++, Swift, Kotlin, C#, PHP, Java, SQL, JavaScript), 10 backend frameworks, 6 frontend/mobile, plus infrastructure, DevOps, security, and testing. Features progressive disclosure architecture for 50% faster loading.
Comprehensive feature development workflow with specialized agents for codebase exploration, architecture design, and quality review
Access thousands of AI prompts and skills directly in your AI coding assistant. Search prompts, discover skills, save your own, and improve prompts with AI.
Develop, test, build, and deploy Godot 4.x games with Claude Code. Includes GdUnit4 testing, web/desktop exports, CI/CD pipelines, and deployment to Vercel/GitHub Pages/itch.io.
Upstash Context7 MCP server for up-to-date documentation lookup. Pull version-specific documentation and code examples directly from source repositories into your LLM context.
Comprehensive PR review agents specializing in comments, tests, error handling, type design, code quality, and code simplification