This was generated by AI during triage.
In pi v0.74.0, the interactive startup line for scoped models hardcodes (Ctrl+P to cycle):
Model scope: gpt-5.5, claude-opus-4-7 (Ctrl+P to cycle)
I have app.model.cycleForward rebound in ~/.pi/agent/keybindings.json:
"app.model.cycleForward": "alt+m"
Ctrl+P is bound to editor/list up, and the actual model cycling shortcut is alt+m, but startup still shows Ctrl+P.
Why it matters: the hint is misleading after keybinding customization and conflicts with the user-assigned meaning of Ctrl+P.
Expected: render the hint from the effective app.model.cycleForward keybinding, or omit it when unbound.
Likely location: packages/coding-agent/src/main.ts, the startup Model scope log.
In pi v0.74.0, the interactive startup line for scoped models hardcodes
(Ctrl+P to cycle):I have
app.model.cycleForwardrebound in~/.pi/agent/keybindings.json:Ctrl+Pis bound to editor/list up, and the actual model cycling shortcut isalt+m, but startup still showsCtrl+P.Why it matters: the hint is misleading after keybinding customization and conflicts with the user-assigned meaning of
Ctrl+P.Expected: render the hint from the effective
app.model.cycleForwardkeybinding, or omit it when unbound.Likely location:
packages/coding-agent/src/main.ts, the startupModel scopelog.