diff --git a/app/[owner]/[repo]/[postNumber]/comment-thread.tsx b/app/[owner]/[repo]/[postNumber]/comment-thread.tsx
index a2b07db..3a08c16 100644
--- a/app/[owner]/[repo]/[postNumber]/comment-thread.tsx
+++ b/app/[owner]/[repo]/[postNumber]/comment-thread.tsx
@@ -78,6 +78,11 @@ function CommentItem({
const { postNumber } = useParams<{ postNumber: string }>()
+ // Check if this is a build mode comment (only relevant for LLM comments)
+ const isBuildMode =
+ author.isLlm &&
+ (comment.content as AgentUIMessage[]).some((m) => m.metadata?.mode === "build")
+
const actionLabel = isRootComment ? "posted" : "commented"
const header = (
@@ -95,6 +100,9 @@ function CommentItem({
{author.name}
+ {isBuildMode && (
+ (build)
+ )}