RediSearch / read-unmodified-c-module
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/read-unmodified-c-module && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/3444" && unzip -o skill.zip -d .claude/skills/read-unmodified-c-module && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/read-unmodified-c-module/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Read the source of the C module we are working on, before we made any changes.
0 views
0 installs
Skill Content
--- name: read-unmodified-c-module description: Read the source of the C module we are working on, before we made any changes. --- # Read Unmodified C Module Read the source of the C module(s) we are working on, as they were before we made any changes. ## Arguments - `<module path>`: Module name to read (e.g., `src/numeric_range_tree` or `src/aggregate/aggregate_debug`), without extension - `<module path 1> <module path 2>`: Multiple module names to read If the path doesn't include `src/`, assume it to be in the `src` directory. E.g. `numeric_range_tree` becomes `src/numeric_range_tree`. ## Instructions For each module path: ```bash # Read header file git show master:<module path>.h # Read implementation file git show master:<module path>.c ```