# Global CLI aliases for coding agents in tmux

> Source: <https://gist.github.com/gitgitWi/e9de70b896ed2f22131486721df7460d>
> Published: 2026-07-20 13:08:50+00:00

| # Global CLI aliases for coding agents with tmux | |
| # This script creates a new tmux session with a timestamped name | |
| # and runs the respective agent with frequently used options. | |
| alias t-agy="tmux new-session -s \"\$(date +%Y-%m-%d-%H%M)-agy\" 'agy --dangerously-skip-permissions; exec \$SHELL'" | |
| alias t-codex="tmux new-session -s \"\$(date +%Y-%m-%d-%H%M)-codex\" 'codex --yolo; exec \$SHELL'" | |
| alias t-claude="tmux new-session -s \"\$(date +%Y-%m-%d-%H%M)-claude\" 'claude --permission-mode bypassPermissions; exec \$SHELL'" | |
| alias t-opencode="tmux new-session -s \"\$(date +%Y-%m-%d-%H%M)-opencode\" 'opencode; exec \$SHELL'" |
