terminal

star 25

Terminal tools = tmux + zsh + fzf + ripgrep.

plurigrid By plurigrid schedule Updated 2/16/2026

name: terminal description: Terminal tools = tmux + zsh + fzf + ripgrep. metadata: trit: 0

terminal

Terminal tools = tmux + zsh + fzf + ripgrep.

Atomic Skills

Skill Domain
tmux Multiplexer
zsh Shell
fzf Fuzzy finder
ripgrep Search

Tmux

tmux new -s work
# C-b d (detach)
tmux attach -t work
# C-b % (split vertical)
# C-b " (split horizontal)

Fzf

# File picker
vim $(fzf)

# History
C-r  # fzf history search

# Directory
cd $(find . -type d | fzf)

Ripgrep

rg "pattern"
rg -t py "import"
rg -l "TODO"
rg --hidden "secret"

Integration

# fzf + rg
rg --files | fzf | xargs vim
Install via CLI
npx skills add https://github.com/plurigrid/asi --skill terminal
Repository Details
star Stars 25
call_split Forks 7
navigation Branch main
article Path SKILL.md
More from Creator