Terminal tools = tmux + zsh + fzf + ripgrep.
Scanned 9/6/2026
Install to Claude Code
npx -y skills add plurigrid/asi --skill terminal --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Terminal?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/plurigrid-terminal-asi)More formats (shields.io, HTML) on the badges page.
---
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
```bash
tmux new -s work
# C-b d (detach)
tmux attach -t work
# C-b % (split vertical)
# C-b " (split horizontal)
```
## Fzf
```bash
# File picker
vim $(fzf)
# History
C-r # fzf history search
# Directory
cd $(find . -type d | fzf)
```
## Ripgrep
```bash
rg "pattern"
rg -t py "import"
rg -l "TODO"
rg --hidden "secret"
```
## Integration
```bash
# fzf + rg
rg --files | fzf | xargs vim
```
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!