Skill Marketplace
import { Aside } from ‘@astrojs/starlight/components’;
The Skill Marketplace is a Teams/Enterprise feature: a per-workspace catalog of reusable skills — markdown playbooks published as artifacts. Members browse, upvote, and save skills in the left-nav Skill Market, then attach them to other artifacts so the authoring AI agent reuses them when editing.
Availability
Section titled “Availability”Requires a Teams or Enterprise plan on the workspace owner. Personal
workspaces cannot publish skills (402 TEAMS_PLAN_REQUIRED).
In the ShareOut app, open a team workspace and select Skill Market in the left navigation.
Recommended by ShareOut
Section titled “Recommended by ShareOut”Every workspace Library lens shows a Recommended by ShareOut strip at the top — curated official skills (ShareOut authoring, design, TDD, domain modeling, and more) maintained by ShareOut and kept fresh by a daily sync. They are read-only, available on all plans (including personal workspaces), and attachable cross-workspace like any other skill.
GET /v1/skills/recommendedAuthorization: Bearer {token}Returns { skills: [{ slug, artifact_id, name, summary, category, tags, attribution?, uses, url, official: true }] }.
Workspace-agnostic — any signed-in user can list them. Official skills live in a
hidden system workspace; the endpoint surfaces display metadata from the registry
plus live artifact ids and use counts.
What is a skill?
Section titled “What is a skill?”A skill is a .md file published with artifact_type: "skill". It is stored as
markdown internally but served with a dedicated skill viewer when listed in the
marketplace.
Skills are always workspace-visible so every member can browse the catalog.
Frontmatter
Section titled “Frontmatter”Optional YAML frontmatter in the markdown entrypoint:
---category: Designtags: ui, brandingversion: 1.2.0summary: How we brand dashboards---
# Brand skill
Body content…| Field | Purpose |
|---|---|
category | Filter/group in the marketplace |
tags | Search chips |
version | Display version |
summary | Card blurb (falls back to first paragraph) |
Publish a skill
Section titled “Publish a skill”POST /v1/publish{ "name": "Brand guidelines", "slug": "brand-guidelines", "artifact_type": "skill", "workspace_id": "wsp_abc", "files": [ { "path": "skill.md", "content": "---\ncategory: Design\n---\n# …", "mime": "text/markdown" } ]}workspace_id is required. Visibility is forced to workspace.
Browse & rank
Section titled “Browse & rank”GET /v1/workspaces/{id}/skills?sort=top&category=Design&q=brand&limit=30GET /v1/workspaces/{id}/skills/categoriesGET /v1/workspaces/{id}/skills/installed ← "My Skills" saved listsort | Order |
|---|---|
top (default) | Featured first, then score (upvotes ×3 + attaches ×2 + installs ×1) |
trending | Score with time decay |
new | Most recently published |
installed | Use /skills/installed instead |
Each card includes upvotes, installs, attaches, uses (display-only),
voted, and installed for the current user.
Upvote & save
Section titled “Upvote & save”POST /v1/artifacts/{skillId}/skill/vote ← upvote (idempotent)DELETE /v1/artifacts/{skillId}/skill/vote ← remove vote
POST /v1/artifacts/{skillId}/skill/install ← save to My SkillsDELETE /v1/artifacts/{skillId}/skill/install ← unsaveAttach to an artifact
Section titled “Attach to an artifact”Attach up to 5 skills per artifact (version-pinned). Attached skills load into the authoring agent’s system prompt when editing that artifact — not into the visitor chat.
Where attached skills appear
Section titled “Where attached skills appear”| Surface | Who sees it |
|---|---|
| Home artifact cards | Skills badge when the artifact has attachments |
| Stats modal → Attached skills | Any artifact with skills; attach/detach picker requires a team workspace |
| Editor Details rail → Skills | Read-only list while editing |
| Viewer floating toolbar → Skills N | Signed-in viewers (collaborators, workspace members); opens a read-only popover linking to each skill artifact. Anonymous visitors do not see it. |
GET /v1/artifacts/{artifactId}/skillsPOST /v1/artifacts/{artifactId}/skills ← { "skill_artifact_id": "art_skill", "position": 0 }POST /v1/artifacts/{artifactId}/skills/{skillId} ← bump to latest skill versionDELETE /v1/artifacts/{artifactId}/skills/{skillId}At publish time you can also pass attached_skill_ids: ["art_skill1", "art_skill2"]
on a non-skill artifact.
Requires artifact editor+ role. Skills must belong to the same workspace as the
target artifact.
Admin moderation
Section titled “Admin moderation”Workspace admins can feature or block a skill:
PATCH /v1/artifacts/{skillId}/skill/admin{ "featured": true }{ "blocked": true }Blocked skills disappear from the catalog.
Related
Section titled “Related”- Teams API — full endpoint list
- AI chat agent — visitor vs authoring agents
- Workspace context files — always-on admin docs