Deploy & Use
Install into local Agents (recommended)
Use the stable Install URL — never pass /dashboard/skills/... page links to the CLI:
# Public skill npx skills add https://prompt.solokit.run/api/skills/sk_xxx/install # Target a specific agent (e.g. Cursor) npx skills add https://prompt.solokit.run/api/skills/sk_xxx/install -a cursor # SKILL.md only curl -L "https://prompt.solokit.run/api/skills/sk_xxx/install?format=md"
Private skills: mint an install link
curl -X POST https://prompt.solokit.run/api/skills/sk_xxx/install-token \
-H "Authorization: Bearer ph_your_token" \
-H "Content-Type: application/json" \
-d '{"ttlSec": 604800, "agent": "cursor"}'Copy the cli field from the response; the URL includes a short-lived signed t param.
Discover public skills
npx skills add https://prompt.solokit.run/api/gallery/items/<gallery-id>/install
Make a skill public
Toggle "Public" on the skill detail/edit form. Unsigned Install URLs work, and Discover may list the skill depending on ops config.
TIP
The Install-to-Agents button on the detail page generates the right command for the skill's visibility.
Install into Doubao Desktop
Doubao Desktop does not use npx skills add, and you should not export a single asset. Download the PromptMan manager from the skills list or Settings → Integrations, then upload the promptman folder under Skills · Connectors · Partners → My Skills. In chat it searches the library and offers a primary pick plus alternatives. See “Install to Doubao”.
Continue Reading