docs: parallel session supervision with tmux#6
Open
Ryan4n6 wants to merge 3 commits into
Open
Conversation
Describes the tmux-based supervisor + executor pattern for running large implementation plans without context window exhaustion. Supervisor watches via tmux capture-pane, can intervene with send-keys if the executor goes off-rails.
- watch-session.sh: 3-pane tmux layout (executor, git monitor, file watcher) - Quick Start section in parallel-sessions.md - Learning by Watching section for turning delegation into apprenticeship - tmux cheat sheet for common pane navigation
Stronger argument than learning: Claude's summaries are lossy. tmux shows wrong file reads, phantom searches, edit drift, TDD violations, context waste, and silent failures that summaries compress away.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
docs/parallel-sessions.md— guide for running a supervisor + executor pattern with tmuxWhat This Solves
Large implementation plans (10+ tasks) exhaust the context window. This pattern runs two Claude sessions:
--dangerously-skip-permissionstmux capture-pane, reviews commits, can intervene withtmux send-keysOrigin
Discovered during a 15-task multi-tenant auth implementation. The supervisor session monitored git commits in real-time while the executor autonomously wrote code, ran tests, and committed — with zero human intervention needed.
Test plan
docs/parallel-sessions.mdfor accuracy