launch-coin
Launch a coin on Sui with the Move coin module, tokenomics, TreasuryCap. Use when the user wants to mint, launch, or create a Sui coin or token.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Launch a coin on Sui with the Move coin module, tokenomics, TreasuryCap. Use when the user wants to mint, launch, or create a Sui coin or token.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
Pick a brand name, color palette, or typography for a Sui product. Use when the user wants to name or brand a Sui project.
Build an AI agent that signs Sui transactions or runs onchain actions. Use when the user wants an AI agent on Sui.
Build a Sui data indexer or analytics pipeline. Use when the user wants to index Sui events, build a pipeline, or query Sui RPC data.
Build a mobile Sui app with React Native or the Sui Mobile SDK. Use when the user wants iOS, Android, or mobile Sui flows.
Pair with a coding agent to build a Sui MVP step by step. Use when the user wants to build the MVP iteratively with an agent.
Author Sui Move modules and packages with a senior Move dev as your pair. Use when the user wants to write, build, author, add, or scaffold Move code, smart contracts, or Sui programs at the module or function level, in any phrasing.
| name | launch-coin |
| description | Launch a coin on Sui with the Move coin module, tokenomics, TreasuryCap. Use when the user wants to mint, launch, or create a Sui coin or token. |
# Suiperpower telemetry. Routes through the CLI so projects.json + Convex stay in sync.
# Silent on failure so the skill never blocks. Opt out: SUIPERPOWER_TELEMETRY=off.
#
# AGENT NOTE: when this skill finishes, run the matching completion command:
# suiperpower track launch-coin build completed
# Or use "failed" / "aborted" if it ended that way.
command -v suiperpower >/dev/null 2>&1 && suiperpower track launch-coin build started >/dev/null 2>&1 &
true
If TEL_PROMPTED is no, before doing real work, ask the user:
Help suiperpower get better. We track which skills get used and how long they take. No code, no file paths, no PII. Change anytime in
~/.suiperpower/config.json.A) Sure, anonymous B) No thanks
Write the answer to ~/.suiperpower/config.json telemetryTier field and create ~/.suiperpower/.telemetry-prompted. Then continue.
Authors a Sui coin module using the standard coin::create_currency flow, decides tokenomics (fixed supply, mintable, burnable), handles TreasuryCap custody, sets the coin metadata so wallets render it correctly, and verifies a real testnet mint and transfer end to end.
Stops the user from making the most common coin-launch mistakes: leaking TreasuryCap, using ad-hoc balance tracking instead of Coin<T>, or shipping a coin with a nonsensical decimals choice.
kiosk-marketplace (with a custom Object type).find-next-sui-idea first.If you activated this and the user actually wants something else, consult skills/SKILL_ROUTER.md and hand off.
.suiperpower/build-context.md.If unclear, interview the user for:
A Move module implementing the coin via coin::create_currency.
A test asserting initial mint and a transfer.
An on-chain CoinMetadata Object (or a frozen one).
A live testnet deploy with a real mint and transfer captured.
Append to .suiperpower/build-context.md:
## launch-coin session, <timestamp>
- coin: <Symbol> (<full name>)
- decimals: <n>
- initial supply: <amount>
- supply policy: <fixed | capped | open>
- treasury cap holder: <addr | multisig | consumed>
- first mint tx digest: <digest>
- first transfer tx digest: <digest>
- open issues: <list>
The skill never deletes files outside the integration source path without explicit user confirmation.
Context gathering
.suiperpower/build-context.md if present.Author the module
sources/<symbol>.move.public struct <SYMBOL> has drop {}.init, call coin::create_currency with the metadata.metadata is shared, frozen, or transferred.Supply policy
init, then consume the TreasuryCap so no more can ever be minted. Two correct approaches: (a) wrap the TreasuryCap inside a module-level struct that exposes no public mint function, or (b) call coin::treasury_into_supply(treasury) to irreversibly convert TreasuryCap into a Supply<T> and store or destroy it. Do NOT freeze or share the TreasuryCap (official Sui docs explicitly warn against this, as sharing allows anyone to mint and freezing may allow malicious use of currency-owner functions). Note: coin::burn burns a Coin<T>, not a TreasuryCap.TreasuryCap, but enforce a cap inside a wrapper mint function. The TreasuryCap is stored inside the wrapper struct, never exposed publicly.TreasuryCap and document who holds it.Tests
Local build
sui move build and sui move test.Testnet deploy
deploy-to-testnet if not already deployed.package_id and the CoinMetadata Object id.Verify in wallet
Writeback
.suiperpower/build-context.md.Closing handoff
.suiperpower/intent.md exists and the session was non-trivial (new coin module, supply policy decision, TreasuryCap custody, testnet deploy with recorded ids), recommend verify-against-intent as the next step so the supply policy and capability holder are checked before mainnet.intent.md exists and the session was non-trivial, surface that gap once: offer clarify-intent to backfill, do not force it.Before reporting done, the skill asks itself the following and refuses to declare success if any answer is no:
CoinMetadata configured with a sane name, symbol, decimals, and icon URL?TreasuryCap custody documented (multisig address, consumed via wrapper/treasury_into_supply, or explicit holder), not just sent to a default EOA?If any answer is no, the skill reports the gap and works through it before claiming the launch is complete.
On-demand references (load when relevant to the user's question):
references/coin-module-template.md: A full Move module skeleton with metadata setup and three supply variants.references/tokenomics-decisions.md: Decimals, supply, custody decisions and their implications.Knowledge docs (load when scope expands beyond what is in references):
skills/data/sui-knowledge/03-move-and-objects.md: Coin standard context.claude "/suiper:launch-coin <your message>"codex "/launch-coin <your message>"grok, then /launch-coin <your message> in the session~/.cursor/rules/launch-coin.mdc and reference it.If you activated this and the user actually wants something else, consult skills/SKILL_ROUTER.md and hand off.