Navigate
{isScriptsSubmenuOpen && (
{scriptsLoading ? (
Loading scripts…
) : scriptEntries.length > 0 ? (
<>
{scriptEntries.map(([name, command]) => (
))}
{onOpenScripts && (
)}
>
) : (
onOpenScripts && (
)
)}
)}
{showSkillsInMore && (
)}
{roadmapEnabled && (
)}
{experimentalFeatures?.researchView && (
)}
{experimentalFeatures?.insights && (
)}
{experimentalFeatures?.memoryView && (
)}
{experimentalFeatures?.devServerView && (
)}
{todoViewEnabled && (
)}
{pluginDashboardViews
.filter((entry) => entry.view.placement !== "primary")
.sort((a, b) => (a.view.order ?? Number.MAX_SAFE_INTEGER) - (b.view.order ?? Number.MAX_SAFE_INTEGER))
.map((entry) => {
const pluginTaskView = buildPluginTaskViewId(entry.pluginId, entry.view.viewId);
const PluginIcon = getPluginNavIcon(entry.view.icon);
return (
);
})}
>
)}
>
);
}