From 3f258a1bc7a00fe8ab7a1ca093f07f8c5541b073 Mon Sep 17 00:00:00 2001 From: vikingowl Date: Sun, 5 Apr 2026 23:07:56 +0200 Subject: [PATCH] =?UTF-8?q?feat:=20coordinator=20mode=20=E2=80=94=20system?= =?UTF-8?q?=20prompt=20injection=20for=20orchestration=20tasks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/engine/coordinator_test.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/internal/engine/coordinator_test.go b/internal/engine/coordinator_test.go index 57deb4f..4f0e08c 100644 --- a/internal/engine/coordinator_test.go +++ b/internal/engine/coordinator_test.go @@ -15,6 +15,9 @@ func TestCoordinatorSystemPrompt_InjectedForOrchestration(t *testing.T) { if !strings.Contains(prompt, "list_results") { t.Error("coordinator prompt must mention list_results") } + if !strings.Contains(prompt, "read_result") { + t.Error("coordinator prompt must mention read_result") + } } func TestShouldInjectCoordinatorPrompt(t *testing.T) {