import { activityEventBus } from '../../../lib/realtime'; export async function GET(request: Request): Promise { const url = new URL(request.url); const projectRoot = url.searchParams.get('projectRoot') || undefined; const history = activityEventBus.getHistory(projectRoot); return Response.json(history); }