Files
openclaw-master-skills/skills/file-search/SKILL.md
T
MyClaw AI 3e83cee039 feat: expand to 339+ curated skills (v0.3.0)
- Added 175 new high-quality skills across all categories
- 14 distinct categories: AI, Search, Productivity, Dev, Marketing, Media, Finance, Communication, Smart Home, Memory, Security, Data, Social, Other
- Updated all language READMEs and SKILL.md
- Weekly update by MyClaw.ai
2026-03-11 11:54:00 +00:00

1.2 KiB

name, description, metadata
name description metadata
file-search Fast file-name and content search using `fd` and `rg` (ripgrep).
openclaw
emoji requires install
🔍
bins
fd
rg
id kind package bins label
dnf-fd dnf fd-find
fd
Install fd-find (dnf)
id kind package bins label
dnf-rg dnf ripgrep
rg
Install ripgrep (dnf)

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