Openclaw-master-skills file-search
Fast file-name and content search using `fd` and `rg` (ripgrep).
install
source · Clone the upstream repo
git clone https://github.com/LeoYeAI/openclaw-master-skills
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/LeoYeAI/openclaw-master-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/file-search" ~/.claude/skills/leoyeai-openclaw-master-skills-file-search && rm -rf "$T"
OpenClaw · Install into ~/.openclaw/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/LeoYeAI/openclaw-master-skills "$T" && mkdir -p ~/.openclaw/skills && cp -r "$T/skills/file-search" ~/.openclaw/skills/leoyeai-openclaw-master-skills-file-search && rm -rf "$T"
manifest:
skills/file-search/SKILL.mdsafety · automated scan (low risk)
This is a pattern-based risk scan, not a security review. Our crawler flagged:
- uses sudo
Always read a skill's source content before installing. Patterns alone don't mean the skill is malicious — but they warrant attention.
source content
File Search Skill
Fast file-name and content search using
fd and rg (ripgrep).
Find Files by Name
Search for files matching a pattern:
fd "\.rs$" /home/xrx/projects
Find files by exact name:
fd -g "Cargo.toml" /home/xrx/projects
Search File Contents
Search for a regex pattern across files:
rg "TODO|FIXME" /home/xrx/projects
Search with context lines:
rg -C 3 "fn main" /home/xrx/projects --type rust
Install
sudo dnf install fd-find ripgrep