
vercel-labs / sitecore-skills
★ 3A skill package that teaches your agent 7 capabilities — every one documented and browsable below, no GitHub required · by vercel.
Each skill below is one capability this package teaches your agent. Install the whole package, or open a skill to install just that one.
Adds AI Skills integration (Brand Review API) to a Sitecore Marketplace app. Use when the user wants to add AI-powered content analysis, brand review, or brand…
3 files — installable on its own
Adds a new extension point route to a Sitecore Marketplace app. Use when the user wants to add a custom field, dashboard widget, context panel, fullscreen…
3 files — installable on its own
Adds XM Cloud API integration to a Sitecore Marketplace app. Use when the user wants to access Sites, Pages, Authoring, Content Transfer, Search, or Agent APIs…
3 files — installable on its own
Builds UI components using the Blok design system for Sitecore Marketplace apps. Use when the user wants to create UI, add components, build a page layout, or…
3 files — installable on its own
Deploys a Sitecore Marketplace app to Vercel with correct CSP headers and configuration.
3 files — installable on its own
Scaffolds a new Sitecore Marketplace app using the official SDK. Use when the user wants to create a new marketplace app, start a new Sitecore project, or…
4 files — installable on its own
Sitecore Marketplace SDK API reference. Use when the user asks about SDK methods, types, queries, mutations, subscriptions, or how to use any Sitecore…
5 files — installable on its own
Sitecore Skills
Claude Code skills for building Sitecore Marketplace apps. Covers the full lifecycle: scaffolding, SDK integration, Blok UI components, and deployment to Vercel.
Built for the Sitecore Marketplace SDK (v0.4) targeting Next.js App Router apps.
Installation
Install skills using the Skills CLI:
npx skills add vercel-labs/sitecore-skillsClaude Code Plugin
You can also install skills as a Claude Code plugin:
First, add the marketplace:
/plugin marketplace add vercel-labs/sitecore-skillsThen, install the plugin:
/plugin install sitecore-skills@sitecore-marketplaceOnce installed, skills are available as namespaced slash commands:
| Slash Command | Description |
|---|---|
/sitecore-skills:marketplace-scaffold | Scaffold a new Marketplace app with the correct SDK packages |
/sitecore-skills:marketplace-sdk-reference | Look up SDK queries, mutations, subscriptions, and types |
/sitecore-skills:marketplace-build-component | Build UI with the Blok design system (Sitecore's shadcn theme) |
/sitecore-skills:marketplace-deploy | Deploy with correct CSP headers and environment variables |
/sitecore-skills:marketplace-add-extension | Add a route for a specific extension type (custom field, widget, etc.) |
/sitecore-skills:marketplace-add-xmc | Integrate XM Cloud APIs — Sites, Pages, Authoring, Search, Agent |
/sitecore-skills:marketplace-add-ai | Add Brand Review API for AI-powered content analysis |
Available Skills
marketplace-scaffold
Scaffold a new Sitecore Marketplace app. Asks about architecture (client-side vs full-stack), auth (built-in vs Auth0), and optional packages (XMC, AI), then runs the correct npx shadcn@latest add command with post-scaffold setup.
marketplace-sdk-reference
Central reference for all Sitecore Marketplace SDK APIs. Covers queries, mutations, subscriptions, and TypeScript types across all 3 packages (client, xmc, ai) with code examples.
marketplace-build-component
Build UI with the Blok design system — Sitecore's shadcn-based component library. Knows extension point UI constraints and integrates SDK data with loading/error states.
marketplace-deploy
Deploy a Marketplace app to Vercel. Configures CSP headers for iframe embedding, sets environment variables, runs pre-deploy verification, and provides post-deploy portal configuration steps.
marketplace-add-extension
Add a new extension point route to a Marketplace app. Supports custom-field, dashboard-widget, pages-context-panel, fullscreen, and standalone types with correct boilerplate per type.
marketplace-add-xmc
Add XM Cloud API integration. Client-side via client.query('xmc.*') / client.mutate('xmc.*'), or server-side via experimental_createXMCClient(). Covers Sites, Pages, Authoring (GraphQL), Content Transfer, Search, and Agent APIs.
marketplace-add-ai
Add AI Skills integration for the Brand Review API. Supports text, image (base64/URL), and document (PDF/text) inputs. Client-side via client.mutate('ai.skills.generateBrandReview', ...) or server-side via experimental_createAIClient().
SDK Packages
| Package | Purpose |
|---|---|
client (required) | Core SDK client — queries, mutations, subscriptions |
xmc (optional) | XM Cloud APIs — Sites, Pages, Authoring, Content Transfer, Search, Agent |
ai (optional) | AI Skills — Brand Review API |
Links
License
MIT
Install the whole package (7 skills):
npx skills add https://github.com/vercel-labs/sitecore-skillsOr install a single skill:
npx skills add https://github.com/vercel-labs/sitecore-skills --skill <name>Pick the skill name from the Skills tab — each entry there installs independently.