chore: codebase audit — remove dead code, unused deps, clean configs

Phase 1: Delete 19 dead component/service/tool files (4,200+ lines)
Phase 2: Remove 13 unused npm packages (Radix UI, shadcn utilities, ytdl-core, etc.)
Phase 3: Database schema — drop agent_delegations, add performance indexes
Phase 4: Remove 12 dead types from database.ts/analytics.ts/helpers.ts
Phase 5: Strip shadcn/ui theme from tailwind config
Phase 6: Clean env vars, fix broken imports (LocalKeyGate, MapViewer)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
“BeeRad”
2026-01-29 08:52:15 +11:00
co-authored by Claude Opus 4.5
parent 65d22315e1
commit 9b2db68751
33 changed files with 13 additions and 5683 deletions
-111
View File
@@ -1,111 +0,0 @@
"use client";
import { ChevronLeft, ChevronRight, FileText, MessageSquare, Workflow, FolderOpen, Map, LayoutList } from 'lucide-react';
type RailPosition = 'left' | 'right';
type PaneType = 'nodes' | 'node' | 'chat' | 'workflows' | 'dimensions' | 'map' | 'views';
interface CollapsedRailProps {
position: RailPosition;
paneType: PaneType;
onExpand: () => void;
shortcut?: string;
}
const PANE_ICONS: Record<PaneType, React.ReactNode> = {
nodes: <FileText size={18} />,
node: <FileText size={18} />,
chat: <MessageSquare size={18} />,
workflows: <Workflow size={18} />,
dimensions: <FolderOpen size={18} />,
map: <Map size={18} />,
views: <LayoutList size={18} />,
};
const PANE_LABELS: Record<PaneType, string> = {
nodes: 'Nodes',
node: 'Focus',
chat: 'Chat',
workflows: 'Workflows',
dimensions: 'Dimensions',
map: 'Map',
views: 'Feed',
};
export default function CollapsedRail({ position, paneType, onExpand, shortcut }: CollapsedRailProps) {
const isLeft = position === 'left';
const ChevronIcon = isLeft ? ChevronRight : ChevronLeft;
return (
<div
onClick={onExpand}
style={{
width: '40px',
height: '100%',
flexShrink: 0,
borderLeft: isLeft ? 'none' : '1px solid #1f1f1f',
borderRight: isLeft ? '1px solid #1f1f1f' : 'none',
background: '#0c0c0c',
display: 'flex',
flexDirection: 'column',
alignItems: 'center',
paddingTop: '12px',
gap: '8px',
cursor: 'pointer',
transition: 'background 0.15s ease',
}}
onMouseEnter={(e) => {
e.currentTarget.style.background = '#141414';
}}
onMouseLeave={(e) => {
e.currentTarget.style.background = '#0c0c0c';
}}
title={`Expand ${PANE_LABELS[paneType]}${shortcut ? ` (${shortcut})` : ''}`}
>
{/* Icon representing the collapsed panel */}
<div
style={{
width: '32px',
height: '32px',
borderRadius: '6px',
background: '#1a1a1a',
border: '1px solid #333',
display: 'flex',
alignItems: 'center',
justifyContent: 'center',
color: '#888',
transition: 'all 0.15s ease',
}}
>
{PANE_ICONS[paneType]}
</div>
{/* Chevron indicator */}
<div
style={{
color: '#666',
marginTop: '4px',
}}
>
<ChevronIcon size={14} />
</div>
{/* Vertical label */}
<div
style={{
writingMode: 'vertical-rl',
textOrientation: 'mixed',
transform: isLeft ? 'rotate(180deg)' : 'none',
fontSize: '10px',
fontWeight: 500,
color: '#777',
letterSpacing: '0.05em',
textTransform: 'uppercase',
marginTop: '8px',
}}
>
{PANE_LABELS[paneType]}
</div>
</div>
);
}