Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Interactive shell/TTY integration with tmux session management, shell command execution, control-mode output capture with polling fallback, native cursor rendering, lazy scrollback, selection, paste handling, and inline editing. Use when working on shell integration, tmux features, command execution, or interactive mode.
.claude/skills/marcus-shell-integration/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | 32% | 0% |
| case-01 | ✗→✓ | ▲ Improved | 68% | 0% |
| case-04 | ✗→✓ | ▲ Improved | 76% | 0% |
| case-05 | ✗→✓ | ▲ Improved | 51% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 20% | 0% |
Sidecar's interactive shell allows users to type directly into tmux sessions from within the TUI. Tmux remains the PTY backend. Sidecar renders ordered control-mode bytes through the shared tty.Model, whose VT behavior is behind the screenmodel adapter rather than implemented in plugin code.
internal/tty/ # Shared tmux terminal abstraction
tty.go # Core Model and State types
keymap.go # Bubble Tea -> tmux key translation
messages.go # Owner/target/generation-scoped messages
session.go # tmux operations (send-keys, capture-pane, resize)
scheduler.go # Keyed fallback-poll generation ownership
control_*.go # Session-keyed tmux -C transport and manager
capture_range.go # Atomic bounded history capture
cursor.go # Cursor positioning helpers
paste.go # Paste handling (clipboard, bracketed paste)
terminal_mode.go # Capture-fallback mode recovery
output_buffer.go # Absolute, bounded live/history buffer
editor_session.go # Shared inline-editor tmux lifecycle
internal/plugins/workspace/
interactive.go # Workspace-specific interactive mode logic
interactive_selection.go # Text selection in interactive mode
terminal_viewport.go # Pure shared terminal viewport renderer
terminal_control.go # Workspace target/layout policy for tty.Model
terminal_history.go # Lazy absolute scrollback loading
terminal_search.go # Loaded-history search
terminal_links.go # Safe URL/path detection and activation
native_terminal.go # Native cursor and contextual mouse mode
view_preview.go # Agent/shell preview composition
mouse.go # Scroll handling
types.go # InteractiveState type
internal/plugins/filebrowser/
inline_edit.go # Inline editor mode using tty.Model
handlers.go # Message handling for inline editUser Keypress -> handleInteractiveKeys() -> tty.MapKeyToTmux() -> tmux send-keys
Pane output -> tmux -C ordered %output bytes
-> session-pooled control actor
-> seeded screenmodel adapter
-> owner/target/generation-scoped Tea message
-> OutputBuffer + cursor/modes/history
-> pure terminal viewport + native Bubble Tea cursor
Open/resync/history -> bounded capture seed/range
Control unavailable/dead -> one scoped capture-poll fallback + clean reseedEmbeddable component for interactive tmux functionality:
gotype Model struct { Config Config // Exit key, copy/paste keys, scrollback lines State *State // Current interactive state Width int Height int OnExit func() tea.Cmd OnAttach func() tea.Cmd } // Usage: p.inlineEditor = tty.New(&tty.Config{ ExitKey: "ctrl+\\", ScrollbackLines: 600, }) cmd := p.inlineEditor.Enter(sessionName, paneID)
gotype State struct { Active bool TargetPane string // tmux pane ID (e.g., "%12") TargetSession string LastKeyTime time.Time // Input timing and fallback polling decay CursorRow, CursorCol int CursorVisible bool PaneHeight, PaneWidth int BracketedPasteEnabled bool MouseReportingEnabled bool OutputBuf *OutputBuffer PollGeneration int // For invalidating stale fallback polls }
Thread-safe bounded buffer with hash-based change detection:
gofunc (b *OutputBuffer) Update(content string) bool { rawHash := maphash.String(seed, content) if rawHash == b.lastRawHash { return false } // Skip ALL processing content = mouseEscapeRegex.ReplaceAllString(content, "") b.lines = strings.Split(content, "\n") return true } func (b *OutputBuffer) LinesRange(start, end int) []string
keymap.go)gofunc MapKeyToTmux(msg tea.KeyPressMsg) (key string, useLiteral bool) { if msg.Mod.Contains(tea.ModCtrl) && msg.Code >= 'a' && msg.Code <= 'z' { return "C-" + string(msg.Code), false } switch msg.Code { case tea.KeyEnter: return "Enter", false case tea.KeyBackspace: return "BSpace", false case tea.KeyTab: return "Tab", false case tea.KeyUp: return "Up", false } if msg.Text != "" { return msg.Text, true // Literal mode } return "", true }
Modified keys use CSI sequences:
gocase "shift+up": return "\x1b[1;2A", true case "ctrl+up": return "\x1b[1;5A", true case "alt+up": return "\x1b[1;3A", true case "shift+tab": return "\x1b[Z", true
For printable characters, tmux send-keys -l prevents interpretation.
goconst ( PollingDecayFast = 50ms // During active typing PollingDecayMedium = 200ms // After 2s inactivity PollingDecaySlow = 250ms // After 10s inactivity KeystrokeDebounce = 20ms // Delay after keystroke )
Control-mode bytes are the ordinary presentation source for every visible terminal surface. Adaptive capture polling exists only until the first seeded frame and after control/model failure. Workspace agent and shell observation continues independently for provider activity evidence; those captures never overwrite a model-owned presentation buffer.
Set SIDECAR_TERMINAL_TRACE=1 only in an isolated proof run to log privacy-safe capture metadata (surface, role, reason, and generation). It never logs session or pane identity, terminal text, commands, paths, titles, or provider payloads. This distinguishes intentional semantic observation from presentation fallback.
| State | Active | Idle | |-------|--------|------| | Visible + focused | 200ms | 2s | | Visible + app unfocused | clamped to unfocused cadence | clamped | | Not visible | 10-20s | 10-20s |
tty.KeyedScheduler owns a generation per logical source (agent:<name>, shell:<tmuxName>, terminal-panel). Every schedule allocates a fresh token, and the token travels through capture, result, retry, and continuation messages. Reset invalidates pending timers and in-flight results.
gotoken, cmd := scheduler.Schedule(key, delay, makeMessage) if scheduler.IsCurrent(key, token) { /* apply result */ }
Control subscriptions are pooled by tmux session because a control client cannot observe panes in another session. Subscription close and manager stop invalidate and drain queued callbacks before returning.
cursor.go)gofunc QueryCursorPositionSync(target string) (row, col, paneHeight, paneWidth int, visible, ok bool) { cmd := exec.Command("tmux", "display-message", "-t", target, "-p", "#{cursor_x},#{cursor_y},#{cursor_flag},#{pane_height},#{pane_width}") }
Focused live terminal surfaces expose a tea.Cursor through the plugin CursorProvider capability. Workspace, filebrowser, and notes compute exact application coordinates and suppress the cursor under modals, while scrolled back, outside the visible slice, or when another surface owns focus. A painted cursor is not added to native-cursor content.
When display height differs from tmux pane height:
goif paneHeight > displayHeight { relativeRow = cursorRow - (paneHeight - displayHeight) } else if paneHeight > 0 && paneHeight < displayHeight { relativeRow = cursorRow + (displayHeight - paneHeight) }
Scrolling operates on the captured buffer. No tmux copy-mode involved.
gotype Plugin struct { previewOffset int // Lines from bottom (0 = at bottom/live) autoScrollOutput bool // Auto-follow new output? }
previewOffsetpreviewOffset, re-enable auto-scroll at 0alt+c (configurable via interactiveCopyKey)alt+v (configurable via interactivePasteKey)Paste wraps text with bracketed paste sequences (\x1b[200~...\x1b[201~) when the application has enabled bracketed paste mode.
terminal_mode.go)When capture fallback owns presentation, detects bracketed paste and mouse reporting modes by scanning the fallback snapshot. Healthy model-backed presentation receives these modes from the shared screen model.
Tmux panes are resized in background at all times (not just interactive mode):
gofunc ResizeTmuxPane(paneID string, width, height int) { // resize-window, fallback to resize-pane for older tmux }
Resize triggers: window resize, sidebar toggle/drag, selection change, agent/shell creation, interactive mode entry.
Uses tty.Model plus tty.EditorSession for vim/nano/emacs editing in the file preview pane. Session creation is history-safe and asynchronous:
gofunc (p *Plugin) enterInlineEditMode(path string) tea.Cmd { return func() tea.Msg { session, err := tty.StartEditorSession(tty.EditorSessionOptions{Path: path}) return InlineEditStartedMsg{Session: session, Err: err} } }
Workspace Plugin:
i when preview pane focused with output tabCtrl+\ (instant) or double-Escape (150ms delay)Ctrl+] (full tmux attach)Filebrowser Plugin:
e or Enter on a file (if inline edit enabled)Ctrl+\ or double-EscapeCtrl+]json{ "features": { "tmux_interactive_input": true, "tmux_inline_edit": true } }
json{ "plugins": { "workspace": { "interactiveExitKey": "ctrl+\\", "interactiveAttachKey": "ctrl+]", "interactiveCopyKey": "alt+c", "interactivePasteKey": "alt+v", "tmuxCaptureMaxBytes": 2097152, "copyOnSelect": false } } }
Init() or View(); use Start()/tea.Cmd.tea.Cmd callbacks; return a scoped message.docs/plans/implemented/spec-tmux-interactive-input.mdOther measured skills in the registry, with their headline benchmark lift.