The Problem
Every Sui developer knows this workflow: copy an address from the terminal, paste it into another command, make a typo, start over. Switch networks, forget which one youβre on, send to the wrong place. Deploy a contract, stare at a wall of JSON, hunt for your package ID.
The reality: juggling terminals, copying hashes, and hoping you didnβt make a typo
The Sui CLI is powerful. But powerful doesnβt mean pleasant.
I was spending more time managing the tooling than actually building.
The First Attempt: Raycast Extension
My first solution was a Raycast extension. If youβre on macOS, Raycast is like Spotlight on steroids: a command palette for everything.
I wrapped common Sui CLI commands into Raycast actions: check balances, transfer tokens, switch networks, inspect objects. All accessible with βK.
It worked great. For me. On my Mac.
But when I wanted to share it with my team:
A tool locked to one platform isnβt really shareable.βCool! How do I use it?β
βInstall Raycast, then add my extensionβ¦β
βIβm on Windows.β
Second Attempt: Desktop App
Next, I tried building a cross-platform desktop app with Tauri. Same functionality, but packaged as a native application that runs on macOS, Windows, and Linux.
It worked. But sharing still meant: βDownload this installer, run it, trust this unsigned app, allow network accessβ¦β
Too much friction.The Final Answer: Web
What if there was nothing to install at all?
A web app that talks to a local server. The UI runs in your browser. The server runs on your machine and executes CLI commands. Share a URL, and anyone can use it immediately.
The architecture was simple: a web UI that talks to a local bridge server. The bridge server runs on your machine and executes Sui CLI commands. Your keys never leave your computer.
Browser (any platform) β localhost:3001 β Your Sui CLI
β β β
hosted UI runs locally your keys stay hereSetup takes one command:
Three weeks of building later, I had something unexpected:
The web version was faster than the terminal.Not because it did less. It did the same things. But keyboard shortcuts eliminated repetitive typing. βK to open any command. Tab to autocomplete. Visual feedback caught errors before I submitted transactions.
The same workflow patterns from Raycast, now accessible to everyone.
But Is It Safe?
Hereβs the problem with most web-based crypto tools: they want your private keys.
Every browser wallet, every web app that can sign transactions: they all need access to your keys. Thatβs a massive attack surface. One compromised website, one malicious extension, and your funds are gone.
I refused to build another key-custody tool. But how do you build a web app that can sign transactions without holding keys?
The answer came from an unexpected place: the architecture of development tools like VS Codeβs Live Share.
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
β YOUR BROWSER β
β (hosted on cli.firstmovers.io) β
β β β
β HTTP requests β
β βΌ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β localhost:3001 β
β (runs on YOUR machine only) β
β β β
β CLI commands β
β βΌ β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ€
β YOUR SUI CLI β
β (your keys, your config) β
βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββThe web UI is just a pretty face. All the real work happens on your machine through a tiny bridge server. Your private keys never touch the internet. They never leave your computer. The hosted web app literally cannot access them.
The best of both worlds: convenience of a web interface + security of local key storage.
Real Workflows, Real Examples
Enough theory. Let me show you what using Sui CLI Web actually looks like.
Example 1: Checking Balances Across Networks
The old way (terminal):
sui client switch --env testnet
sui client gas
# Copy output, parse mentally
sui client switch --env mainnet
sui client gas
# Try to remember testnet numbers
The Sui CLI Web way:
Press Cmd+K, type βbalanceβ. See all your addresses, all networks, all tokens in one view. Click to switch. No commands to remember.
Example 2: Transferring SUI Tokens
The old way:
# First, find recipient address (where did I put it?)
# Check balance to pick a coin
sui client gas
# Copy coin object ID
sui client transfer-sui --to 0x1234...abcd --sui-coin-object-id 0xabc...123 --gas-budget 10000000
# Hope you didn't typo anything
The Sui CLI Web way:
Cmd+K β βtransferβ β Select recipient from address book β Pick coin visually β Confirm. Done in 5 seconds with zero chance of address typos.
Example 3: Deploying a Move Contract
The old way:
cd my-project
sui move build
# Scroll through warnings
sui client publish --gas-budget 100000000
# Wait... did it work? Parse the JSON output
# Try to find the package ID in the wall of text
The Sui CLI Web way: Open Move tab β Select project folder β Click Build β Review results visually β Click Deploy β See your package ID highlighted, ready to copy.
The Difference
Itβs not about doing things the CLI canβt do. Itβs about doing the same things faster, with fewer mistakes, and without breaking your flow.
Whatβs Next
The core covers about 95% of Sui CLI commands: address management, token transfers, gas splitting/merging, Move development, PTB builder, transaction inspection, key management, dynamic fields, security verification. Most daily workflows are already here.
But thereβs still room to improve.
Transaction history
Browse recent activity, filter by type, search by hash. The data exists on-chain. It just needs a proper interface.
NFT gallery
See your NFTs as images instead of object IDs. Grid view, collection grouping, quick transfer actions.
Better onboarding
Installation guides for Windows, Linux, macOS. Video walkthroughs for common tasks.
The development philosophy stays simple: ship features that solve real problems. No bloat. Every addition has to earn its place.
βThe best features come from real pain points.β
If youβre using the tool and hit friction, I want to know.
Try It
npx sui-cli-web-server
Then open cli.firstmovers.io. Your existing Sui CLI config works automatically.
Launch the App
Jump straight in. The app will guide you through server setup if needed.
Follow Updates
Feature announcements and ecosystem insights on X.
Questions or feedback? Find me on X.







