Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
257 changes: 0 additions & 257 deletions packages/claude-code-plugin/hooks/lib/tui_launcher.py

This file was deleted.

16 changes: 0 additions & 16 deletions packages/claude-code-plugin/hooks/session-start.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,22 +624,6 @@ def main():
except Exception:
pass # Never block session start

# Step 7: Launch companion TUI (#970)
try:
_ensure_lib_path()
from tui_launcher import launch as launch_tui
from config import get_config as _get_tui_cfg

from session_utils import get_session_id as _get_sid_tui
_tui_sid = _get_sid_tui()
_tui_cwd = os.environ.get("CLAUDE_PROJECT_DIR", str(Path.cwd()))
_tui_cfg = _get_tui_cfg(_tui_cwd)
_tui_ok, _tui_msg = launch_tui(_tui_sid, _tui_cfg)
if _tui_msg:
print(_tui_msg, file=sys.stderr)
except Exception:
pass # Never block session start

sys.exit(0)

except PermissionError as e:
Expand Down
7 changes: 0 additions & 7 deletions packages/claude-code-plugin/hooks/stop.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@ def handle_stop(data: dict):
from session_utils import get_session_id
session_id = get_session_id()

# Clean up companion TUI pane (#970)
try:
from tui_launcher import cleanup as cleanup_tui
cleanup_tui(session_id)
except Exception:
pass # Never block session stop

stats = SessionStats(session_id=session_id)

# Flush pending in-memory stats before finalize (#931)
Expand Down
Loading
Loading