kob-cli 1.0.23 → 1.0.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/ui/code-tui.tsx +5 -3
package/package.json
CHANGED
package/src/ui/code-tui.tsx
CHANGED
|
@@ -1578,7 +1578,7 @@ function CodeEngine() {
|
|
|
1578
1578
|
return true;
|
|
1579
1579
|
case 'help':
|
|
1580
1580
|
case '?':
|
|
1581
|
-
|
|
1581
|
+
setHelpOpen(true);
|
|
1582
1582
|
return true;
|
|
1583
1583
|
case 'exit':
|
|
1584
1584
|
case 'quit':
|
|
@@ -1736,6 +1736,8 @@ function CodeEngine() {
|
|
|
1736
1736
|
}} />
|
|
1737
1737
|
)}
|
|
1738
1738
|
|
|
1739
|
+
{helpOpen && <HelpScreen onClose={() => setHelpOpen(false)} />}
|
|
1740
|
+
|
|
1739
1741
|
{phase === 'generating' ? (
|
|
1740
1742
|
<GeneratingPanel messages={getMode(mode).statusMessages} elapsed={now - startMs} />
|
|
1741
1743
|
) : (
|
|
@@ -1744,11 +1746,11 @@ function CodeEngine() {
|
|
|
1744
1746
|
mode={mode}
|
|
1745
1747
|
onModeChange={setMode}
|
|
1746
1748
|
visionSupported={modelSupportsVision(model)}
|
|
1747
|
-
isActive={palette === null && !configOpen && phase === 'input'}
|
|
1749
|
+
isActive={palette === null && !configOpen && !helpOpen && phase === 'input'}
|
|
1748
1750
|
/>
|
|
1749
1751
|
)}
|
|
1750
1752
|
|
|
1751
|
-
<BottomBar phase={phase} mode={mode} />
|
|
1753
|
+
<BottomBar phase={phase} mode={mode} isFirstStart={isFirstStart} />
|
|
1752
1754
|
</Box>
|
|
1753
1755
|
);
|
|
1754
1756
|
}
|