- Add intelligent-router.sh hook for automatic agent routing - Add AUTO-TRIGGER-SUMMARY.md documentation - Add FINAL-INTEGRATION-SUMMARY.md documentation - Complete Prometheus integration (6 commands + 4 tools) - Complete Dexto integration (12 commands + 5 tools) - Enhanced Ralph with access to all agents - Fix /clawd command (removed disable-model-invocation) - Update hooks.json to v5 with intelligent routing - 291 total skills now available - All 21 commands with automatic routing 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import React, {type ReactNode} from 'react';
|
|
import {useNavbarMobileSidebar} from '@docusaurus/theme-common/internal';
|
|
import {translate} from '@docusaurus/Translate';
|
|
import NavbarColorModeToggle from '@theme/Navbar/ColorModeToggle';
|
|
import IconClose from '@theme/Icon/Close';
|
|
import NavbarLogo from '@theme/Navbar/Logo';
|
|
|
|
function CloseButton() {
|
|
const mobileSidebar = useNavbarMobileSidebar();
|
|
return (
|
|
<button
|
|
type="button"
|
|
aria-label={translate({
|
|
id: 'theme.docs.sidebar.closeSidebarButtonAriaLabel',
|
|
message: 'Close navigation bar',
|
|
description: 'The ARIA label for close button of mobile sidebar',
|
|
})}
|
|
className="clean-btn navbar-sidebar__close"
|
|
onClick={() => mobileSidebar.toggle()}>
|
|
<IconClose color="var(--ifm-color-emphasis-600)" />
|
|
</button>
|
|
);
|
|
}
|
|
|
|
export default function NavbarMobileSidebarHeader(): ReactNode {
|
|
return (
|
|
<div className="navbar-sidebar__brand">
|
|
<NavbarLogo />
|
|
<NavbarColorModeToggle className="margin-right--md" />
|
|
<CloseButton />
|
|
</div>
|
|
);
|
|
}
|