From 4c57e4d69ba191bc68245fee733a372ef4b03d4b Mon Sep 17 00:00:00 2001 From: gavrielc Date: Sat, 9 May 2026 20:44:50 +0300 Subject: [PATCH] docs: soften restart description wording --- src/cli/resources/groups.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli/resources/groups.ts b/src/cli/resources/groups.ts index 980f5ef..83344e0 100644 --- a/src/cli/resources/groups.ts +++ b/src/cli/resources/groups.ts @@ -66,7 +66,7 @@ registerResource({ '--rebuild rebuilds the container image first (required for package changes). ' + '--message sets an on-wake instruction for the fresh container to act on when it starts — ' + 'use this when you need to continue after the restart (e.g. verify a new tool works, notify the user). ' + - 'Without --message, the container is killed and only comes back on the next user message.', + 'Without --message, the container stops and only starts again on the next user message.', handler: async (args, ctx) => { const id = (args.id as string) || (ctx.caller === 'agent' ? ctx.agentGroupId : undefined); if (!id) throw new Error('--id is required');