Agent skill

file-search

Fast file-name and content search using `fd` and `rg` (ripgrep).

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/file-search

Metadata

Additional technical details for this skill

openclaw
{
    "emoji": "\ud83d\udd0d",
    "install": [
        {
            "id": "dnf-fd",
            "bins": [
                "fd"
            ],
            "kind": "dnf",
            "label": "Install fd-find (dnf)",
            "package": "fd-find"
        },
        {
            "id": "dnf-rg",
            "bins": [
                "rg"
            ],
            "kind": "dnf",
            "label": "Install ripgrep (dnf)",
            "package": "ripgrep"
        }
    ],
    "requires": {
        "bins": [
            "fd",
            "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:

bash
fd "\.rs$" /home/xrx/projects

Find files by exact name:

bash
fd -g "Cargo.toml" /home/xrx/projects

Search File Contents

Search for a regex pattern across files:

bash
rg "TODO|FIXME" /home/xrx/projects

Search with context lines:

bash
rg -C 3 "fn main" /home/xrx/projects --type rust

Install

bash
sudo dnf install fd-find ripgrep

Expand your agent's capabilities with these related and highly-rated skills.

Didn't find tool you were looking for?

Be as detailed as possible for better results