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.
Run an in-house P0-P3 security review on a Sui Move package. Use when the user wants a Move security review or self-audit.
$ npx -y skills add pivyme/suiperpower --skill review-move --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/review-moveContext preview
The summary Claude sees to decide when to auto-load this skill.
Run an in-house P0-P3 security review on a Sui Move package. Use when the user wants a Move security review or self-audit.
name: review-move description: Run an in-house P0-P3 security review on a Sui Move package. Use when the user wants a Move security review or self-audit.
# 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 review-move build completed # Or use "failed" / "aborted" if it ended that way. command -v suiperpower >/dev/null 2>&1 && suiperpower track review-move 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.
Runs an in-house security review on a Sui Move package. The output is a triaged finding list using P0 to P3 severity from `skills/data/guides/security-checklist.md`, plus a section flagging any hand-rolled patterns that OpenZeppelin Sui libraries already implement safely. The goal is to ship cleaner code into a real audit (or straight to mainnet, when an audit is not in scope) by handling the obvious classes of bugs first.
This is not a substitute for an external auditor. It is a self-review pass that removes the embarrassing bugs before paid eyes see the code.
If you activated this and the user actually wants something else, consult `skills/SKILL_ROUTER.md` and hand off.
A finding list, written into the project as `.suiperpower/review-<timestamp>.md`, structured by severity:
Each finding has: location (file:line), severity, observed pattern, why it is a problem, recommended fix.
A separate "OZ migration candidates" section names hand-rolled patterns that OpenZeppelin Sui already covers and gives the swap.
The skill writes the finding count back to `.suiperpower/build-context.md`:
### review-move session, <timestamp> - P0: <count> - P1: <count> - P2: <count> - P3: <count> - review file: .suiperpower/review-<timestamp>.md - OZ swap candidates: <count>
1. **Inventory**
2. **P0 walk**
3. **P1 walk**
4. **P2 walk**
5. **P3 walk**
6. **OZ migration scan**
7. **Triage and write**
8. **Hand off**
Before reporting done, the skill asks itself:
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…