Verify
Skill ComeOnOliver/skillshub/skills/RediSearch/RediSearch/verify
🧠The right skill, one API call. AI agent skills registry with token-efficient skill resolution. 5,000+ skills from 500+ top repos.
npx -y skills add ComeOnOliver/skillshub --skill verifyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
SKILL.md
0.9 KB, 250 tokens by cl100k_base, as published. Nobody here has run it
Verify Skill
Run full verification before committing or creating a PR.
Usage
Use this skill to run comprehensive checks before finalizing changes.
Instructions
Run the following checks in order:
1. Format Check
make fmt CHECK=1
If it fails, run make fmt to fix formatting.
2. Lint Check
make lint
Fix any clippy warnings or errors.
3. Build
./build.sh
Ensure the full project compiles.
4. Rust Tests
cd src/redisearch_rs && cargo nextest run
All Rust tests must pass.
5. Unit Tests (if C code was modified)
./build.sh RUN_UNIT_TESTS ENABLE_ASSERT=1
6. Behavioral Tests (optional, for significant changes)
./build.sh RUN_PYTEST ENABLE_ASSERT=1
Quick Verification
For minor Rust changes, this minimal check is often sufficient:
cd src/redisearch_rs && cargo fmt --check && cargo clippy --all-targets && cargo nextest run