Use when selecting SUI ecosystem tools, comparing integration options, or deciding between multiple libraries. Triggers on tool selection decisions, ecosystem navigation, or integration pattern questions.
From sui-dev-agentsnpx claudepluginhub first-mover-tw/sui-dev-agents --plugin sui-dev-agentsThis skill uses the workspace's default tool permissions.
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.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Navigate the SUI ecosystem and choose the right tools for your project.
This guide helps you:
NFT Marketplace → Use: Kiosk (required), Walrus (metadata), SuiNS (optional)
DeFi Protocol → Use: DeepBook (orderbook) or Cetus/Turbos (AMM)
GameFi → Use: Kiosk (items), Walrus (assets), zkLogin (easy onboarding)
DAO → Use: Multi-sig, custom governance
Social Platform → Use: zkLogin (auth), Walrus (media), SuiNS (profiles)
Kiosk (NFT standard)
+ Walrus (metadata storage)
+ zkLogin (user auth)
+ SuiNS (seller profiles)
DeepBook (orderbook)
+ Pyth/Switchboard (price feeds)
+ Multi-sig (treasury)
Kiosk (in-game items)
+ Walrus (game assets)
+ zkLogin (player login)
+ Leaderboard (custom)
For detailed integration, use the specific tool skills:
sui-walrus - Walrus integrationsui-zklogin - zkLogin integrationsui-deepbook - DeepBook integrationsui-kiosk - Kiosk integrationsui-passkey - Passkey integrationsui-seal - Sealed auction integrationsui-nautilus - Bridge integrationsui-suins - SuiNS integration| Tool | Complexity | Time to Integrate | Required For |
|---|---|---|---|
| Kiosk | Medium | 1-2 days | NFT marketplaces |
| Walrus | Low | 2-4 hours | Decentralized storage |
| zkLogin | Medium | 1 day | OAuth authentication |
| DeepBook | High | 3-5 days | Orderbook DEX |
| SuiNS | Low | 1-2 hours | Name resolution |
| Passkey | Low | 2-4 hours | Passwordless auth |
| Seal | Medium | 1-2 days | Sealed auctions |
| Nautilus | High | 3-7 days | Cross-chain |
// Store blob ID in NFT
public struct NFT has key, store {
id: UID,
name: String,
walrus_blob_id: vector<u8>
}
// Support both zkLogin and traditional wallets
public fun authenticate(
zklogin_proof: Option<ZkLoginProof>,
ctx: &TxContext
) {
let user = if (option::is_some(&zklogin_proof)) {
// Verify zkLogin
zklogin::verify(option::borrow(&zklogin_proof))
} else {
// Traditional wallet
tx_context::sender(ctx)
};
}
// Kiosk + custom royalty logic
use sui::kiosk;
use sui::transfer_policy;
public fun buy_with_royalty<T: key + store>(
kiosk: &mut Kiosk,
item_id: ID,
payment: Coin<SUI>,
policy: &TransferPolicy<T>,
ctx: &mut TxContext
) {
// Kiosk handles transfer policy enforcement
kiosk::purchase(kiosk, item_id, payment, policy, ctx);
}
Start simple:
Add one ecosystem tool:
Combine multiple tools:
Don't over-engineer:
Build custom when:
❌ Using tools without understanding tradeoffs
❌ Integrating all tools at once
❌ Not checking tool maintenance status
❌ Skipping testnet before mainnet
❌ Choosing tools based on hype
❌ Not reading tool-specific documentation
❌ Over-relying on ecosystem tools for core logic
Each tool has its own skill for detailed integration:
# Example: Get Walrus integration help
sui-walrus
# Example: Get zkLogin help
sui-zklogin
Query latest tool updates:
const toolInfo = await sui_docs_query({
type: "docs",
target: "walrus",
query: "latest features and API updates"
});
Choose the right tools, build faster, leverage the SUI ecosystem!