A step-by-step guide from skill folder to live listing
Install the SkillPort CLI globally via npm.
$ npm install -g @skillport/cliCreate an Ed25519 key pair for package authentication. Keys are stored in ~/.skillport/keys/.
$ skillport initPackage your skill folder into a signed .ssp file. The CLI runs a security scan and quality check automatically.
$ skillport export ./my-skill -o my-skill.sspIf the scan finds critical issues, export will be blocked. Fix the issues and try again.
Authenticate with your GitHub account. This also registers your signing key with the marketplace.
$ skillport loginUpload your .ssp package to the marketplace. Set a price in USD cents (0 for free).
$ skillport publish my-skill.ssp --price 499Your skill will be uploaded as a draft. Go to your dashboard to publish it live.
Your skill appears on the marketplace with its security scan results, risk score, and permission summary.
Buyers can find your skill via search, browse by category, or through AI agent recommendations via the MCP server.
Monitor downloads, reviews, and revenue from your dashboard. Update versions by publishing a new .ssp with the same skill name.