Terminal tools = tmux + zsh + fzf + ripgrep.
/plugin marketplace add plurigrid/asi/plugin install plurigrid-asi-skills@plurigrid/asiThis skill inherits all available tools. When active, it can use any tool Claude has access to.
Terminal tools = tmux + zsh + fzf + ripgrep.
| Skill | Domain |
|---|---|
| tmux | Multiplexer |
| zsh | Shell |
| fzf | Fuzzy finder |
| ripgrep | Search |
tmux new -s work
# C-b d (detach)
tmux attach -t work
# C-b % (split vertical)
# C-b " (split horizontal)
# File picker
vim $(fzf)
# History
C-r # fzf history search
# Directory
cd $(find . -type d | fzf)
rg "pattern"
rg -t py "import"
rg -l "TODO"
rg --hidden "secret"
# fzf + rg
rg --files | fzf | xargs vim