Claude Code Plugins

Community-maintained marketplace

Feedback

How to build this project. Load when you need to compile or bundle.

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
description How to build this project. Load when you need to compile or bundle.
allowed-tools Bash

Build Skill

Project-specific build commands.

Build Commands

# Development build
# TODO: Add your build command
npm run build
# cargo build
# go build ./...

# Production build
npm run build:prod
# cargo build --release

Build Artifacts

  • Output: dist/ or build/
  • Source maps: *.map

Common Issues

Missing Dependencies

npm install
# pip install -r requirements.txt

Build Errors

Check compiler output, usually type errors or missing imports.