fzf-fuzzy-finder
SKILL.md
fzf - Fuzzy Finder
Interactive command-line fuzzy finder with powerful integration capabilities.
Basic Usage
Simple filtering
# Pipe list to fzf
ls | fzf
# Select file
find . -type f | fzf
# Multi-select (Tab to select, Shift+Tab to deselect)
ls | fzf -m
# Preview files while selecting
ls | fzf --preview 'cat {}'