February 5, 2026
Select agents to install to:
npx add-skill https://github.com/RediSearch/RediSearch/blob/34e1b0253ba8e9df80352b96d6780f7a9d494a0f/.skills/build/SKILL.md -a claude-code --skill buildInstallation paths:
.claude/skills/build/# 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): ```bash ./build.sh ``` 2. For Rust-only build (faster iteration): ```bash 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: ```bash ./build.sh cd src/redisearch_rs && cargo build ``` ## Clean Build If you encounter strange build errors: ```bash ./build.sh FORCE ``` For Rust only: ```bash cd src/redisearch_rs && cargo clean && cargo build ```
Issues Found: