From 0079a0e3c8c5403d6c74873a51655026fc372ac2 Mon Sep 17 00:00:00 2001 From: David Baity <158404677+MazakTheDwarf@users.noreply.github.com> Date: Tue, 10 Mar 2026 11:38:53 -0400 Subject: [PATCH] fix: remove hint text from task_type schema field MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bouncer does exact match on task_type — parenthetical hint leaked into LLM output. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- templates/InputFromUser.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/InputFromUser.yml b/templates/InputFromUser.yml index d72dbf1..88d5dd4 100644 --- a/templates/InputFromUser.yml +++ b/templates/InputFromUser.yml @@ -62,7 +62,7 @@ steps: description: "string — the operator's full message verbatim, plus project context (create_task only)" agents: - "Edgar" - task_type: "planning (always for create_task)" + task_type: "planning" note: "string — insight to store (save_nugget only)" subject: "string — what to look up (status_query only)" user_name: "string — sender name (status_query briefing only)"