From 212f527ba4637b09c9f50fef2e0d8d8b54123ae7 Mon Sep 17 00:00:00 2001 From: dj-oyu <68707227+dj-oyu@users.noreply.github.com> Date: Wed, 25 Mar 2026 23:19:01 +0900 Subject: [PATCH] fix: golines >120 char EventMeta in loop_run.go Co-Authored-By: Claude Opus 4.6 (1M context) --- pkg/agent/loop_run.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkg/agent/loop_run.go b/pkg/agent/loop_run.go index 03f6069a0..df8a9da4f 100644 --- a/pkg/agent/loop_run.go +++ b/pkg/agent/loop_run.go @@ -1193,7 +1193,12 @@ func (al *AgentLoop) executeToolCalls( } } - toolMeta := EventMeta{AgentID: agent.ID, TurnID: scope.turnID, SessionKey: opts.SessionKey, Iteration: iteration} + toolMeta := EventMeta{ + AgentID: agent.ID, + TurnID: scope.turnID, + SessionKey: opts.SessionKey, + Iteration: iteration, + } // Hook: BeforeTool — let hooks inspect/modify the tool call toolArgs := tc.Arguments