import AgentTable from '../../components/AgentTable'; import { gatewayVersion } from '../../lib/trpc'; export default async function AgentsPage() { const version = await gatewayVersion().catch(() => 'unknown'); return (

Agents Registry

Pulls from the API Gateway `/agents` endpoint and validates the response locally with zod.

Gateway v{version}
); }