The problem When working on projects, I constantly found myself switching between: terminal → to run commands or navigate editor → to open and edit files For large projects, this became even more annoying: file trees get messy searching inside IDE explorers slows me down opening an editor just to change a few lines feels heavy That context switching breaks flow more than it should. The idea I wanted a simple workflow: Stay in the terminal → find a file → edit it → save → continue So I built a CLI tool that combines: file search file selection inline editing all inside the terminal. What it does The tool lets you: type part of a filename instantly see matching files with full paths navigate using arrow keys select a file edit it directly in the terminal choose between: overwrite mode append mode No editor launch. No switching context. Example workflow terminal-file-picker enter project directory (.…