File Search
Fast file-name and content search using `fd` and `rg` (ripgrep).
MIT-0 · Free to use, modify, and redistribute. No attribution required.
⭐ 13 · 9.9k · 126 current installs · 128 all-time installs
by@Xejrax
MIT-0
Security Scan
OpenClaw
Benign
high confidencePurpose & Capability
Name/description state fast file-name and content search using fd and rg; the skill declares those binaries as required and the install entries install fd-find and ripgrep via dnf. The requested artifacts align with the stated purpose.
Instruction Scope
SKILL.md contains only example fd/rg commands and a dnf install line. It does not instruct the agent to read unrelated system configuration, access secrets, or transmit results to external endpoints. Example paths (e.g., /home/xrx/projects) are benign examples, not directives to harvest system data.
Install Mechanism
Install spec uses dnf packages (fd-find, ripgrep) from the distro package manager, which is a standard low-risk mechanism. Note: the install is platform-specific (dnf) even though the skill has no OS restriction declared; this is a usability limitation rather than a security concern.
Credentials
The skill declares no environment variables, no credentials, and no config paths. This is proportionate for a local search helper that only needs command-line tools.
Persistence & Privilege
always is false and the skill does not request persistent or elevated presence. It does not modify other skills or system-wide agent settings.
Assessment
This skill appears to do exactly what it says: it provides example commands for using fd and ripgrep. Before installing, confirm you are comfortable running sudo dnf install (it requires admin rights) and that your system uses dnf (Fedora/RHEL); on other distros you’ll need the equivalent packages. Be careful when invoking the skill (or running the example commands) against sensitive directories—fd/rg will read files you point them at. If you want the agent to run searches automatically, remember it will execute the fd/rg commands you or the agent request; otherwise the skill is low-risk.Like a lobster shell, security has layers — review code before you run it.
Current versionv1.0.0
Download ziplatest
License
MIT-0
Free to use, modify, and redistribute. No attribution required.
Runtime requirements
🔍 Clawdis
Binsfd, rg
SKILL.md
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
Files
2 totalSelect a file
Select a file to preview.
Comments
Loading comments…
