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.mdsource content
Build Skill
Compile the project to verify changes build successfully.
Usage
Run this skill after making code changes to verify they compile.
Instructions
-
For a full build (C + Rust):
./build.sh -
For Rust-only build (faster iteration):
cd src/redisearch_rs && cargo buildAlways build the C code at least once before running the Rust-only build.
-
If build fails:
- Read the compiler errors carefully
- Fix the issues
- Re-run the build
-
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