import React from 'react'; import WindowFrame from '../shared/WindowFrame'; import { WindowState } from '../../hooks/useWindowManager'; type Props = { state: WindowState; onClose: (id: string) => void; onMinimize: (id: string) => void; onMaximize: (id: string) => void; onDragStart: (id: string, event: React.MouseEvent) => void; onFocus: (id: string) => void; }; export default function AgentsWindow({ state, ...handlers }: Props) { return (

1,000 Unique Agents

Each with names, memories, families & Unity homes

🤖
IDAgent‑042
PersonaAlice
StatusActive
Tasks Today247
🤖
IDAgent‑189
PersonaMarcus
StatusActive
Tasks Today189
); }