Navigate
{isScriptsSubmenuOpen && (
{scriptsLoading ? (
Loading scripts…
) : scriptEntries.length > 0 ? (
<>
{scriptEntries.map(([name, command]) => (
))}
{onOpenScripts && (
)}
>
) : (
onOpenScripts && (
)
)}
)}
{showSkillsInMore && (
)}
{roadmapEnabled && (
)}
{experimentalFeatures?.researchView && (
)}
{experimentalFeatures?.insights && (
)}
{experimentalFeatures?.memoryView && (
)}
{experimentalFeatures?.devServerView && (
)}
{experimentalFeatures?.nodesView && onOpenNodes && (
)}
{todoViewEnabled && (
)}
{overflowPluginViews.map((entry) => {
const pluginTaskView = buildPluginTaskViewId(entry.pluginId, entry.view.viewId);
const PluginIcon = getPluginNavIcon(entry.view.icon);
return (
);
})}
>
)}
>
);
}