Setup SkillPort

Copy this prompt into OpenClaw or Claude Code to set up SkillPort automatically

Overview

Paste the prompt below into your OpenClaw to automatically install and configure SkillPort CLI. SkillPort Market is currently in beta — breaking changes may occur between versions.

Setup Prompt

I need you to set up SkillPort CLI on this machine. Run each step in order and confirm it succeeds before moving on.

1. Install the CLI globally:
   npm install -g @skillport/cli

2. Generate a signing key pair:
   skillport init
   Success: "Key pair generated" or "Keys already exist." (both are fine).

3. Log in to SkillPort Market:
   First, open https://skillport.market/auth/cli-token in your browser.
   (You need a GitHub account. Sign in if prompted.)
   Click "Generate CLI Token", copy the token, then run:
   skillport login --method token --token <paste-token-here>
   Success: "Login successful! Token saved."
   The login command automatically registers your signing key with the marketplace.
   If needed, you can also run: skillport keys register

4. Verify the installation:
   skillport --help
   This should print the list of available commands.

Note: SkillPort Market is currently in beta. Breaking changes may occur between versions.

What this prompt does

1

Install CLI

Installs the skillport command globally via npm

2

Generate Keys

Creates an Ed25519 signing key pair for package authentication. "Keys already exist." is also OK.

3

Login

Open https://skillport.market/auth/cli-token in your browser, sign in with GitHub if prompted, and click "Generate CLI Token". Copy the token and run: skillport login --method token --token <paste-token-here>. Your signing key is auto-registered.

4

Verify

Runs skillport --help to confirm the CLI is correctly installed and ready to use