From 2249e15115ed6bcc5e44bbaaee0593158bfa8682 Mon Sep 17 00:00:00 2001 From: dj-oyu <68707227+dj-oyu@users.noreply.github.com> Date: Tue, 3 Mar 2026 12:08:37 +0900 Subject: [PATCH] style: fix struct field alignment in activeTask Align streamedChunks and messageContent fields to match the existing padding pattern in the activeTask struct. Fixes gci linter failure. Co-Authored-By: Claude Opus 4.6 --- pkg/agent/loop.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkg/agent/loop.go b/pkg/agent/loop.go index 1cf53a1cb..dada8987e 100644 --- a/pkg/agent/loop.go +++ b/pkg/agent/loop.go @@ -53,8 +53,8 @@ type activeTask struct { lastError *toolLogEntry // sticky: most recent error, persists across iterations projectDir string // detected from exec cd target (authoritative) fileCommonDir string // LCP of file paths relative to workspace (fallback) - streamedChunks bool // true after onChunk fires at least once - messageContent string // last content sent by the message tool (for inclusion in completion) + streamedChunks bool // true after onChunk fires at least once + messageContent string // last content sent by the message tool (for inclusion in completion) mu sync.Mutex }