julianobarbosa/claude-code-skills

iterm2

iTerm2 terminal emulator and tmux multiplexer expertise. USE WHEN user mentions iTerm2, tmux, terminal sessions, split panes, window management, OR terminal productivity on macOS.

First seen Jan 24, 2026

Installation

$ npx skills add julianobarbosa/claude-code-skills --skill iterm2

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from julianobarbosa/claude-code-skills · top by installs.

npx skills add julianobarbosa/claude-code-skills

Browse all from julianobarbosa/claude-code-skills

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 10
License LICENSE
Default branch main
Open issues 1
Status Active

Skill metadata

Parsed from SKILL.md frontmatter.

Declared agents claude-code

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 4,526 B
  • docs SUMMARY.md 193 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 109 installs

SKILL.md

Iterm2

Complete reference for iTerm2 terminal emulator and tmux terminal multiplexer on macOS. Covers keyboard shortcuts, configuration, tmux integration, and productivity workflows.

Workflow Routing

When executing a workflow, do BOTH of these:

  1. Call the notification script (for observability tracking):

``bash ~/.claude/Tools/SkillWorkflowNotification WORKFLOWNAME Iterm2 ``

  1. Output the text notification (for user visibility):

`` Running the WorkflowName workflow from the Iterm2 skill... ``

Workflow Trigger File
SetupTmux "setup tmux", "configure tmux" workflows/SetupTmux.md
TmuxSession "tmux session", "attach session", "detach" workflows/TmuxSession.md
TroubleshootTmux "tmux not working", "fix tmux" workflows/TroubleshootTmux.md

Examples

Example 1: Split terminal into multiple panes

User: "How do I split my terminal in iTerm2?"
→ References Shortcuts.md
→ Explains Cmd+D (vertical) and Cmd+Shift+D (horizontal)
→ Shows navigation with Cmd+Option+Arrow

Example 2: Setup tmux with iTerm2 integration

User: "How do I use tmux with iTerm2?"
→ Invokes SetupTmux workflow
→ Explains tmux -CC control mode
→ Shows native window integration benefits

Example 3: Manage persistent sessions over SSH

User: "Keep my terminal running after disconnect"
→ Invokes TmuxSession workflow
→ Creates named session with tmux new -s
→ Shows how to reattach after disconnect

Quick Reference

iTerm2 Essentials

Action Shortcut
Split Vertical Cmd+D
Split Horizontal Cmd+Shift+D
Navigate Panes Cmd+Option+Arrow
Maximize Pane Cmd+Shift+Enter
Next/Prev Tab Cmd+{ / Cmd+}
Find Cmd+F
Autocomplete Cmd+;
Paste History Cmd+Shift+H
Instant Replay Cmd+Option+B
Find Cursor Cmd+/

tmux Essentials

Default prefix: Ctrl+b

Action Shortcut
New Session tmux new -s name
List Sessions tmux ls or Ctrl+b s
Attach Session tmux attach -t name
Detach Ctrl+b d
New Window Ctrl+b c
Split Vertical Ctrl+b %
Split Horizontal Ctrl+b "
Navigate Panes Ctrl+b Arrow
Zoom Pane Ctrl+b z
Close Pane Ctrl+b x
Copy Mode Ctrl+b [

iTerm2 + tmux Integration

Run tmux -CC for native iTerm2 integration:

  • tmux windows appear as native iTerm2 windows
  • Use iTerm2 shortcuts instead of tmux prefix
  • Sessions persist through disconnects
  • Dashboard available via Shell > tmux > Dashboard

Documentation Index

Document Purpose
Shortcuts.md Complete keyboard shortcut reference
TmuxConfig.md tmux configuration (.tmux.conf) guide
TmuxCommands.md Full tmux command reference

Gotchas

  • "Reuse previous session's directory" is per-profile and per-context: New windows from Cmd-N use the profile's window setting; new tabs from Cmd-T use the tab setting. They differ — confusing when prompts open in unexpected directories.
  • tmux -CC requires the tmux server to be installed and started: If tmux is on a remote host but iTerm2 is local, tmux -CC attach works over SSH only when SSH was started from iTerm2 itself — not from a script that spawns a subshell.
  • Cmd-D split uses the current pane's profile, NOT the window default: Once a profile changes mid-session (via shell integration), new splits inherit the modified profile and can carry unwanted env or PATH.
  • Ctrl+b prefix conflicts with readline transpose-words: Vi-mode users who rebind it (set -g prefix C-a) must remember Ctrl+a also conflicts with screen and shell line-start — pick a free combo like C-Space.
  • Shell integration injects OSC 1337 escape codes: Pipelines that capture terminal output (script, asciinema) end up with garbled control sequences unless integration is disabled per-pane via Edit Session > Disable Shell Integration.
  • Status bar updates run on the main thread: Heavy custom status bar scripts (long git status, slow cloud CLIs) freeze the entire terminal — keep status callbacks under 100ms or run them async.