Skillshub build

Build Skill

install
source · Clone the upstream repo
git clone https://github.com/ComeOnOliver/skillshub
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/ComeOnOliver/skillshub "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/RediSearch/RediSearch/build" ~/.claude/skills/comeonoliver-skillshub-build && rm -rf "$T"
manifest: skills/RediSearch/RediSearch/build/SKILL.md
source content

Build Skill

Compile the project to verify changes build successfully.

Usage

Run this skill after making code changes to verify they compile.

Instructions

  1. For a full build (C + Rust):

    ./build.sh
    
  2. For Rust-only build (faster iteration):

    cd src/redisearch_rs && cargo build
    

    Always build the C code at least once before running the Rust-only build.

  3. If build fails:

    • Read the compiler errors carefully
    • Fix the issues
    • Re-run the build
  4. If you update C code, re-build the C code before running the Rust-only build:

    ./build.sh
    cd src/redisearch_rs && cargo build
    

Clean Build

If you encounter strange build errors:

./build.sh FORCE

For Rust only:

cd src/redisearch_rs && cargo clean && cargo build