clean-rebuild

Clean rebuild YARS with CMake and dependency installation.

3|1|Updated Jul 27, 2016
One-click install
npx skills add https://github.com/kzahedi/YARS --skill clean-rebuild
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: clean-rebuild
Source: https://github.com/kzahedi/YARS/tree/main/.claude/skills/clean-rebuild
Command: npx skills add https://github.com/kzahedi/YARS --skill clean-rebuild

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This skill performs a complete clean rebuild of YARS from scratch.

Core Features & Use Cases

  • Dependency Installation: Ensures required libraries are installed for macOS and Linux.
  • Fresh Build Directory: Removes and recreates the build directory to guarantee a clean state.
  • Config & Compile: Runs CMake and builds to a pristine binary ready for testing.

Quick Start

macOS/Homebrew guidance (adjust as needed)

brew list boost xerces-c bullet sdl2 2>/dev/null || { echo "Installing missing dependencies..." brew install boost xerces-c bullet sdl2 } rm -rf build mkdir build && cd build cmake -DCMAKE_PREFIX_PATH=/opt/homebrew .. make -j4 if [ -f ./bin/yars ]; then echo "✅ Build successful - binary created at ./bin/yars" else echo "❌ Build failed - binary not found" fi