Commit Graph

3 Commits

  • fix(coding-agent): prevent full re-renders during write tool streaming
    Move line count from header to footer to avoid changing the first line
    during streaming, which was triggering full screen re-renders in the
    TUI's differential rendering logic.
  • Use serializeConversation in handoff hook
    Properly handles all message types including tool calls, thinking,
    and tool results instead of manual text extraction.
  • Add handoff example hook
    Transfers context to a new focused session instead of compacting.
    User provides a goal, hook generates a prompt with relevant context,
    creates a new session with parent tracking, and loads the prompt
    as a draft in the editor for review.
    
    Inspired by Amp's handoff feature.