You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The completed #927 acceptance requires Up/Down prompt-history recall at the first/last composer line. Production code stores history but exposes only “recall the last prompt,” has no history cursor/forward traversal, and never calls that method from the composer.
Evidence
macapp/Sources/GoCodeUI/RunSession.swift:25-26,74-75 — history is appended.
RunSession.swift:205-208 — recall always selects only promptHistory.last.
macapp/Sources/GoCodeUI/ChatView.swift:888-893 — composer handles submit and draft changes, but no Up/Down key navigation.
Repository search finds no production caller of recallPreviousPrompt().
Parent: #991
Summary
The completed #927 acceptance requires Up/Down prompt-history recall at the first/last composer line. Production code stores history but exposes only “recall the last prompt,” has no history cursor/forward traversal, and never calls that method from the composer.
Evidence
macapp/Sources/GoCodeUI/RunSession.swift:25-26,74-75— history is appended.RunSession.swift:205-208— recall always selects onlypromptHistory.last.macapp/Sources/GoCodeUI/ChatView.swift:888-893— composer handles submit and draft changes, but no Up/Down key navigation.recallPreviousPrompt().Scope
Tests first
Acceptance criteria
swift test, Swift build, formatting, strict format lint, and keyboard smoke pass.