Install
openclaw skills install super-powersInstall and run the published SuperPowers desktop streamer npm package. Use when a user needs a portable ClawHub skill that installs the third-party npm package `superpowers-ai`, executes its CLI in the user's current environment, logs in or creates an account with email or phone verification, starts the streamer, opens the printed control link, and helps recover from common npm or runtime issues without requiring source-code access.
openclaw skills install super-powersconfig = {
};Use this skill when the user only needs the published npm package workflow.
Assume:
This skill's helper script does not build local source code.
It will:
superpowers-ai into the skill's local .superpowers/npm directoryIt does not perform a global npm install.
Use this skill only when that package-install-and-run behavior is what the user wants.
The helper is designed around this published package:
superpowers-aihttps://www.npmjs.com/package/superpowers-aisuperpowersairohan@getsupers.comWhen explaining this skill, be explicit that it installs and executes that published npm package on the user's machine.
The helper is intentionally pinned to that one package. It does not accept an alternate npm package name.
node and npm exist.superpowers-ai into .superpowers/npm./general control link.Run:
node scripts/install_and_run.js
That script:
superpowers-ai into .superpowers/npmInstall only:
node scripts/install_and_run.js --install-only
Start only:
node scripts/install_and_run.js --start
Stop the local streamer:
node scripts/install_and_run.js --stop
Show the saved account:
node scripts/install_and_run.js --whoami
Log out:
node scripts/install_and_run.js --logout
Through this skill helper, the main commands are:
node scripts/install_and_run.js
node scripts/install_and_run.js --start
node scripts/install_and_run.js --stop
node scripts/install_and_run.js --whoami
node scripts/install_and_run.js --logout
On macOS, the user may need to allow:
If macOS prompts for permissions, approve them and rerun:
node scripts/install_and_run.js --start
Read references/install.md for install and usage wording.
Read references/troubleshooting.md for common npm, login, and streaming failures.
node scripts/install_and_run.js --help node scripts/install_and_run.js node scripts/install_and_run.js --start node scripts/install_and_run.js --stop