Asi terminal

Terminal tools = tmux + zsh + fzf + ripgrep.

install
source · Clone the upstream repo
git clone https://github.com/plurigrid/asi
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/plurigrid/asi "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/terminal" ~/.claude/skills/plurigrid-asi-terminal-5d6112 && rm -rf "$T"
manifest: skills/terminal/SKILL.md
source content

terminal

Terminal tools = tmux + zsh + fzf + ripgrep.

Atomic Skills

SkillDomain
tmuxMultiplexer
zshShell
fzfFuzzy finder
ripgrepSearch

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