From ce4214ec94d86f6a677fb666cd7ef989adc8efea Mon Sep 17 00:00:00 2001 From: Abdelmajid NIDNASSER Date: Sun, 12 Apr 2026 20:48:48 +0100 Subject: [PATCH] Normalize claw workspace paths for Windows --- hermes_cli/claw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hermes_cli/claw.py b/hermes_cli/claw.py index e62efe47e..aa0c28828 100644 --- a/hermes_cli/claw.py +++ b/hermes_cli/claw.py @@ -249,7 +249,7 @@ def _scan_workspace_state(source_dir: Path) -> list[tuple[Path, str]]: state_path = child / state_name if state_path.exists(): kind = "directory" if state_path.is_dir() else "file" - rel = state_path.relative_to(source_dir) + rel = state_path.relative_to(source_dir).as_posix() findings.append((state_path, f"Workspace {kind}: {rel}")) return findings