search

Locate files by name and search content with fd and rg.

2|Updated Nov 15, 2025
One-click install
npx skills add https://github.com/kangju2000/dotfiles --skill search
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: search
Source: https://github.com/kangju2000/dotfiles/tree/main/claude/skills/search
Command: npx skills add https://github.com/kangju2000/dotfiles --skill search

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This Skill accelerates locating files and code by leveraging fast search tools like fd and rg. It helps you quickly locate files by name, search content, locate definitions, and combine searches across large codebases, reducing time spent scanning directories.

Core Features & Use Cases

  • File search by name: Use fd to quickly locate files matching a pattern across a directory tree.

  • Content search: Use rg to search within files for patterns, with options for case-insensitive search and listing files with matches.

  • Code understanding: Find definitions (classes, interfaces, functions) and search with context to understand code structure.

  • Use Case: When you need to locate all occurrences of a function named "initialize" across a codebase, or find all Markdown files that mention "setup".

Quick Start

fd "pattern" [path] # Find files by name rg "pattern" [path] # Search file contents