diff --git a/apps/web/src/components/slice-one/slice-one-page.tsx b/apps/web/src/components/slice-one/slice-one-page.tsx index f7f007f..9729f88 100644 --- a/apps/web/src/components/slice-one/slice-one-page.tsx +++ b/apps/web/src/components/slice-one/slice-one-page.tsx @@ -17,6 +17,7 @@ import { RotateCcw, Send, Sparkles, + Settings, X, } from "lucide-react"; import { useMemo, useRef, useState } from "react"; @@ -258,19 +259,61 @@ const WorkCard = ({ onSourceSelect, work, slice }: WorkCardProps) => { Build
{latestRun ? ( -- Run {latestRun.status}:{" "} - {latestRun.terminalSummary ?? - latestRun.terminalClassification ?? - "activity is still arriving"} -
++ {latestRun.executionKind === "real" + ? "AgentOS" + : "Simulation"}{" "} + run {latestRun.status}:{" "} + {latestRun.terminalSummary ?? + latestRun.terminalClassification ?? + "activity is still arriving"} +
+ {latestRun.attemptEvents?.slice(-5).map((item) => ( ++ {item.message} +
+ ))} + {latestRun.baseRevision ? ( ++ {latestRun.baseRevision.slice(0, 8)} →{" "} + {latestRun.candidateRevision?.slice(0, 8) ?? "working"} +
+ ) : null} + {latestRun.artifacts?.map((artifact) => ( + + {artifact.title} + + ))} +No simulation Run yet.
+No implementation Run yet.
)}