Loading...
Loading...
Use when manipulating Zellij sessions, creating tabs or panes, or looking up Zellij CLI commands for terminal multiplexer operations
npx skill4agent add zenobi-us/dotfiles zellij| Task | Command |
|---|---|
| Create/attach session | |
| List sessions | |
| Kill session | |
| Delete session | |
| Task | Command |
|---|---|
| New tab | |
| New tab with name | |
| New tab with cwd | |
| New tab with layout | |
| Close tab | |
| Rename tab | |
| Go to tab by name | |
| Go to tab by index | |
| Task | Command |
|---|---|
| New pane (auto) | |
| Split right | |
| Split down | |
| Floating pane | |
| Floating with size | |
| Pane with command | |
| Close pane | |
| Rename pane | |
zellij action new-tab --name "backend" --cwd ~/apizellij action new-pane --direction down -- npm run dev# For interactive shell with specific directory
zellij action new-pane --cwd /path/to/dir
# For command that must run in specific directory
zellij action new-pane --cwd /path/to/dir -- sh -c 'cd /path/to/dir && your-command'
# For nvim that must start in specific directory
zellij action new-pane --cwd /path/to/worktree -- sh -c 'cd /path/to/worktree && nvim'zellij action new-pane --floating --width 90% --height 90%new-pane --horizontal--direction down--horizontaltoggle-floating-panesnew-pane --floatingactionzellij new-tabzellij action new-tab--cwd# ❌ Wrong - nvim might not start in the right directory
zellij action new-pane --cwd /path/to/worktree -- nvim
# ✅ Correct - explicitly cd first
zellij action new-pane --cwd /path/to/worktree -- sh -c 'cd /path/to/worktree && nvim'zellij action--rightleftupdown80%