From 8c03348245daeb8dc02bdafb6a9eee30619ba1ba Mon Sep 17 00:00:00 2001 From: claude Date: Sun, 12 Jul 2026 13:30:40 +0200 Subject: [PATCH] chore: disable background-session worktree isolation Background sessions are harness-guarded to edit only inside a git worktree, but this repository forbids worktree development outright (CLAUDE.md: install.sh symlinks resolve to the primary clone, so worktree edits are silently ineffective). Align the guard with the repo rule via worktree.bgIsolation none. --- .claude/settings.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json new file mode 100644 index 0000000..1f73a2b --- /dev/null +++ b/.claude/settings.json @@ -0,0 +1,5 @@ +{ + "worktree": { + "bgIsolation": "none" + } +}