Claude Code Plugins

Community-maintained marketplace

Feedback

Build and deploy this Slidev presentation. Use when building, deploying, or preparing the project for production.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name build-and-deploy
description Build and deploy this Slidev presentation. Use when building, deploying, or preparing the project for production.

Build and Deploy Denuvo Slides

CRITICAL: For Vercel, use vercel build --prod then vercel deploy --prebuilt --prod.

Tech Stack

  • Slidev (Vue-based presentation framework)
  • npm package manager
  • Output directory: dist

Workflow

1. Install Dependencies

npm install

2. Build

npm run build

Note: The default build command includes a custom base path. For deployment, you may need to modify the build script in package.json to remove the --base flag or adjust it for your deployment target.

3. Deploy

Vercel:

vercel pull --yes -t $VERCEL_TOKEN
vercel build --prod -t $VERCEL_TOKEN
vercel deploy --prebuilt --prod --yes -t $VERCEL_TOKEN

Netlify:

netlify deploy --prod --dir=dist

Development

To run locally:

npm run dev

This will start the Slidev server and open the presentation in your browser.