import type { JSX } from "react" import { getTranslations } from "next-intl/server" import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card" import { Section } from "@/components/ui/section" export async function CoreLoopSection(): Promise { const t = await getTranslations("manifesto") const coreLoopKeys = [ "prometheus", "metis", "momus", "orchestrator", "todoContinuation", "categorySystem", "backgroundAgents", "wisdomAccumulation", ] as const return (

{t("coreLoop.title")}

Human Intent
Agent Execution
Verified Result

↻ Minimum Intervention

{coreLoopKeys.map((key) => ( {t(`coreLoop.features.${key}.feature`)}

{t(`coreLoop.features.${key}.purpose`)}

))}
) }