원클릭으로
fuzzy-selecting
Use when choosing interactively from search results, files, processes, or any command output with preview capabilities
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Use when choosing interactively from search results, files, processes, or any command output with preview capabilities
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Use when implementing any feature or fix using TDD, before writing any implementation code
Use when domain logic leaks into API/Infrastructure, project references violate layer boundaries, or you need to decide between CQS (always), CQRS bus (complex domains), and DDD patterns (invariants and events).
Use when configuring Git hooks in .NET projects before team commits occur, to enforce commit message standards and code formatting automatically
Use before writing any test or implementation task, when observable behavior needs to be captured in business language scenarios and approved by the user before code begins
Use when running mutation testing, killing mutants, verifying test quality, checking mutation score, or analyzing survivors after the test baseline is green
Use when writing tests from the outside-in, defining behavior before code, or any feature where tests should start from observable business behavior and let internal design emerge
| name | fuzzy-selecting |
| description | Use when choosing interactively from search results, files, processes, or any command output with preview capabilities |
Always invoke fuzzy-selecting skill for interactive fuzzy selection - do not execute bash commands directly.
Use fzf for interactive fuzzy selection and filtering of any command-line list.
Invoke fuzzy-selecting skill for interactive fuzzy selection from any list with preview capabilities. Use when choosing from search results, files, processes, or any command output.
Common workflow: Discovery skill (finding-files, searching-text, querying-json, querying-yaml) → fuzzy-selecting skill → other skills (viewing-files, xargs) for interactive selection and action.
--height N[%] set height (percent or exact lines)--tmux [POS][SIZE][,border] tmux popup mode--layout default|reverse|reverse-list layout direction--border [rounded|sharp|thin] add border--style default|full|minimal UI preset-e/--exact exact matching instead of fuzzy--scheme default|path|history input type optimization--delimiter STR custom field delimiter--nth N.. search specific fields only--preview "CMD {}" external command preview--preview-window POSITION[SIZE][,border] preview configuration--preview-label TEXT custom preview label-m/--multi multi-select mode (TAB to mark)--bind KEY:ACTION custom key bindings--prompt "TEXT" custom prompt string--header "TEXT" custom header text--tac reverse input order (top-down)--with-nth N.. display specific fields--ansi parse ANSI color codesFor comprehensive search patterns, key bindings, preview configurations, and integration examples, load fzf guide when needing:
The guide includes:
# Interactive code search and edit
rg "pattern" | fzf --preview="bat --color=always --highlight-line {2} {1}" | awk '{print $1}' | xargs vim
# Interactive dependency management
jq -r '.dependencies | keys[]' package.json | fzf --multi | xargs npm uninstall