Skip to main content

Skill registries

note

The Agent Builder is part of the Mastra Enterprise Edition. Production deployments require a valid EE license. Contact sales for more information.

Registries let the Agent Builder browse and install community skills directly from the UI. All registries are opt-in. When no registry is enabled, the Builder hides registry browse UI entirely.

Quickstart
Direct link to Quickstart

Enable the skills.sh registry:

src/mastra/index.ts
import { MastraEditor } from '@mastra/editor'

new MastraEditor({
builder: {
enabled: true,
registries: {
skillsSh: { enabled: true },
},
},
})

The Builder library tab now exposes a Browse view backed by skills.sh. End users can preview a skill, then install it into an agent.

note

See the AgentBuilderOptions reference for the full registries schema.

On this page