Conversation
- Dynamic viewport height adapts to input box size - User messages wrap with full-width background - Long words force-break at terminal width - All slash commands now render immediately (viewDirty fix) - Config panel arrow keys/Enter work correctly - /model validation against known models with helpful errors - Async model fetching with in-memory cache (prefetched at startup) - Provider switch auto-sets first available model - API key entry shows correct masked input field - Mouse wheel scrolling enabled - Tighter spacing between tool_use/tool_result pairs - Tool results show more context (800 chars) with truncation indicator
Responses that hit max_tokens with text-only content now auto-continue (up to 3 continuations, 32K token cap). No more truncated responses.
- Initialize conversation DAG (SQLite) on session start - AddUser/AddAssistant persist to DAG alongside linear messages - /fork creates a branch from current conversation head - /branches lists all fork points and lets you switch between them - ForkConversation/SwitchBranch/ListBranches methods on Session - Backward compatible: DAG is optional, legacy fork still works
- Add Tracer field to Session, initialize in NewSession - Add session, agent-loop, and tool-level trace spans in stream.go - Add unit tests for hawk/sight bridge (graceful degradation) - Add unit tests for hawk/inspect bridge (ready state, fallbacks)
- Add CascadeRouter for automatic model tier selection (planning→Opus, coding→Sonnet, summary→Haiku) - Add ClassifyTask heuristic for keyword-based task classification - Add 5 integration tests exercising full pipeline: hawk→eyrie→tok→yaad→sight→inspect - Tests verify cross-project data flow with mock LLM, real SQLite, and httptest servers
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
Test plan
go test -race ./...passes (47 packages, 0 failures)