From e4889fdd2c76771ae878161dcddcb4ed94dbdac2 Mon Sep 17 00:00:00 2001 From: atlas Date: Thu, 2 Jul 2026 22:03:20 +0200 Subject: [PATCH] fix(#2149): use - as session prefix separator (mara) --- nix/templates/harness-base.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/templates/harness-base.nix b/nix/templates/harness-base.nix index d7d64330..39ac5684 100644 --- a/nix/templates/harness-base.nix +++ b/nix/templates/harness-base.nix @@ -60,8 +60,8 @@ let CLAUDE_CODE_RESUME_INTERRUPTED_TURN = "1"; # Use the simpler system prompt variant suited to headless operation. CLAUDE_CODE_SIMPLE_SYSTEM_PROMPT = "1"; - # Tag remote-control sessions with "/" for identification. - CLAUDE_REMOTE_CONTROL_SESSION_NAME_PREFIX = "${hiveDisplayName}/${userName}"; + # Tag remote-control sessions with "-" for identification. + CLAUDE_REMOTE_CONTROL_SESSION_NAME_PREFIX = "${hiveDisplayName}-${userName}"; }; otelSettingsEnv = { CLAUDE_CODE_ENABLE_TELEMETRY = "1";