Visual context sharing between AI assistants and users.
Like Morpheus to Neo — "show me":
- show: AI displays content for the user (files in Neovim, URLs in browser, commands in tmux)
- look: AI observes what the user is viewing (screen context, active panes)
These are complementary - look verifies what show displayed.
- tmux - Terminal multiplexer for pane management and context capture
- Used by both
showandlookcommands showcreates a dedicated "show" session for content displaylookcaptures pane content and displays hierarchy
- Used by both
-
nvim-remote - Enhanced Neovim socket integration
- Provides automatic socket detection and richer editor status
- Without it: show-me uses calculated socket paths (works fine)
- With it: More flexible socket discovery across multiple Neovim instances
-
Browser - For URL display (Firefox preferred, configurable via SHOW_BROWSER)
Note: GitHub Copilot CLI supports the same
--plugin-dirflag — these instructions work for both tools.
Load directly from a local clone:
claude --plugin-dir /path/to/show-meOr install via a marketplace that includes show-me:
/plugin marketplace add mbailey/plugins
/plugin install show-me@mbaileymt package install show-meDisplay content for the user:
show path/to/file.py # Open file in Neovim
show path/to/file.py:42 # Open file at line 42
show https://example.com # Open URL in browser
show "cmd:git status" # Run command in shell paneObserve what the user is viewing:
look # Capture current pane context
look --hierarchy # Show tmux session/window/pane layoutIf nvim-remote is available, show-me uses it for enhanced features:
- Auto socket detection: Finds the best Neovim socket automatically
- Richer status: More detailed editor state in
lookoutput
Without nvim-remote, show-me:
- Uses calculated socket paths:
/tmp/nvim-tmux-pane-<pane_id> - Uses direct
nvim --servercommands for file operations - All core features work fully
The look command captures screen content. Use responsibly and only when contextually appropriate.
- SKILL.md - Claude Code skill for AI integration