superpowers-api-skill
v0.1.1
Published
HTTP-only Super API skill installer for Claude Code, Codex, and OpenClaw
Maintainers
Readme
Super API Skill Installer
Install the Super API as an HTTP-only agent skill for Claude Code, Codex, and OpenClaw.
No MCP server is required. The skill teaches agents to call the OpenAI-compatible Super API directly:
https://app.getsupers.com/v1/chat/completionsInstall
npx -y superpowers-api-skill installInstall and save your API key:
npx -y superpowers-api-skill install --api-key sk-supers-...If npm reports EACCES in ~/.npm/_cacache, run with a temporary npm cache:
npm_config_cache="$(mktemp -d)" npx -y superpowers-api-skill install --api-key sk-supers-...Or permanently repair the local npm cache:
sudo chown -R "$(id -u):$(id -g)" ~/.npmInstall only specific agents:
npx -y superpowers-api-skill install --agents claude,codexAuth
You can also use environment variables:
export SUPER_API_KEY="sk-supers-..."Or save the key for the skill:
npx -y superpowers-api-skill auth --api-key sk-supers-...Credentials are saved to:
~/.config/super-api/config.jsonCheck Setup
npx -y superpowers-api-skill doctorWhat It Installs
The installer copies SKILL.md and references into:
~/.claude/skills/super-api
~/.codex/skills/super-api
~/.openclaw/skills/super-apiAPI
The skill uses:
GET /v1/models
POST /v1/chat/completions
POST /v1/completionsCache is enabled by default with "cache": true. Set "cache": false for private, one-off, live, or sensitive tasks.
