import { useEffect } from "react"; import { GlassCard } from "../ui/GlassCard"; import { useAgentStore } from "../../stores/useAgentStore"; export function RightSidebar() { const { memory, timeline, tasksRunning } = useAgentStore(); useEffect(() => { useAgentStore .getState() .setMemory([ "User prefers TypeScript strict mode", "Project uses TanStack Query", "Deploys to Vercel", ]); }, []); return (

Autonomous execution ready.

No pending changes

{timeline.length === 0 &&
No activity yet
} {timeline.map((t, i) => (
{t.time} — {t.event}
))}
); } function Section({ title, children, }: { title: string; children: React.ReactNode; }) { return (

{title}

{children}
); }