From a034a7836675549f743e2d5e18fa8d07195596c1 Mon Sep 17 00:00:00 2001 From: ciregenz Date: Thu, 13 Aug 2026 00:51:27 -0700 Subject: [PATCH] arena: toolchain moved out of /tmp -- the OS reaper was eating the venv file by file macOS silently deletes /tmp files by age: pyvenv.cfg vanished mid-sweep and 84 spawns died import-less while site-packages survived -- the exact silent-error class the goal names. Venv, serving trees and compwob discovery now live in ~/.cache/arena (durable); servers rebound; registration re-verified (101). Episode data was never at risk: the book lives in the repo. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_01WsbS5x2rYsMDxP2kW3qqmQ --- e2e/browser-v3/arena/compwob.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/e2e/browser-v3/arena/compwob.py b/e2e/browser-v3/arena/compwob.py index be6cc2dd..0331fa33 100644 --- a/e2e/browser-v3/arena/compwob.py +++ b/e2e/browser-v3/arena/compwob.py @@ -17,10 +17,7 @@ from browsergym.core.registration import register_task from browsergym.miniwob.base import AbstractMiniwobTask COMPWOB_DIR = Path(os.environ.get( - "COMPWOB_HTML_DIR", - Path(os.environ.get("MINIWOB_SCRATCH", - "/private/tmp/claude-501/-Users-eric/33681c21-c82a-490e-a036-c4c0ec1414bd/scratchpad")) - / "miniwob-plusplus" / "miniwob" / "html" / "compwob")) + "COMPWOB_HTML_DIR", Path.home() / ".cache" / "arena" / "miniwob-legacy" / "html" / "compwob")) def compwob_page_names() -> list[str]: