From 3830b13b03b7aa8b7bc112cd7fd8022f3afeaf3e Mon Sep 17 00:00:00 2001 From: damocles Date: Wed, 3 Jun 2026 22:44:47 +0200 Subject: [PATCH] fix(#1178): add list_containers to ToolGroup::Lifecycle tools slice --- hive-sh4re/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hive-sh4re/src/lib.rs b/hive-sh4re/src/lib.rs index 66ce9d3b..efde5093 100644 --- a/hive-sh4re/src/lib.rs +++ b/hive-sh4re/src/lib.rs @@ -848,7 +848,7 @@ impl ToolGroup { "remind", "request_next_turn", ], - Self::Lifecycle => &["kill", "start", "restart", "update"], + Self::Lifecycle => &["kill", "start", "restart", "update", "list_containers"], Self::Approvals => &[ "request_init_config", "request_apply_commit", @@ -937,7 +937,7 @@ impl ToolGroup { Self::Inbox => { "get_loose_ends, cancel_loose_end, remind, request_next_turn — self-scheduling" } - Self::Lifecycle => "kill, start, restart, update — container lifecycle (privileged)", + Self::Lifecycle => "kill, start, restart, update, list_containers — container lifecycle (privileged)", Self::Approvals => { "request_init_config, request_apply_commit, request_update_meta_inputs — config change flow (privileged)" }