From suiper
Lists installed skills grouped by phase (learn/idea/build/ship/grow) and helps users pick the right one for their current goal on Sui.
How this skill is triggered — by the user, by Claude, or both
Slash command
/suiper:navigate-skillsThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
```bash
# 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 navigate-skills build completed
# Or use "failed" / "aborted" if it ended that way.
command -v suiperpower >/dev/null 2>&1 && suiperpower track navigate-skills 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.
A meta skill. It lists what skills are installed, groups them by phase (learn / idea / build / ship / grow), and helps the user pick the right one for their current goal. It reads the canonical catalog cli/data/sui-skills.json and the routing rules in skills/SKILL_ROUTER.md. It is the answer to the question "which suiperpower skill should I use right now".
It does not run other skills. It hands the user a name and the trigger phrase to use. The user activates the chosen skill.
suiperpower skills), not via an agent. The CLI command is its own surface.SKILL.md instead.If you activated this and the user actually wants something else, consult skills/SKILL_ROUTER.md and hand off.
.suiperpower/idea-context.md or .suiperpower/build-context.md to constrain suggestions to the user's project shape.If unclear, ask:
A short response of three parts:
cli/branding.ts.The skill never invents skill names. If the catalog does not contain a skill matching the user's goal, it says so.
Load the catalog
cli/data/sui-skills.json (built-in suiperpower skills) and skills/SKILL_ROUTER.md if present.~/.suiperpower/skills-installed.json. If they diverge, prefer the installed manifest, since that is what the user actually has.Classify the goal
Match against the catalog
Apply router rules
skills/SKILL_ROUTER.md declares a "common-wrong-pick" route for the user's phrasing, use that route's recommendation.Format the response
Hand off
Before reporting done, the skill asks itself:
If any answer is no, the skill keeps working before recommending.
On-demand references (load when relevant to the user's question):
references/phase-glossary.md: One-paragraph definitions of learn, idea, build, ship, grow phases.references/router-precedence.md: Tie-break rules when two skills could apply.Knowledge docs (load when scope expands beyond what is in references):
cli/data/sui-skills.json: The canonical catalog of suiperpower skills.skills/SKILL_ROUTER.md: Per-trigger-phrase routing table (authored in Phase 18).claude "/suiper:navigate-skills <your message>"codex "/navigate-skills <your message>"~/.cursor/rules/navigate-skills.mdc and reference it.If you activated this and the user actually wants something else, consult skills/SKILL_ROUTER.md and hand off.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub pivyme/suiperpower --plugin suiper