skills$openclaw/file-search
xejrax4.8k

by xejrax

file-search – OpenClaw Skill

file-search is an OpenClaw Skills integration for coding workflows. Fast file-name and content search using `fd` and `rg` (ripgrep).

4.8k stars2.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026coding

Skill Snapshot

namefile-search
descriptionFast file-name and content search using `fd` and `rg` (ripgrep). OpenClaw Skills integration.
ownerxejrax
repositoryxejrax/file-search
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @xejrax/file-search
last updatedFeb 7, 2026

Maintainer

xejrax

xejrax

Maintains file-search in the OpenClaw Skills directory.

View GitHub profile
File Explorer
3 files
.
_meta.json
274 B
CLAUDE.md
303 B
SKILL.md
1.2 KB
SKILL.md

name: file-search description: "Fast file-name and content search using fd and rg (ripgrep)." metadata: { "openclaw": { "emoji": "🔍", "requires": { "bins": ["fd", "rg"] }, "install": [ { "id": "dnf-fd", "kind": "dnf", "package": "fd-find", "bins": ["fd"], "label": "Install fd-find (dnf)", }, { "id": "dnf-rg", "kind": "dnf", "package": "ripgrep", "bins": ["rg"], "label": "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
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install file-search?

Run openclaw add @xejrax/file-search in your terminal. This installs file-search into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/xejrax/file-search. Review commits and README documentation before installing.