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.
Integrate Pyth oracle prices into a Sui Move package. Use when the user mentions Pyth or wants price oracles on Sui.
$ npx -y skills add pivyme/suiperpower --skill pyth-oracle --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/pyth-oracleContext preview
The summary Claude sees to decide when to auto-load this skill.
Integrate Pyth oracle prices into a Sui Move package. Use when the user mentions Pyth or wants price oracles on Sui.
name: pyth-oracle description: Integrate Pyth oracle prices into a Sui Move package. Use when the user mentions Pyth or wants price oracles on Sui.
# 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 pyth-oracle build completed # Or use "failed" / "aborted" if it ended that way. command -v suiperpower >/dev/null 2>&1 && suiperpower track pyth-oracle 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.
Integrates Pyth pull-based price feeds into a Sui project so the user's Move contract can read real-time, signed prices for 1500+ assets. Walks the user through the Move dependency, TS client setup, on-chain price consumption, and verifies a real price read on testnet before declaring done.
If you activated this and the user actually wants something else, consult `skills/SKILL_ROUTER.md` and hand off.
If unclear, interview the user for:
## pyth-oracle session, <timestamp> - feeds: <list of feed IDs> - staleness: <max_age_secs> - network: testnet | mainnet - hermes endpoint: <url> - pyth state id: <id> - wormhole state id: <id> - verified tx digest: <digest> - open issues: <list>
The skill never deletes files outside the integration source path without explicit user confirmation.
Pyth is a pull oracle. The price lives off chain on Hermes servers. Your client fetches a signed price update, then passes it on chain in the same PTB that reads the price. The flow:
1. TS client calls Hermes: getPriceFeedsUpdateData([feedId]) 2. TS client builds PTB: a. pythClient.updatePriceFeeds(tx, updateData, [feedId]) -> PriceInfoObject IDs b. tx.moveCall your_module::use_price(priceInfoObjectId, clock, maxAge) 3. User signs and executes the PTB 4. Your Move contract reads price from &PriceInfoObject via get_price_no_older_than
Your Move contract never calls Pyth update functions directly. It only receives `&PriceInfoObject` as a parameter. The TS SDK handles updates. This is critical because the Pyth package ID changes on upgrades, and hard-coding it in Move would brick your contract.
1. **Context gathering**
2. **Add Move dependency**
3. **Write the Move contract**
4. **Write the TS client**
5. **Look up feed IDs**
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…