Skillset

Publish to Skillset

Pack any directory with an skillset.yaml and publish it with the CLI. New publishers go through review (typically < 24 hours); trusted publishers ship instantly.

1. Install the CLI

$curl -fsSL install.skillset.dev | sh

2. Sign in

$skillset login

3. Scaffold a manifest

$skillset init

4. Publish

$skillset publish

Manifest example

name: research-deep
version: 1.0.0
type: mcp-server
runtimes: [claude-code, claude-desktop, cursor]
description: Multi-step web research with citations and summarization.
author: you
license: MIT
entrypoint: ./server.ts
managed_credentials:
  - provider: openai
    scopes: [chat.completions]
    estimated_cost_per_call_usd: 0.002
  - provider: tavily
    scopes: [search]
    estimated_cost_per_call_usd: 0.001
permissions:
  network:
    - api.openai.com
    - api.tavily.com
    - broker.skillset.dev
  filesystem: none
  subprocess: false
  env_vars: [BROKER_TOKEN]
tags: [research, web, search]