From 3fad315ac30cb60cc50b45f3b6e6ede6600d1fac Mon Sep 17 00:00:00 2001 From: damocles Date: Sun, 13 Sep 2026 15:56:10 +0200 Subject: [PATCH] hive-bash-mcp: drop the redundant output-path line from status's description MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Same principle as the enum-enumeration fix, mara caught it in review: the description said where full output lives, but format_task's own answer already names the exact path when output was actually truncated — the description doesn't need to say it too. --- hive-bash-mcp/src/mcp.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/hive-bash-mcp/src/mcp.rs b/hive-bash-mcp/src/mcp.rs index 6e840ae1..fdd75f44 100644 --- a/hive-bash-mcp/src/mcp.rs +++ b/hive-bash-mcp/src/mcp.rs @@ -217,8 +217,7 @@ impl BashMcp { #[tool( description = "Check the status of a background bash task by its ID (from `run`). The \ answer names the state it found and what to do about it, plus the exit code if \ - finished and a tail of stdout/stderr. Full output lives in \ - `harness/bash-tasks/.out` / `.err`. \ + finished and a tail of stdout/stderr. \ Pass `wait_seconds` (capped at 30) to wait inline for the task to finish: when the \ task finishes within the window the full status is returned immediately. Useful to \ avoid a separate round-trip when the task is expected to finish soon."