[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-sui-sui-client":3,"mdc-mefpg8-key":36,"related-org-sui-sui-client":1070,"related-repo-sui-sui-client":1241},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":12,"stars":25,"repoUrl":26,"updatedAt":27,"license":28,"forks":29,"topics":30,"repo":31,"sourceUrl":34,"mdContent":35},"sui-client","configure Sui CLI and manage addresses","Sui CLI client configuration, address management, and token acquisition. Use this skill when the user needs to configure the Sui client for the first time, manage environments or addresses, switch networks, get faucet tokens, check balances, recover keys from a recovery phrase, merge coin objects, or look up transactions on explorers. Also use when the user sees \"Cannot find gas coin for signer address\" errors or asks about sui client commands, client.yaml, sui.keystore, SuiVision, or Suiscan.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},"sui","Sui (Mysten Labs)","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fsui.png","MystenLabs",[13,17,19,22],{"name":14,"slug":15,"type":16},"Configuration","configuration","tag",{"name":18,"slug":8,"type":16},"Sui",{"name":20,"slug":21,"type":16},"CLI","cli",{"name":23,"slug":24,"type":16},"Web3","web3",9,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fskills","2026-07-16T06:02:49.557688",null,2,[],{"repoUrl":26,"stars":25,"forks":29,"topics":32,"description":33},[],"Sui development skills maintained by Mysten Labs","https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fskills\u002Ftree\u002FHEAD\u002Fsui-client","---\nname: sui-client\ndescription: >\n  Sui CLI client configuration, address management, and token acquisition. Use this\n  skill when the user needs to configure the Sui client for the first time, manage\n  environments or addresses, switch networks, get faucet tokens, check balances,\n  recover keys from a recovery phrase, merge coin objects, or look up transactions\n  on explorers. Also use when the user sees \"Cannot find gas coin for signer\n  address\" errors or asks about sui client commands, client.yaml, sui.keystore,\n  SuiVision, or Suiscan.\n---\n\n# Client Configuration & Tokens\n\n> **MCP tool:** When available in your environment, also query the Sui documentation MCP server (`https:\u002F\u002Fsui.mcp.kapa.ai`) for up-to-date answers. Use it for verification and for details not covered by these reference files.\n\n> **Source constraint:** All information sourced exclusively from [docs.sui.io](https:\u002F\u002Fdocs.sui.io).\n\n## Configuring the Sui client\n\n### First-time setup\n\nRunning `sui client` for the first time prompts you to create a configuration file. Accept the default (press Enter or type `Y`). You can skip the prompt with `sui client -y`.\n\nThis generates:\n\n- A new key pair and address\n- A 12-word recovery phrase (displayed once, never stored — save it immediately)\n- A `client.yaml` configuration file\n\n### Configuration file\n\nSui stores its configuration at:\n\n- **macOS\u002FLinux:** `~\u002F.sui\u002Fsui_config\u002Fclient.yaml`\n- **Windows:** `%USERPROFILE%\\.sui\\sui_config\\client.yaml`\n\nThe file contains:\n\n- Network environment connections (Mainnet, Testnet, Devnet, Localnet)\n- The active environment (default: Testnet)\n- The active address\n- The keystore file path\n\n### Managing environments and addresses\n\n| Command | Purpose |\n|---|---|\n| `sui client active-env` | Show the current network |\n| `sui client active-address` | Show the current address |\n| `sui client envs` | List all configured environments |\n| `sui client switch --env devnet` | Switch to a different network |\n| `sui client switch --address \u003CADDRESS>` | Switch to a different address |\n| `sui client new-address ed25519` | Create a new address |\n| `sui client addresses` | List all local addresses with aliases |\n| `sui client balance` | Check SUI token balance |\n| `sui client gas` | List gas coin objects |\n\n### Key storage\n\nPrivate keys are stored in a separate file:\n\n- **macOS\u002FLinux:** `~\u002F.sui\u002Fsui_config\u002Fsui.keystore`\n- **Windows:** `%USERPROFILE%\\.sui\\sui_config\\sui.keystore`\n\nThis file contains Base64-encoded private keys. It is not the same as your machine's system keystore.\n\n### Recovery\n\nTo recover an address from a recovery phrase:\n\n```bash\nsui keytool import '\u003C12-WORD-PHRASE>' ed25519\n```\n\nThe entire phrase must be in single quotes and in the correct order.\n\n## Getting SUI tokens\n\nDevelopment on Testnet and Devnet requires SUI tokens for gas. Tokens on these networks are free and hold no monetary value.\n\n### Faucet methods\n\n| Method | How |\n|---|---|\n| Web faucet | Visit `faucet.sui.io`, enter your address, select network, click Request SUI |\n| CLI (Devnet\u002FLocalnet only) | `sui client faucet` — works on Devnet and Localnet only, **not Testnet** |\n| TypeScript SDK | `requestSuiFromFaucetV2()` from `@mysten\u002Fsui\u002Ffaucet` |\n| Discord | Join the Sui Discord, use `!faucet \u003CADDRESS>` in `#devnet-faucet` or `#testnet-faucet` |\n| Community faucets | N1Stake faucet, SuiLearn faucet (separate rate limits) |\n\n**IMPORTANT: `sui client faucet` only works on Devnet and Localnet. It does NOT work on Testnet. For Testnet tokens, use the web faucet at `faucet.sui.io` or another method above. NEVER suggest `sui client faucet` for Testnet.**\n\nFaucets are rate-limited. If you hit a limit, wait or try a different faucet.\n\n### Coin management\n\nIf you have many small SUI coin objects but no single coin large enough for gas, merge them using `sui client ptb`:\n\n```bash\n# Merge one coin into another\nsui client ptb \\\n  --merge-coins @0xPRIMARY_COIN_ID \"[@0xCOIN_TO_MERGE_ID]\"\n\n# Merge multiple coins at once\nsui client ptb \\\n  --merge-coins @0xPRIMARY_COIN_ID \"[@0xCOIN_A, @0xCOIN_B, @0xCOIN_C]\"\n```\n\nUse `sui client ptb` for all transaction operations from the CLI. Avoid legacy helpers like `sui client merge-coin` — they are less composable and may be deprecated. See the `ptbs` skill's `cli.md` for more patterns.\n\n### Verify balance\n\n```bash\nsui client balance\n```\n\nOr use explorers: SuiVision (`suivision.xyz`) or Suiscan (`suiscan.xyz`).\n\n## Explorers and data tools\n\nUse SuiVision (`suivision.xyz`) or Suiscan (`suiscan.xyz`) to inspect transactions, objects, addresses, and token balances. Sui provides a GraphQL RPC for rich data queries per network. Use `sui replay` (CLI built-in) to locally re-execute past transactions for debugging.\n\n## Rules\n\n- Submit writes and reads to the same fullnode for consistency.\n- Let wallets manage gas budget, gas price, and coin selection. Do not hardcode gas budgets in frontends.\n- Use `sui client ptb` for all CLI transaction operations instead of legacy single-purpose commands (`merge-coin`, `split-coin`, `transfer`, etc.).\n",{"data":37,"body":38},{"name":4,"description":6},{"type":39,"children":40},"root",[41,50,75,99,106,113,141,146,174,180,185,219,224,247,253,434,440,445,476,481,487,492,546,551,557,562,568,708,737,742,748,761,893,929,935,958,979,985,1011,1017,1064],{"type":42,"tag":43,"props":44,"children":46},"element","h1",{"id":45},"client-configuration-tokens",[47],{"type":48,"value":49},"text","Client Configuration & Tokens",{"type":42,"tag":51,"props":52,"children":53},"blockquote",{},[54],{"type":42,"tag":55,"props":56,"children":57},"p",{},[58,64,66,73],{"type":42,"tag":59,"props":60,"children":61},"strong",{},[62],{"type":48,"value":63},"MCP tool:",{"type":48,"value":65}," When available in your environment, also query the Sui documentation MCP server (",{"type":42,"tag":67,"props":68,"children":70},"code",{"className":69},[],[71],{"type":48,"value":72},"https:\u002F\u002Fsui.mcp.kapa.ai",{"type":48,"value":74},") for up-to-date answers. Use it for verification and for details not covered by these reference files.",{"type":42,"tag":51,"props":76,"children":77},{},[78],{"type":42,"tag":55,"props":79,"children":80},{},[81,86,88,97],{"type":42,"tag":59,"props":82,"children":83},{},[84],{"type":48,"value":85},"Source constraint:",{"type":48,"value":87}," All information sourced exclusively from ",{"type":42,"tag":89,"props":90,"children":94},"a",{"href":91,"rel":92},"https:\u002F\u002Fdocs.sui.io",[93],"nofollow",[95],{"type":48,"value":96},"docs.sui.io",{"type":48,"value":98},".",{"type":42,"tag":100,"props":101,"children":103},"h2",{"id":102},"configuring-the-sui-client",[104],{"type":48,"value":105},"Configuring the Sui client",{"type":42,"tag":107,"props":108,"children":110},"h3",{"id":109},"first-time-setup",[111],{"type":48,"value":112},"First-time setup",{"type":42,"tag":55,"props":114,"children":115},{},[116,118,124,126,132,134,140],{"type":48,"value":117},"Running ",{"type":42,"tag":67,"props":119,"children":121},{"className":120},[],[122],{"type":48,"value":123},"sui client",{"type":48,"value":125}," for the first time prompts you to create a configuration file. Accept the default (press Enter or type ",{"type":42,"tag":67,"props":127,"children":129},{"className":128},[],[130],{"type":48,"value":131},"Y",{"type":48,"value":133},"). You can skip the prompt with ",{"type":42,"tag":67,"props":135,"children":137},{"className":136},[],[138],{"type":48,"value":139},"sui client -y",{"type":48,"value":98},{"type":42,"tag":55,"props":142,"children":143},{},[144],{"type":48,"value":145},"This generates:",{"type":42,"tag":147,"props":148,"children":149},"ul",{},[150,156,161],{"type":42,"tag":151,"props":152,"children":153},"li",{},[154],{"type":48,"value":155},"A new key pair and address",{"type":42,"tag":151,"props":157,"children":158},{},[159],{"type":48,"value":160},"A 12-word recovery phrase (displayed once, never stored — save it immediately)",{"type":42,"tag":151,"props":162,"children":163},{},[164,166,172],{"type":48,"value":165},"A ",{"type":42,"tag":67,"props":167,"children":169},{"className":168},[],[170],{"type":48,"value":171},"client.yaml",{"type":48,"value":173}," configuration file",{"type":42,"tag":107,"props":175,"children":177},{"id":176},"configuration-file",[178],{"type":48,"value":179},"Configuration file",{"type":42,"tag":55,"props":181,"children":182},{},[183],{"type":48,"value":184},"Sui stores its configuration at:",{"type":42,"tag":147,"props":186,"children":187},{},[188,204],{"type":42,"tag":151,"props":189,"children":190},{},[191,196,198],{"type":42,"tag":59,"props":192,"children":193},{},[194],{"type":48,"value":195},"macOS\u002FLinux:",{"type":48,"value":197}," ",{"type":42,"tag":67,"props":199,"children":201},{"className":200},[],[202],{"type":48,"value":203},"~\u002F.sui\u002Fsui_config\u002Fclient.yaml",{"type":42,"tag":151,"props":205,"children":206},{},[207,212,213],{"type":42,"tag":59,"props":208,"children":209},{},[210],{"type":48,"value":211},"Windows:",{"type":48,"value":197},{"type":42,"tag":67,"props":214,"children":216},{"className":215},[],[217],{"type":48,"value":218},"%USERPROFILE%\\.sui\\sui_config\\client.yaml",{"type":42,"tag":55,"props":220,"children":221},{},[222],{"type":48,"value":223},"The file contains:",{"type":42,"tag":147,"props":225,"children":226},{},[227,232,237,242],{"type":42,"tag":151,"props":228,"children":229},{},[230],{"type":48,"value":231},"Network environment connections (Mainnet, Testnet, Devnet, Localnet)",{"type":42,"tag":151,"props":233,"children":234},{},[235],{"type":48,"value":236},"The active environment (default: Testnet)",{"type":42,"tag":151,"props":238,"children":239},{},[240],{"type":48,"value":241},"The active address",{"type":42,"tag":151,"props":243,"children":244},{},[245],{"type":48,"value":246},"The keystore file path",{"type":42,"tag":107,"props":248,"children":250},{"id":249},"managing-environments-and-addresses",[251],{"type":48,"value":252},"Managing environments and addresses",{"type":42,"tag":254,"props":255,"children":256},"table",{},[257,276],{"type":42,"tag":258,"props":259,"children":260},"thead",{},[261],{"type":42,"tag":262,"props":263,"children":264},"tr",{},[265,271],{"type":42,"tag":266,"props":267,"children":268},"th",{},[269],{"type":48,"value":270},"Command",{"type":42,"tag":266,"props":272,"children":273},{},[274],{"type":48,"value":275},"Purpose",{"type":42,"tag":277,"props":278,"children":279},"tbody",{},[280,298,315,332,349,366,383,400,417],{"type":42,"tag":262,"props":281,"children":282},{},[283,293],{"type":42,"tag":284,"props":285,"children":286},"td",{},[287],{"type":42,"tag":67,"props":288,"children":290},{"className":289},[],[291],{"type":48,"value":292},"sui client active-env",{"type":42,"tag":284,"props":294,"children":295},{},[296],{"type":48,"value":297},"Show the current network",{"type":42,"tag":262,"props":299,"children":300},{},[301,310],{"type":42,"tag":284,"props":302,"children":303},{},[304],{"type":42,"tag":67,"props":305,"children":307},{"className":306},[],[308],{"type":48,"value":309},"sui client active-address",{"type":42,"tag":284,"props":311,"children":312},{},[313],{"type":48,"value":314},"Show the current address",{"type":42,"tag":262,"props":316,"children":317},{},[318,327],{"type":42,"tag":284,"props":319,"children":320},{},[321],{"type":42,"tag":67,"props":322,"children":324},{"className":323},[],[325],{"type":48,"value":326},"sui client envs",{"type":42,"tag":284,"props":328,"children":329},{},[330],{"type":48,"value":331},"List all configured environments",{"type":42,"tag":262,"props":333,"children":334},{},[335,344],{"type":42,"tag":284,"props":336,"children":337},{},[338],{"type":42,"tag":67,"props":339,"children":341},{"className":340},[],[342],{"type":48,"value":343},"sui client switch --env devnet",{"type":42,"tag":284,"props":345,"children":346},{},[347],{"type":48,"value":348},"Switch to a different network",{"type":42,"tag":262,"props":350,"children":351},{},[352,361],{"type":42,"tag":284,"props":353,"children":354},{},[355],{"type":42,"tag":67,"props":356,"children":358},{"className":357},[],[359],{"type":48,"value":360},"sui client switch --address \u003CADDRESS>",{"type":42,"tag":284,"props":362,"children":363},{},[364],{"type":48,"value":365},"Switch to a different address",{"type":42,"tag":262,"props":367,"children":368},{},[369,378],{"type":42,"tag":284,"props":370,"children":371},{},[372],{"type":42,"tag":67,"props":373,"children":375},{"className":374},[],[376],{"type":48,"value":377},"sui client new-address ed25519",{"type":42,"tag":284,"props":379,"children":380},{},[381],{"type":48,"value":382},"Create a new address",{"type":42,"tag":262,"props":384,"children":385},{},[386,395],{"type":42,"tag":284,"props":387,"children":388},{},[389],{"type":42,"tag":67,"props":390,"children":392},{"className":391},[],[393],{"type":48,"value":394},"sui client addresses",{"type":42,"tag":284,"props":396,"children":397},{},[398],{"type":48,"value":399},"List all local addresses with aliases",{"type":42,"tag":262,"props":401,"children":402},{},[403,412],{"type":42,"tag":284,"props":404,"children":405},{},[406],{"type":42,"tag":67,"props":407,"children":409},{"className":408},[],[410],{"type":48,"value":411},"sui client balance",{"type":42,"tag":284,"props":413,"children":414},{},[415],{"type":48,"value":416},"Check SUI token balance",{"type":42,"tag":262,"props":418,"children":419},{},[420,429],{"type":42,"tag":284,"props":421,"children":422},{},[423],{"type":42,"tag":67,"props":424,"children":426},{"className":425},[],[427],{"type":48,"value":428},"sui client gas",{"type":42,"tag":284,"props":430,"children":431},{},[432],{"type":48,"value":433},"List gas coin objects",{"type":42,"tag":107,"props":435,"children":437},{"id":436},"key-storage",[438],{"type":48,"value":439},"Key storage",{"type":42,"tag":55,"props":441,"children":442},{},[443],{"type":48,"value":444},"Private keys are stored in a separate file:",{"type":42,"tag":147,"props":446,"children":447},{},[448,462],{"type":42,"tag":151,"props":449,"children":450},{},[451,455,456],{"type":42,"tag":59,"props":452,"children":453},{},[454],{"type":48,"value":195},{"type":48,"value":197},{"type":42,"tag":67,"props":457,"children":459},{"className":458},[],[460],{"type":48,"value":461},"~\u002F.sui\u002Fsui_config\u002Fsui.keystore",{"type":42,"tag":151,"props":463,"children":464},{},[465,469,470],{"type":42,"tag":59,"props":466,"children":467},{},[468],{"type":48,"value":211},{"type":48,"value":197},{"type":42,"tag":67,"props":471,"children":473},{"className":472},[],[474],{"type":48,"value":475},"%USERPROFILE%\\.sui\\sui_config\\sui.keystore",{"type":42,"tag":55,"props":477,"children":478},{},[479],{"type":48,"value":480},"This file contains Base64-encoded private keys. It is not the same as your machine's system keystore.",{"type":42,"tag":107,"props":482,"children":484},{"id":483},"recovery",[485],{"type":48,"value":486},"Recovery",{"type":42,"tag":55,"props":488,"children":489},{},[490],{"type":48,"value":491},"To recover an address from a recovery phrase:",{"type":42,"tag":493,"props":494,"children":499},"pre",{"className":495,"code":496,"language":497,"meta":498,"style":498},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","sui keytool import '\u003C12-WORD-PHRASE>' ed25519\n","bash","",[500],{"type":42,"tag":67,"props":501,"children":502},{"__ignoreMap":498},[503],{"type":42,"tag":504,"props":505,"children":508},"span",{"class":506,"line":507},"line",1,[509,514,520,525,531,536,541],{"type":42,"tag":504,"props":510,"children":512},{"style":511},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[513],{"type":48,"value":8},{"type":42,"tag":504,"props":515,"children":517},{"style":516},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[518],{"type":48,"value":519}," keytool",{"type":42,"tag":504,"props":521,"children":522},{"style":516},[523],{"type":48,"value":524}," import",{"type":42,"tag":504,"props":526,"children":528},{"style":527},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[529],{"type":48,"value":530}," '",{"type":42,"tag":504,"props":532,"children":533},{"style":516},[534],{"type":48,"value":535},"\u003C12-WORD-PHRASE>",{"type":42,"tag":504,"props":537,"children":538},{"style":527},[539],{"type":48,"value":540},"'",{"type":42,"tag":504,"props":542,"children":543},{"style":516},[544],{"type":48,"value":545}," ed25519\n",{"type":42,"tag":55,"props":547,"children":548},{},[549],{"type":48,"value":550},"The entire phrase must be in single quotes and in the correct order.",{"type":42,"tag":100,"props":552,"children":554},{"id":553},"getting-sui-tokens",[555],{"type":48,"value":556},"Getting SUI tokens",{"type":42,"tag":55,"props":558,"children":559},{},[560],{"type":48,"value":561},"Development on Testnet and Devnet requires SUI tokens for gas. Tokens on these networks are free and hold no monetary value.",{"type":42,"tag":107,"props":563,"children":565},{"id":564},"faucet-methods",[566],{"type":48,"value":567},"Faucet methods",{"type":42,"tag":254,"props":569,"children":570},{},[571,587],{"type":42,"tag":258,"props":572,"children":573},{},[574],{"type":42,"tag":262,"props":575,"children":576},{},[577,582],{"type":42,"tag":266,"props":578,"children":579},{},[580],{"type":48,"value":581},"Method",{"type":42,"tag":266,"props":583,"children":584},{},[585],{"type":48,"value":586},"How",{"type":42,"tag":277,"props":588,"children":589},{},[590,611,635,660,695],{"type":42,"tag":262,"props":591,"children":592},{},[593,598],{"type":42,"tag":284,"props":594,"children":595},{},[596],{"type":48,"value":597},"Web faucet",{"type":42,"tag":284,"props":599,"children":600},{},[601,603,609],{"type":48,"value":602},"Visit ",{"type":42,"tag":67,"props":604,"children":606},{"className":605},[],[607],{"type":48,"value":608},"faucet.sui.io",{"type":48,"value":610},", enter your address, select network, click Request SUI",{"type":42,"tag":262,"props":612,"children":613},{},[614,619],{"type":42,"tag":284,"props":615,"children":616},{},[617],{"type":48,"value":618},"CLI (Devnet\u002FLocalnet only)",{"type":42,"tag":284,"props":620,"children":621},{},[622,628,630],{"type":42,"tag":67,"props":623,"children":625},{"className":624},[],[626],{"type":48,"value":627},"sui client faucet",{"type":48,"value":629}," — works on Devnet and Localnet only, ",{"type":42,"tag":59,"props":631,"children":632},{},[633],{"type":48,"value":634},"not Testnet",{"type":42,"tag":262,"props":636,"children":637},{},[638,643],{"type":42,"tag":284,"props":639,"children":640},{},[641],{"type":48,"value":642},"TypeScript SDK",{"type":42,"tag":284,"props":644,"children":645},{},[646,652,654],{"type":42,"tag":67,"props":647,"children":649},{"className":648},[],[650],{"type":48,"value":651},"requestSuiFromFaucetV2()",{"type":48,"value":653}," from ",{"type":42,"tag":67,"props":655,"children":657},{"className":656},[],[658],{"type":48,"value":659},"@mysten\u002Fsui\u002Ffaucet",{"type":42,"tag":262,"props":661,"children":662},{},[663,668],{"type":42,"tag":284,"props":664,"children":665},{},[666],{"type":48,"value":667},"Discord",{"type":42,"tag":284,"props":669,"children":670},{},[671,673,679,681,687,689],{"type":48,"value":672},"Join the Sui Discord, use ",{"type":42,"tag":67,"props":674,"children":676},{"className":675},[],[677],{"type":48,"value":678},"!faucet \u003CADDRESS>",{"type":48,"value":680}," in ",{"type":42,"tag":67,"props":682,"children":684},{"className":683},[],[685],{"type":48,"value":686},"#devnet-faucet",{"type":48,"value":688}," or ",{"type":42,"tag":67,"props":690,"children":692},{"className":691},[],[693],{"type":48,"value":694},"#testnet-faucet",{"type":42,"tag":262,"props":696,"children":697},{},[698,703],{"type":42,"tag":284,"props":699,"children":700},{},[701],{"type":48,"value":702},"Community faucets",{"type":42,"tag":284,"props":704,"children":705},{},[706],{"type":48,"value":707},"N1Stake faucet, SuiLearn faucet (separate rate limits)",{"type":42,"tag":55,"props":709,"children":710},{},[711],{"type":42,"tag":59,"props":712,"children":713},{},[714,716,721,723,728,730,735],{"type":48,"value":715},"IMPORTANT: ",{"type":42,"tag":67,"props":717,"children":719},{"className":718},[],[720],{"type":48,"value":627},{"type":48,"value":722}," only works on Devnet and Localnet. It does NOT work on Testnet. For Testnet tokens, use the web faucet at ",{"type":42,"tag":67,"props":724,"children":726},{"className":725},[],[727],{"type":48,"value":608},{"type":48,"value":729}," or another method above. NEVER suggest ",{"type":42,"tag":67,"props":731,"children":733},{"className":732},[],[734],{"type":48,"value":627},{"type":48,"value":736}," for Testnet.",{"type":42,"tag":55,"props":738,"children":739},{},[740],{"type":48,"value":741},"Faucets are rate-limited. If you hit a limit, wait or try a different faucet.",{"type":42,"tag":107,"props":743,"children":745},{"id":744},"coin-management",[746],{"type":48,"value":747},"Coin management",{"type":42,"tag":55,"props":749,"children":750},{},[751,753,759],{"type":48,"value":752},"If you have many small SUI coin objects but no single coin large enough for gas, merge them using ",{"type":42,"tag":67,"props":754,"children":756},{"className":755},[],[757],{"type":48,"value":758},"sui client ptb",{"type":48,"value":760},":",{"type":42,"tag":493,"props":762,"children":764},{"className":495,"code":763,"language":497,"meta":498,"style":498},"# Merge one coin into another\nsui client ptb \\\n  --merge-coins @0xPRIMARY_COIN_ID \"[@0xCOIN_TO_MERGE_ID]\"\n\n# Merge multiple coins at once\nsui client ptb \\\n  --merge-coins @0xPRIMARY_COIN_ID \"[@0xCOIN_A, @0xCOIN_B, @0xCOIN_C]\"\n",[765],{"type":42,"tag":67,"props":766,"children":767},{"__ignoreMap":498},[768,777,800,829,839,848,868],{"type":42,"tag":504,"props":769,"children":770},{"class":506,"line":507},[771],{"type":42,"tag":504,"props":772,"children":774},{"style":773},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[775],{"type":48,"value":776},"# Merge one coin into another\n",{"type":42,"tag":504,"props":778,"children":779},{"class":506,"line":29},[780,784,789,794],{"type":42,"tag":504,"props":781,"children":782},{"style":511},[783],{"type":48,"value":8},{"type":42,"tag":504,"props":785,"children":786},{"style":516},[787],{"type":48,"value":788}," client",{"type":42,"tag":504,"props":790,"children":791},{"style":516},[792],{"type":48,"value":793}," ptb",{"type":42,"tag":504,"props":795,"children":797},{"style":796},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[798],{"type":48,"value":799}," \\\n",{"type":42,"tag":504,"props":801,"children":803},{"class":506,"line":802},3,[804,809,814,819,824],{"type":42,"tag":504,"props":805,"children":806},{"style":516},[807],{"type":48,"value":808},"  --merge-coins",{"type":42,"tag":504,"props":810,"children":811},{"style":516},[812],{"type":48,"value":813}," @0xPRIMARY_COIN_ID",{"type":42,"tag":504,"props":815,"children":816},{"style":527},[817],{"type":48,"value":818}," \"",{"type":42,"tag":504,"props":820,"children":821},{"style":516},[822],{"type":48,"value":823},"[@0xCOIN_TO_MERGE_ID]",{"type":42,"tag":504,"props":825,"children":826},{"style":527},[827],{"type":48,"value":828},"\"\n",{"type":42,"tag":504,"props":830,"children":832},{"class":506,"line":831},4,[833],{"type":42,"tag":504,"props":834,"children":836},{"emptyLinePlaceholder":835},true,[837],{"type":48,"value":838},"\n",{"type":42,"tag":504,"props":840,"children":842},{"class":506,"line":841},5,[843],{"type":42,"tag":504,"props":844,"children":845},{"style":773},[846],{"type":48,"value":847},"# Merge multiple coins at once\n",{"type":42,"tag":504,"props":849,"children":851},{"class":506,"line":850},6,[852,856,860,864],{"type":42,"tag":504,"props":853,"children":854},{"style":511},[855],{"type":48,"value":8},{"type":42,"tag":504,"props":857,"children":858},{"style":516},[859],{"type":48,"value":788},{"type":42,"tag":504,"props":861,"children":862},{"style":516},[863],{"type":48,"value":793},{"type":42,"tag":504,"props":865,"children":866},{"style":796},[867],{"type":48,"value":799},{"type":42,"tag":504,"props":869,"children":871},{"class":506,"line":870},7,[872,876,880,884,889],{"type":42,"tag":504,"props":873,"children":874},{"style":516},[875],{"type":48,"value":808},{"type":42,"tag":504,"props":877,"children":878},{"style":516},[879],{"type":48,"value":813},{"type":42,"tag":504,"props":881,"children":882},{"style":527},[883],{"type":48,"value":818},{"type":42,"tag":504,"props":885,"children":886},{"style":516},[887],{"type":48,"value":888},"[@0xCOIN_A, @0xCOIN_B, @0xCOIN_C]",{"type":42,"tag":504,"props":890,"children":891},{"style":527},[892],{"type":48,"value":828},{"type":42,"tag":55,"props":894,"children":895},{},[896,898,903,905,911,913,919,921,927],{"type":48,"value":897},"Use ",{"type":42,"tag":67,"props":899,"children":901},{"className":900},[],[902],{"type":48,"value":758},{"type":48,"value":904}," for all transaction operations from the CLI. Avoid legacy helpers like ",{"type":42,"tag":67,"props":906,"children":908},{"className":907},[],[909],{"type":48,"value":910},"sui client merge-coin",{"type":48,"value":912}," — they are less composable and may be deprecated. See the ",{"type":42,"tag":67,"props":914,"children":916},{"className":915},[],[917],{"type":48,"value":918},"ptbs",{"type":48,"value":920}," skill's ",{"type":42,"tag":67,"props":922,"children":924},{"className":923},[],[925],{"type":48,"value":926},"cli.md",{"type":48,"value":928}," for more patterns.",{"type":42,"tag":107,"props":930,"children":932},{"id":931},"verify-balance",[933],{"type":48,"value":934},"Verify balance",{"type":42,"tag":493,"props":936,"children":938},{"className":495,"code":937,"language":497,"meta":498,"style":498},"sui client balance\n",[939],{"type":42,"tag":67,"props":940,"children":941},{"__ignoreMap":498},[942],{"type":42,"tag":504,"props":943,"children":944},{"class":506,"line":507},[945,949,953],{"type":42,"tag":504,"props":946,"children":947},{"style":511},[948],{"type":48,"value":8},{"type":42,"tag":504,"props":950,"children":951},{"style":516},[952],{"type":48,"value":788},{"type":42,"tag":504,"props":954,"children":955},{"style":516},[956],{"type":48,"value":957}," balance\n",{"type":42,"tag":55,"props":959,"children":960},{},[961,963,969,971,977],{"type":48,"value":962},"Or use explorers: SuiVision (",{"type":42,"tag":67,"props":964,"children":966},{"className":965},[],[967],{"type":48,"value":968},"suivision.xyz",{"type":48,"value":970},") or Suiscan (",{"type":42,"tag":67,"props":972,"children":974},{"className":973},[],[975],{"type":48,"value":976},"suiscan.xyz",{"type":48,"value":978},").",{"type":42,"tag":100,"props":980,"children":982},{"id":981},"explorers-and-data-tools",[983],{"type":48,"value":984},"Explorers and data tools",{"type":42,"tag":55,"props":986,"children":987},{},[988,990,995,996,1001,1003,1009],{"type":48,"value":989},"Use SuiVision (",{"type":42,"tag":67,"props":991,"children":993},{"className":992},[],[994],{"type":48,"value":968},{"type":48,"value":970},{"type":42,"tag":67,"props":997,"children":999},{"className":998},[],[1000],{"type":48,"value":976},{"type":48,"value":1002},") to inspect transactions, objects, addresses, and token balances. Sui provides a GraphQL RPC for rich data queries per network. Use ",{"type":42,"tag":67,"props":1004,"children":1006},{"className":1005},[],[1007],{"type":48,"value":1008},"sui replay",{"type":48,"value":1010}," (CLI built-in) to locally re-execute past transactions for debugging.",{"type":42,"tag":100,"props":1012,"children":1014},{"id":1013},"rules",[1015],{"type":48,"value":1016},"Rules",{"type":42,"tag":147,"props":1018,"children":1019},{},[1020,1025,1030],{"type":42,"tag":151,"props":1021,"children":1022},{},[1023],{"type":48,"value":1024},"Submit writes and reads to the same fullnode for consistency.",{"type":42,"tag":151,"props":1026,"children":1027},{},[1028],{"type":48,"value":1029},"Let wallets manage gas budget, gas price, and coin selection. Do not hardcode gas budgets in frontends.",{"type":42,"tag":151,"props":1031,"children":1032},{},[1033,1034,1039,1041,1047,1049,1055,1056,1062],{"type":48,"value":897},{"type":42,"tag":67,"props":1035,"children":1037},{"className":1036},[],[1038],{"type":48,"value":758},{"type":48,"value":1040}," for all CLI transaction operations instead of legacy single-purpose commands (",{"type":42,"tag":67,"props":1042,"children":1044},{"className":1043},[],[1045],{"type":48,"value":1046},"merge-coin",{"type":48,"value":1048},", ",{"type":42,"tag":67,"props":1050,"children":1052},{"className":1051},[],[1053],{"type":48,"value":1054},"split-coin",{"type":48,"value":1048},{"type":42,"tag":67,"props":1057,"children":1059},{"className":1058},[],[1060],{"type":48,"value":1061},"transfer",{"type":48,"value":1063},", etc.).",{"type":42,"tag":1065,"props":1066,"children":1067},"style",{},[1068],{"type":48,"value":1069},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":1071,"total":1240},[1072,1088,1099,1109,1126,1144,1156,1169,1190,1200,1211,1227],{"slug":1073,"name":1073,"fn":1074,"description":1075,"org":1076,"tags":1077,"stars":1085,"repoUrl":1086,"updatedAt":1087},"move-bytecode-comprehension","analyze and disassemble Move bytecode","Use when reading or reasoning about compiled Move bytecode or `sui move disassemble` output. Mental model for the binary format, what survives compilation (and what's lost), and how to read disassembly soundly. Trigger on \"what does this package do?\", \"read this .mv module\", \"interpret this disassembly\", or whenever an analysis needs to interpret bytecode faithfully.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1078,1081,1084],{"name":1079,"slug":1080,"type":16},"Code Analysis","code-analysis",{"name":1082,"slug":1083,"type":16},"Engineering","engineering",{"name":18,"slug":8,"type":16},7724,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002Fsui","2026-07-16T05:59:32.904886",{"slug":1089,"name":1089,"fn":1090,"description":1091,"org":1092,"tags":1093,"stars":1085,"repoUrl":1086,"updatedAt":1098},"official-sui-skills","access official Sui development resources","Pointer to the official Mysten Labs skills for building on Sui — language fundamentals, object model, PTBs, SDKs, publishing, upgrades, frontend integration, accessing on-chain data. Maintained upstream at github.com\u002FMystenLabs\u002Fskills; pinned to the same ref the audit catalog derives from (see maintenance\u002FUPSTREAMS.md). Trigger on \"build a contract\", \"publish a package\", \"upgrade a module or package\", \"use the TypeScript SDK\", \"write a PTB\", \"set up a Sui client\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1094,1097],{"name":1095,"slug":1096,"type":16},"Documentation","documentation",{"name":18,"slug":8,"type":16},"2026-07-16T06:00:59.641382",{"slug":1100,"name":1100,"fn":1101,"description":1102,"org":1103,"tags":1104,"stars":1085,"repoUrl":1086,"updatedAt":1108},"sui-and-move-tools","disassemble Sui Move bytecode","Use to get bytecode for a deployed Sui package and produce a disassembled working view. One GraphQL call fetches every module's raw bytecode bytes; `sui move disassemble` (already on the system, running `sui prompt`) produces `.asm` files for analysis. Trigger on \"fetch this package's bytecode\", \"get me the .mv for package X\", \"disassemble this package\", or \"I need to read a deployed Sui package\".\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1105,1106,1107],{"name":1079,"slug":1080,"type":16},{"name":1082,"slug":1083,"type":16},{"name":18,"slug":8,"type":16},"2026-07-16T06:02:25.3633",{"slug":1110,"name":1110,"fn":1111,"description":1112,"org":1113,"tags":1114,"stars":1085,"repoUrl":1086,"updatedAt":1125},"sui-move-security-review","audit Sui Move smart contracts","Use when auditing, reviewing, or hunting for vulnerabilities in Move code on Sui. Applies equally to source code (.move files) and to disassembly of compiled bytecode (on-chain packages). A checklist of invariants whose VIOLATION causes exploitable bugs: access control & capabilities, struct abilities & type safety, object lifecycle & ownership, shared-object and PTB attack surface, dynamic fields & collections, arithmetic & coins, init\u002FOTW\u002Fpackage upgrades, hot-potato composability, time & on-chain randomness, and test-only code leakage. Trigger on \"audit this Move code\", \"find vulnerabilities in this Sui contract\", \"security review\", \"is this package safe?\", \"I suspect there's a bug in X\", \"something is wrong with this contract\", or when reasoning about whether a Move function can be abused.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1115,1118,1121,1124],{"name":1116,"slug":1117,"type":16},"Code Review","code-review",{"name":1119,"slug":1120,"type":16},"Security","security",{"name":1122,"slug":1123,"type":16},"Smart Contracts","smart-contracts",{"name":18,"slug":8,"type":16},"2026-07-16T06:02:55.691149",{"slug":1127,"name":1127,"fn":1128,"description":1129,"org":1130,"tags":1131,"stars":1141,"repoUrl":1142,"updatedAt":1143},"memwal","integrate Walrus Memory SDK","Walrus Memory SDK — portable agent memory that works across apps, sessions, and workflows.\n\nUse when users say:\n- \"add memory to my app\"\n- \"portable agent memory\"\n- \"integrate Walrus Memory\"\n- \"AI agent memory\"\n- \"memory across agents\"\n- \"Walrus memory storage\"\n- \"setup Walrus Memory\"\n- \"recall memories\"\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1132,1135,1138],{"name":1133,"slug":1134,"type":16},"Agents","agents",{"name":1136,"slug":1137,"type":16},"Memory","memory",{"name":1139,"slug":1140,"type":16},"SDK","sdk",57,"https:\u002F\u002Fgithub.com\u002FMystenLabs\u002FMemWal","2026-07-16T06:02:39.838395",{"slug":1145,"name":1145,"fn":1146,"description":1147,"org":1148,"tags":1149,"stars":25,"repoUrl":26,"updatedAt":1155},"accessing-data","read data from the Sui network","How to read data from the Sui network. Use when choosing or implementing a data access strategy — queries for on-chain state, indexing pipelines, historical lookups, event subscriptions, cross-chain reads, or off-chain blob storage. Covers the two live Sui APIs (gRPC and GraphQL RPC), the Archival Store, the General-Purpose Indexer, the `sui-indexer-alt` custom indexing framework, and Walrus for off-chain blobs.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1150,1153,1154],{"name":1151,"slug":1152,"type":16},"Data Analysis","data-analysis",{"name":18,"slug":8,"type":16},{"name":23,"slug":24,"type":16},"2026-08-01T05:44:32.775598",{"slug":1157,"name":1157,"fn":1158,"description":1159,"org":1160,"tags":1161,"stars":25,"repoUrl":26,"updatedAt":1168},"composable-move-functions","design composable Sui Move functions","Use when writing Move functions on Sui, especially public APIs. Applies to function visibility (public vs entry), parameter ordering, and return patterns. Use whenever designing function signatures or deciding whether functions should transfer objects or return them.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1162,1165,1166,1167],{"name":1163,"slug":1164,"type":16},"API Development","api-development",{"name":1122,"slug":1123,"type":16},{"name":18,"slug":8,"type":16},{"name":23,"slug":24,"type":16},"2026-07-16T06:02:49.198495",{"slug":1170,"name":1170,"fn":1171,"description":1172,"org":1173,"tags":1174,"stars":25,"repoUrl":26,"updatedAt":1189},"frontend-apps","build Sui dApps with dapp-kit","Sui frontend \u002F dApp development with @mysten\u002Fdapp-kit-react (React) and @mysten\u002Fdapp-kit-core (Vue, vanilla JS, Svelte, Web Components, other frameworks). Use when building browser apps that connect Sui wallets, query on-chain state, or submit transactions. Covers wallet connection, network switching, transaction execution, query patterns with TanStack React Query, and the specific pitfalls of browser + wallet + async-indexer environments. Pair with the `sui-sdks` skill for @mysten\u002Fsui Transaction construction patterns and the `ptbs` skill for PTB semantics.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1175,1178,1181,1182,1185,1188],{"name":1176,"slug":1177,"type":16},"Frontend","frontend",{"name":1179,"slug":1180,"type":16},"React","react",{"name":18,"slug":8,"type":16},{"name":1183,"slug":1184,"type":16},"Svelte","svelte",{"name":1186,"slug":1187,"type":16},"Vue","vue",{"name":23,"slug":24,"type":16},"2026-08-01T05:44:28.958473",{"slug":1191,"name":1191,"fn":1192,"description":1193,"org":1194,"tags":1195,"stars":25,"repoUrl":26,"updatedAt":1199},"generate-sui-agent-config","generate configuration files for Sui projects","Generate a CLAUDE.md or AGENT.md configuration file for Sui projects. Use when setting up a new Sui project, when user mentions \"CLAUDE.md\", \"AGENT.md\", \"agent config\", or when working on a Sui project that does not already have a CLAUDE.md or AGENT.md in the project root.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1196,1197,1198],{"name":14,"slug":15,"type":16},{"name":1095,"slug":1096,"type":16},{"name":18,"slug":8,"type":16},"2026-07-16T06:00:59.981056",{"slug":1201,"name":1201,"fn":1202,"description":1203,"org":1204,"tags":1205,"stars":25,"repoUrl":26,"updatedAt":1210},"modern-move-syntax","write Move 2024 edition code for Sui","Use when writing Move code on Sui to ensure 2024 edition syntax is used. Applies to method calls, string literals, vector operations, option handling, loops, and struct unpacking. Use whenever writing Move code to avoid legacy function-call syntax patterns.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1206,1207,1208,1209],{"name":1082,"slug":1083,"type":16},{"name":1122,"slug":1123,"type":16},{"name":18,"slug":8,"type":16},{"name":23,"slug":24,"type":16},"2026-07-16T06:02:43.277596",{"slug":1212,"name":1212,"fn":1213,"description":1214,"org":1215,"tags":1216,"stars":25,"repoUrl":26,"updatedAt":1226},"move-unit-testing","write unit tests for Sui Move contracts","Use when writing unit tests for Move smart contracts on Sui. Applies to test function naming, assertions, test attributes, context usage, and cleanup patterns. Use whenever user asks to write tests, add tests, or test a Move module.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1217,1220,1221,1222,1225],{"name":1218,"slug":1219,"type":16},"QA","qa",{"name":1122,"slug":1123,"type":16},{"name":18,"slug":8,"type":16},{"name":1223,"slug":1224,"type":16},"Testing","testing",{"name":23,"slug":24,"type":16},"2026-08-01T05:44:30.788585",{"slug":1228,"name":1228,"fn":1229,"description":1230,"org":1231,"tags":1232,"stars":25,"repoUrl":26,"updatedAt":1239},"naming-conventions","apply Sui Move naming conventions","Use when writing or reviewing Move smart contracts on Sui. Applies to naming structs, error constants, regular constants, events, getter functions, capability types, hot potato types, and dynamic field keys. Use whenever creating new types, functions, or constants in Move code.",{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1233,1236,1237,1238],{"name":1234,"slug":1235,"type":16},"Best Practices","best-practices",{"name":1122,"slug":1123,"type":16},{"name":18,"slug":8,"type":16},{"name":23,"slug":24,"type":16},"2026-07-16T06:02:48.830052",37,{"items":1242,"total":1293},[1243,1249,1256,1265,1271,1278,1286],{"slug":1145,"name":1145,"fn":1146,"description":1147,"org":1244,"tags":1245,"stars":25,"repoUrl":26,"updatedAt":1155},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1246,1247,1248],{"name":1151,"slug":1152,"type":16},{"name":18,"slug":8,"type":16},{"name":23,"slug":24,"type":16},{"slug":1157,"name":1157,"fn":1158,"description":1159,"org":1250,"tags":1251,"stars":25,"repoUrl":26,"updatedAt":1168},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1252,1253,1254,1255],{"name":1163,"slug":1164,"type":16},{"name":1122,"slug":1123,"type":16},{"name":18,"slug":8,"type":16},{"name":23,"slug":24,"type":16},{"slug":1170,"name":1170,"fn":1171,"description":1172,"org":1257,"tags":1258,"stars":25,"repoUrl":26,"updatedAt":1189},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1259,1260,1261,1262,1263,1264],{"name":1176,"slug":1177,"type":16},{"name":1179,"slug":1180,"type":16},{"name":18,"slug":8,"type":16},{"name":1183,"slug":1184,"type":16},{"name":1186,"slug":1187,"type":16},{"name":23,"slug":24,"type":16},{"slug":1191,"name":1191,"fn":1192,"description":1193,"org":1266,"tags":1267,"stars":25,"repoUrl":26,"updatedAt":1199},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1268,1269,1270],{"name":14,"slug":15,"type":16},{"name":1095,"slug":1096,"type":16},{"name":18,"slug":8,"type":16},{"slug":1201,"name":1201,"fn":1202,"description":1203,"org":1272,"tags":1273,"stars":25,"repoUrl":26,"updatedAt":1210},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1274,1275,1276,1277],{"name":1082,"slug":1083,"type":16},{"name":1122,"slug":1123,"type":16},{"name":18,"slug":8,"type":16},{"name":23,"slug":24,"type":16},{"slug":1212,"name":1212,"fn":1213,"description":1214,"org":1279,"tags":1280,"stars":25,"repoUrl":26,"updatedAt":1226},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1281,1282,1283,1284,1285],{"name":1218,"slug":1219,"type":16},{"name":1122,"slug":1123,"type":16},{"name":18,"slug":8,"type":16},{"name":1223,"slug":1224,"type":16},{"name":23,"slug":24,"type":16},{"slug":1228,"name":1228,"fn":1229,"description":1230,"org":1287,"tags":1288,"stars":25,"repoUrl":26,"updatedAt":1239},{"slug":8,"name":9,"logoUrl":10,"githubOrg":11},[1289,1290,1291,1292],{"name":1234,"slug":1235,"type":16},{"name":1122,"slug":1123,"type":16},{"name":18,"slug":8,"type":16},{"name":23,"slug":24,"type":16},20]