Open
Conversation
This commit implements the ability to create multiple tmux panes (both shell and Claude) within a single task's detail view. Changes: - Add task_panes table to track multiple panes per task - Add DB layer for CRUD operations on task panes - Add keybindings: Ctrl+N (new shell), Ctrl+Shift+N (new Claude) - Implement pane creation and cleanup in detail view - Add comprehensive tests for pane operations - Add documentation for the feature The feature allows users to leverage tmux's full power by creating additional panes as needed, all tracked back to the task for proper cleanup when navigating away. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
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
This PR implements the ability to create multiple tmux panes (both shell and Claude) within a single task's detail view, allowing users to leverage the full power of tmux for parallel work.
Key Features
New Keybindings:
Ctrl+N: Create a new shell paneCtrl+Shift+N: Create a new Claude paneDatabase Schema:
task_panestable to track multiple panes per taskclaude,shell,claude-extra,shell-extraPane Management:
Implementation Details
Database Layer (
internal/db/panes.go):UI Layer (
internal/ui/pane_manager.go):Tests (
internal/db/panes_test.go):Documentation (
docs/multiple-panes.md):Use Cases
Backward Compatibility
The existing
claude_pane_idandshell_pane_idcolumns remain for backward compatibility and track the primary panes.Test Plan
🤖 Generated with Claude Code