/openzeppelin-sui-libs
Use OpenZeppelin's audited Move libraries on Sui (access control, pausable, ownable). Use when the user mentions OpenZeppelin, OZ, or audited Move libs.
$ npx -y skills add pivyme/suiperpower --skill openzeppelin-sui-libs --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
- Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.
- You can call itInvoke it directly when you want it.
- Slash command
/openzeppelin-sui-libs
Context preview
The summary Claude sees to decide when to auto-load this skill.
Use OpenZeppelin's audited Move libraries on Sui (access control, pausable, ownable). Use when the user mentions OpenZeppelin, OZ, or audited Move libs.
SKILL.md
openzeppelin-sui-libs.SKILL.mdname: openzeppelin-sui-libs
description: Use OpenZeppelin's audited Move libraries on Sui (access control, pausable, ownable). Use when the user mentions OpenZeppelin, OZ, or audited Move libs.
Preamble (run first)
# 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 openzeppelin-sui-libs build completed
# Or use "failed" / "aborted" if it ended that way.
command -v suiperpower >/dev/null 2>&1 && suiperpower track openzeppelin-sui-libs 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.
What this skill does
Surveys the user's Move package for hand-rolled patterns that OZ Contracts for Sui (v1.1.0) replaces, pulls in the right OZ packages via MVR, and rewrites the affected code paths. The library covers three areas:
1. **Safe ownership transfer** (`openzeppelin_access`): two-step transfer and time-locked delayed transfer wrappers for `key + store` objects. 2. **Integer math** (`openzeppelin_math`): overflow-safe `mul_div`, `sqrt`, `log2`, `log10`, `average`, shift ops, modular arithmetic, `u512` wide type, and decimal scaling. 3. **Fixed-point math** (`openzeppelin_fp_math`): `UD30x9` (unsigned) and `SD29x9` (signed) decimal types with 9 decimal places, matching Sui coin precision.
That is the complete scope. There is no access_control role registry, no pausable, no ownable, no upgradeable wrapper in OZ Sui. If the user needs those patterns, they stay hand-rolled.
When to use it
- Admin capabilities that need safe two-step or time-locked ownership handoff.
- Arithmetic-heavy DeFi logic (AMMs, lending, vaults) where hand-rolled `mul_div` or fixed-point math is a liability.
- Decimal scaling between tokens with different precision (e.g., 6-decimal USDC to 9-decimal Sui coins).
When NOT to use it
- Patterns OZ Sui does not cover: role-based access control, pausable, multi-sig. Those stay hand-rolled.
- Toy projects where hand-rolling teaches the underlying pattern.
- If the user's bespoke logic has constraints OZ wrappers do not match (rare); document and stay custom.
If you activated this and the user actually wants something else, consult `skills/SKILL_ROUTER.md` and hand off.
Inputs
- A Sui project with at least one Move package.
- Optional: `.suiperpower/build-context.md` and any prior `review-move` output.
If unclear, interview the user for:
- Which patterns are present (admin cap transfer, time-locked actions, hand-rolled arithmetic)?
- Are there custom patterns the team is attached to for non-technical reasons?
- What is the test coverage for the affected code paths? OZ migration without tests is dangerous.
Outputs
- Updated `Move.toml` with MVR dependencies for the adopted OZ packages.
- Move modules rewritten to use OZ primitives.
- Tests updated and passing.
- Append to `.suiperpower/build-context.md`:
## openzeppelin-sui-libs session, <timestamp>
- oz version: 1.1.0 (contracts-sui)
- packages adopted: <list of openzeppelin_access, openzeppelin_math, openzeppelin_fp_math>
- hand-rolled patterns removed: <list>
- test count before / after: <n> / <n>
- open issues: <list>
The skill never deletes files outside the integration source path without explicit user confirmation.
Workflow
1. **Context gathering**
- Read `.suiperpower/build-context.md` if present.
- Identify hand-rolled patterns: admin cap transfers, manual delay logic, unsafe arithmetic.
2. **OZ package survey**
- Cross-reference with the three OZ packages. See `references/oz-modules-quickref.md`.
- Pick the matching package(s). Do not import packages the project does not need.
3. **Add MVR dependencies**
- Install the MVR CLI if not present. Add deps to `Move.toml`:
openzeppelin_access = { r.mvr = "@openzeppelin-move/access" }
openzeppelin_math = { r.mvr = "@openzeppelin-move/integer-math" }
openzeppelin_fp_math = { r.mvr = "@openzeppelin-move/fixed-point-math" }- Only add the packages the project actually uses.
- Run `sui move build`. Resolve any conflicts.
4. **Migration plan**
- For each hand-rolled pattern, write down: which OZ module replaces it, which functions change, which tests cover the path.
- Walk the plan back to the user before touching code.
5. **Refactor**
- Replace one pattern at a time. Rebuild and run tests after each.
- If a test fails, the migration is incomplete; do not move on.
6. **API check**
- OZ Sui APIs are not one-to-one with OZ EVM APIs. Read the OZ module's source, not by analogy.
- `two_step_transfer` wraps objects, not storage slots. `delayed_transfer` needs a `Clock` reference.
- Math functions return `Option<T>`, not abort-on-overflow. Handle the `None` case.
7. **Test pass**
- Run the full `sui move test` suite. Refuse to declare done if anything is red.
- For each replaced pattern, confirm the new test exercises the OZ-backed path.
8. **Writeback**
- Append session details to `.suiperpower/build-context.md`.
9. **Closing handoff**
- If `.suiperpower/intent.md` exists and the session was non-trivial (OZ modules pinned in `Move.toml`, hand-rolled patterns migrated to OZ-backed paths, capability-by-reference refactors), recommend `verify-against-intent` as the next step so the new OZ-backed surface is checked before shipping.
- If no `intent.md` exists and the session was non-trivial, surface that
Read more
name: openzeppelin-sui-libs description: Use OpenZeppelin's audited Move libraries on Sui (access control, pausable, ownable). Use when the user mentions OpenZeppelin, OZ, or audited Move libs.
Preamble (run first)
# 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 openzeppelin-sui-libs build completed # Or use "failed" / "aborted" if it ended that way. command -v suiperpower >/dev/null 2>&1 && suiperpower track openzeppelin-sui-libs 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.
What this skill does
Surveys the user's Move package for hand-rolled patterns that OZ Contracts for Sui (v1.1.0) replaces, pulls in the right OZ packages via MVR, and rewrites the affected code paths. The library covers three areas:
1. **Safe ownership transfer** (`openzeppelin_access`): two-step transfer and time-locked delayed transfer wrappers for `key + store` objects. 2. **Integer math** (`openzeppelin_math`): overflow-safe `mul_div`, `sqrt`, `log2`, `log10`, `average`, shift ops, modular arithmetic, `u512` wide type, and decimal scaling. 3. **Fixed-point math** (`openzeppelin_fp_math`): `UD30x9` (unsigned) and `SD29x9` (signed) decimal types with 9 decimal places, matching Sui coin precision.
That is the complete scope. There is no access_control role registry, no pausable, no ownable, no upgradeable wrapper in OZ Sui. If the user needs those patterns, they stay hand-rolled.
When to use it
- Admin capabilities that need safe two-step or time-locked ownership handoff.
- Arithmetic-heavy DeFi logic (AMMs, lending, vaults) where hand-rolled `mul_div` or fixed-point math is a liability.
- Decimal scaling between tokens with different precision (e.g., 6-decimal USDC to 9-decimal Sui coins).
When NOT to use it
- Patterns OZ Sui does not cover: role-based access control, pausable, multi-sig. Those stay hand-rolled.
- Toy projects where hand-rolling teaches the underlying pattern.
- If the user's bespoke logic has constraints OZ wrappers do not match (rare); document and stay custom.
If you activated this and the user actually wants something else, consult `skills/SKILL_ROUTER.md` and hand off.
Inputs
- A Sui project with at least one Move package.
- Optional: `.suiperpower/build-context.md` and any prior `review-move` output.
If unclear, interview the user for:
- Which patterns are present (admin cap transfer, time-locked actions, hand-rolled arithmetic)?
- Are there custom patterns the team is attached to for non-technical reasons?
- What is the test coverage for the affected code paths? OZ migration without tests is dangerous.
Outputs
- Updated `Move.toml` with MVR dependencies for the adopted OZ packages.
- Move modules rewritten to use OZ primitives.
- Tests updated and passing.
- Append to `.suiperpower/build-context.md`:
## openzeppelin-sui-libs session, <timestamp> - oz version: 1.1.0 (contracts-sui) - packages adopted: <list of openzeppelin_access, openzeppelin_math, openzeppelin_fp_math> - hand-rolled patterns removed: <list> - test count before / after: <n> / <n> - open issues: <list>
The skill never deletes files outside the integration source path without explicit user confirmation.
Workflow
1. **Context gathering**
- Read `.suiperpower/build-context.md` if present.
- Identify hand-rolled patterns: admin cap transfers, manual delay logic, unsafe arithmetic.
2. **OZ package survey**
- Cross-reference with the three OZ packages. See `references/oz-modules-quickref.md`.
- Pick the matching package(s). Do not import packages the project does not need.
3. **Add MVR dependencies**
- Install the MVR CLI if not present. Add deps to `Move.toml`:
openzeppelin_access = { r.mvr = "@openzeppelin-move/access" }
openzeppelin_math = { r.mvr = "@openzeppelin-move/integer-math" }
openzeppelin_fp_math = { r.mvr = "@openzeppelin-move/fixed-point-math" }- Only add the packages the project actually uses.
- Run `sui move build`. Resolve any conflicts.
4. **Migration plan**
- For each hand-rolled pattern, write down: which OZ module replaces it, which functions change, which tests cover the path.
- Walk the plan back to the user before touching code.
5. **Refactor**
- Replace one pattern at a time. Rebuild and run tests after each.
- If a test fails, the migration is incomplete; do not move on.
6. **API check**
- OZ Sui APIs are not one-to-one with OZ EVM APIs. Read the OZ module's source, not by analogy.
- `two_step_transfer` wraps objects, not storage slots. `delayed_transfer` needs a `Clock` reference.
- Math functions return `Option<T>`, not abort-on-overflow. Handle the `None` case.
7. **Test pass**
- Run the full `sui move test` suite. Refuse to declare done if anything is red.
- For each replaced pattern, confirm the new test exercises the OZ-backed path.
8. **Writeback**
- Append session details to `.suiperpower/build-context.md`.
9. **Closing handoff**
- If `.suiperpower/intent.md` exists and the session was non-trivial (OZ modules pinned in `Move.toml`, hand-rolled patterns migrated to OZ-backed paths, capability-by-reference refactors), recommend `verify-against-intent` as the next step so the new OZ-backed surface is checked before shipping.
- If no `intent.md` exists and the session was non-trivial, surface that
Showing the first part of this file.
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
Other skills on suiperpower.
- /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.
Open skill - /build-ai-agent
Build an AI agent that signs Sui transactions or runs onchain actions. Use when the user wants an AI agent on Sui.
Open skill - /build-data-pipeline
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.
Open skill - /build-mobile-sui
Build a mobile Sui app with React Native or the Sui Mobile SDK. Use when the user wants iOS, Android, or mobile Sui flows.
Open skill - /build-with-claude
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.
Open skill - /build-with-move
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.
Open skill

