From 8f2b8aa514df8545e2ebb64afd4ff4c9f3c40053 Mon Sep 17 00:00:00 2001 From: Kohei Date: Sun, 22 Feb 2026 11:57:56 +0900 Subject: [PATCH] style: fix gofmt alignment in ContextBuilder struct Co-Authored-By: Claude Opus 4.6 --- pkg/agent/context.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/pkg/agent/context.go b/pkg/agent/context.go index a65803ca5..ff5c6a982 100644 --- a/pkg/agent/context.go +++ b/pkg/agent/context.go @@ -15,14 +15,14 @@ import ( ) type ContextBuilder struct { - workspace string - dataDir string - skillsLoader *skills.SkillsLoader - memory *MemoryStore - tools *tools.ToolRegistry // Direct reference to tool registry - mcpManager *mcp.Manager // MCP server manager - enabledChannels []string // Active communication channels - memoryToolEnabled bool // Whether memory tool is registered + workspace string + dataDir string + skillsLoader *skills.SkillsLoader + memory *MemoryStore + tools *tools.ToolRegistry // Direct reference to tool registry + mcpManager *mcp.Manager // MCP server manager + enabledChannels []string // Active communication channels + memoryToolEnabled bool // Whether memory tool is registered } func getGlobalConfigDir() string {