Merge branch 'memory-ui' into v0.10.0rc

This commit is contained in:
webdevcody
2026-01-10 20:13:07 -05:00
5 changed files with 642 additions and 0 deletions

View File

@@ -9,6 +9,7 @@ import {
CircleDot,
GitPullRequest,
Lightbulb,
Brain,
} from 'lucide-react';
import type { NavSection, NavItem } from '../types';
import type { KeyboardShortcut } from '@/hooks/use-keyboard-shortcuts';
@@ -24,6 +25,7 @@ interface UseNavigationProps {
cycleNextProject: string;
spec: string;
context: string;
memory: string;
board: string;
agent: string;
terminal: string;
@@ -109,6 +111,12 @@ export function useNavigation({
icon: BookOpen,
shortcut: shortcuts.context,
},
{
id: 'memory',
label: 'Memory',
icon: Brain,
shortcut: shortcuts.memory,
},
];
// Filter out hidden items