From eb04225ddf20c5230d3b2928caa0b90b3a2dee3a Mon Sep 17 00:00:00 2001 From: iris Date: Thu, 2 Jul 2026 12:56:21 +0200 Subject: [PATCH] docs(tools/bash): add killed to status tool status enum The kill tool (previous commit) produces the 'killed' terminal status, but the status tool docs listed only pending/running/done/timed_out/ interrupted. Add 'killed' to complete the enum. --- docs/tools/bash.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/bash.md b/docs/tools/bash.md index 7b46886b..4bdf6aa2 100644 --- a/docs/tools/bash.md +++ b/docs/tools/bash.md @@ -40,7 +40,7 @@ Exposed as `mcp__bash__run`. Poll the status of a task submitted with `run`. Returns: -- `status` — `pending` / `running` / `done` / `timed_out` / `interrupted` +- `status` — `pending` / `running` / `done` / `timed_out` / `interrupted` / `killed` - `exit_code` — set when done - run duration - last 4 KiB of stdout and stderr (full output in the `.out` / `.err` files)