feat(tui-go): idea board viewer

OverlayIdeas (opened with I, global/cross-session) lists the idea board in the
artifact-viewer shell: ↑↓ to move, x/d to remove (sends DiscardIdea, optimistic
drop), esc to close. Pull-based via ListIdeas -> idea.list.
This commit is contained in:
2026-06-14 14:36:13 +04:00
parent 04e931c860
commit 02e963d6cc
8 changed files with 250 additions and 1 deletions
+2
View File
@@ -59,6 +59,8 @@ func (m Model) renderOverlay(base string) string {
return m.center(m.configModal())
case OverlayStats:
return m.center(m.statsModal())
case OverlayIdeas:
return m.center(m.ideasModal())
}
return base
}