mcpbeat

Marketplace Add AI

vercel-labs/marketplace-add-ai

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 compliance checking.

2k tokens
context cost
the whole folder, loaded on every use
2
files
instructions only
0
copies elsewhere
how many repositories repackaged it
3
stars on the repo
on the repository, not the skill itself

Install

one command, takes just this skill from the repository
npx skills add https://github.com/vercel-labs/sitecore-skills --skill marketplace-add-ai

What comes with it

6 040 bytes besides the instruction
references/ai-patterns.md

The instruction itself

7 sections, as written by the author

Add AI Skills Integration

You are helping the user add AI Skills integration to their Sitecore Marketplace app, specifically the Brand Review API.

Prerequisites

The AI package must be installed. If not:

npx shadcn@latest add https://marketplace-sdk.sitecorecloud.io/r/ai.json

Step 1: Determine Use Case

Common use cases for Brand Review:

  • Text review: Check marketing copy against brand guidelines
  • Image review: Verify visual assets comply with brand standards
  • Document review: Analyze PDFs or documents for brand compliance
  • Content editor integration: Add brand checking to content workflows

Step 2: Choose Client-Side or Server-Side

  • Client-side: Use client.mutate("ai.skills.generateBrandReview", ...) — simpler, works with built-in auth
  • Server-side: Use experimental_createAIClient() — requires Auth0, good for background processing

Step 3: Implement

See ai-patterns.md for complete code patterns.

  • Use /marketplace-build-component to build the review results UI
  • Use /marketplace-sdk-reference for detailed type information

Reference Files

  • AI Patterns — Brand Review API code patterns

How to use it

Copy the folder

Take vercel-labs/marketplace-add-ai from the repository into ~/.claude/skills for personal use, or into .claude/skills inside a project.

Check the name does not clash

The agent identifies a skill by the name field in its header. Two skills with the same name cannot sit side by side — one of them will be ignored.

Install what it needs

The instructions reference npx. Without those the skill loads but fails at the first command.