What problem does it solve? Standard terminal utilities like ls, grep, find, and cat are slow on large codebases and lack modern features such as git status, syntax highlighting, and fuzzy search, slowing down everyday file operations. ## Core Features & Use Cases - Modern Tool Mapping: Maps each slow standard tool to a faster alternative — eza for ls, ripgrep for grep, fd for find, bat for cat, plus fzf, fkill, and z. - Ready-to-Use Commands: Provides concrete command examples for listing directories with git status, searching file contents with context, finding files by name or extension, and viewing files with syntax highlighting. - Use Case: When investigating a bug across a large repository, use rg "pattern" -i -C 2 to instantly search all file contents and fd "\.ts$" to locate TypeScript files, instead of waiting on recursive grep and find. ## Quick Start Use the CLI speed tools skill to search this repository for all occurrences of a function name using ripgrep instead of grep.