brand-design
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 for the EVE Frontier track on Sui (game-economy integration). Use when the user mentions EVE Frontier.
$ npx -y skills add pivyme/suiperpower --skill eve-frontier --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/eve-frontierContext preview
The summary Claude sees to decide when to auto-load this skill.
Build for the EVE Frontier track on Sui (game-economy integration). Use when the user mentions EVE Frontier.
name: eve-frontier description: Build for the EVE Frontier track on Sui (game-economy integration). Use when the user mentions EVE Frontier.
# 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 eve-frontier build completed # Or use "failed" / "aborted" if it ended that way. command -v suiperpower >/dev/null 2>&1 && suiperpower track eve-frontier 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.
Guides the user through building a Smart Assembly extension for EVE Frontier on Sui. Picks the right assembly type (Turret, Gate, or StorageUnit), scaffolds from the official builder-scaffold repo, writes the Move extension logic using the typed witness pattern, tests locally with Docker, deploys to testnet, and registers the extension with the assembly. The user ends up with a working, deployable game mod.
If you activated this and the user actually wants something else, consult `skills/SKILL_ROUTER.md` and hand off.
If the user is unsure what to build, interview for:
## eve-frontier session, <timestamp> - assembly type: <turret | gate | storage_unit> - extension function: <get_target_priority_list | issue_jump_permit | deposit/withdraw wrapper> - auth witness: <module::StructName> - package id (testnet): <id or pending> - extension registered: <yes | pending> - uses: <walrus | seal | zklogin | none> - open issues: <list>
| Use case | Assembly type | Extension pattern | |---|---|---| | Custom targeting logic (friend/foe, priority, conditional) | Turret (`world::turret`) | Implement `get_target_priority_list`, return BCS-encoded priority list. Uses OnlineReceipt hot potato. | | Access control for travel (allowlist, token-gate, reputation, paid entry) | Gate (`world::gate`) | Issue `JumpPermit` via `gate::issue_jump_permit`. Permit model, not bool return. | | Vending machine, trading post, item exchange | StorageUnit (`world::storage_unit`) | Wrap `deposit_item`/`withdraw_item` with your Auth witness and business logic. No hook function. |
If the user's idea spans two types (e.g., a gate that also sells access passes via a storage unit), start with the primary type and extend. Each assembly is a separate module; they compose through shared state or cross-module calls.
Build something meaningful, on Sui. A superpower for AI coding agents to ship real products on Sui. Your AI coding agent has never written Move before. Suiperpower fixes that.
Repo: pivyme/suiperpower
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…