From 72ba11b4819f562b4ee2a8a33e3c9aa6367ae438 Mon Sep 17 00:00:00 2001 From: Snider Date: Sun, 22 Mar 2026 02:28:05 +0000 Subject: [PATCH] fix(agentic): config path is ~/Code/.core/agents.yaml only MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit All .core/ config lives at codePath/.core/ — not in individual repos. Co-Authored-By: Virgil --- pkg/mcp/agentic/queue.go | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkg/mcp/agentic/queue.go b/pkg/mcp/agentic/queue.go index ef6239c..b8a8972 100644 --- a/pkg/mcp/agentic/queue.go +++ b/pkg/mcp/agentic/queue.go @@ -43,9 +43,7 @@ type AgentsConfig struct { // loadAgentsConfig reads config/agents.yaml from the code path. func (s *PrepSubsystem) loadAgentsConfig() *AgentsConfig { paths := []string{ - filepath.Join(s.codePath, "core", "agent", "config", "agents.yaml"), - filepath.Join(s.codePath, "core", "agent", ".core", "agents.yaml"), - filepath.Join(s.codePath, "host-uk", "core", ".core", "agents.yaml"), + filepath.Join(s.codePath, ".core", "agents.yaml"), } for _, path := range paths {