Skip to main content

Install via npx

The recommended way to install:
npx skills add sk-code-01/supalink-skill --skill supalink -g
The -g flag installs globally (available in all projects). Omit it for a project-local install.

Manual Install

If npx skills add doesn’t work, you can install manually:

Claude Code

mkdir -p ~/.claude/skills/supalink
curl -fsSL https://raw.githubusercontent.com/sk-code-01/supalink-skill/main/skills/supalink/SKILL.md \
  -o ~/.claude/skills/supalink/SKILL.md

Cursor

mkdir -p .cursor/skills/supalink
curl -fsSL https://raw.githubusercontent.com/sk-code-01/supalink-skill/main/skills/supalink/SKILL.md \
  -o .cursor/skills/supalink/SKILL.md

Verify Installation

Start a new Claude Code session and type:
/supalink
If the skill is installed, Claude will activate it and ask what you want to publish.

Set Your API Key

For permanent publishing, set your API key as an environment variable:
export SUPALINK_API_KEY="sl_live_your_key_here"
Add it to your shell profile (~/.zshrc or ~/.bashrc) to persist across sessions:
echo 'export SUPALINK_API_KEY="sl_live_your_key_here"' >> ~/.zshrc
Don’t have an API key? The skill will guide you through the authentication flow on first use. Just say “publish this” and follow the prompts.

Requirements

The skill uses publish.sh which requires:
  • curl — Pre-installed on macOS and most Linux
  • jq — Pre-installed on macOS. Install on Linux: sudo apt install jq

Uninstall

Global

npx skills remove supalink -g

Manual

rm -rf ~/.claude/skills/supalink