Claude Code Plugins

Community-maintained marketplace

Feedback

Remove build artifacts for a fresh rebuild. Use when the user wants to clean the project, start fresh, or troubleshoot build issues.

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 clean
description Remove build artifacts for a fresh rebuild. Use when the user wants to clean the project, start fresh, or troubleshoot build issues.

Clean Build Artifacts

Removes the build directory and all compiled artifacts to enable a fresh rebuild.

Instructions

  1. Run the clean command:
    make clean
    

When to Use

Use this skill when:

  • You encounter strange build errors
  • Dependencies have changed
  • You want to ensure a completely fresh build
  • Before running the build skill if you suspect stale artifacts

Notes

  • This is a destructive operation - all build artifacts will be removed
  • You will need to run the build skill after cleaning
  • The source code is never affected, only the build/ directory