Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion scripts/qa_screens.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def find_chromium():
cands += glob.glob(os.path.expanduser("~/.cache/ms-playwright/chromium-*/chrome-linux/chrome"))
return sorted(cands)[-1] if cands else None

VIEWS = ["Dashboard", "Memories", "Namespaces", "Graph", "Rooms", "Documents", "Lifecycle", "Settings"]
VIEWS = ["Dashboard", "Memories", "Documents", "Settings"] # 3-item IA (#293); removed views reachable via deep links

def run(base, out):
from playwright.sync_api import sync_playwright
Expand Down
18 changes: 7 additions & 11 deletions src/lib/components/Sidebar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,11 @@
import {
LayoutDashboard,
Brain,
Boxes,
Share2,
MessagesSquare,
FileText,
Settings,
PanelLeftClose,
PanelLeftOpen,
Plus,
HeartPulse,
Sun,
Moon,
} from 'lucide-svelte';
Expand Down Expand Up @@ -50,16 +46,16 @@
return () => clearInterval(interval);
});

// IA decision (owner, 2026-09-06): 3 primary destinations only.
// - Namespaces -> workspace/filter chip (read-only) — #297
// - Graph -> exploration mode inside Memories — #298
// - Rooms -> grouping dimension in the Memories hub panel — #293
// - Lifecycle -> Settings > Maintenance — #290
// Routes remain reachable via hash for deep links.
const navItems: { view: View; label: string; icon: IconComp }[] = [
{ view: 'dashboard', label: 'Dashboard', icon: LayoutDashboard },
{ view: 'dashboard', label: 'Home', icon: LayoutDashboard },
{ view: 'memories', label: 'Memories', icon: Brain },
{ view: 'namespaces', label: 'Namespaces', icon: Boxes },
{ view: 'graph', label: 'Graph', icon: Share2 },
{ view: 'rooms', label: 'Rooms', icon: MessagesSquare },
{ view: 'documents', label: 'Documents', icon: FileText },
{ view: 'lifecycle', label: 'Lifecycle', icon: HeartPulse },
// Tools hidden from nav — features being reworked (#244). Route still reachable.
// { view: 'tools', label: 'Tools', icon: Wrench },
];

type IconComp = typeof LayoutDashboard;
Expand Down
Loading