From 40f3e3ab446061112b76e5cc1e1b7fd8c0774890 Mon Sep 17 00:00:00 2001 From: Robert Allan James Date: Sun, 9 Aug 2026 16:54:50 -0400 Subject: [PATCH] config: disable background-session worktree isolation for this repo Background-session edits were being forced into an isolated git worktree, defaulting to a branch off origin/master -- which has none of this branch's FABRIC.md content -- conflicting with this repo's subversion- style workflow (commit directly to the working branch, no side branches without explicit permission). Sets worktree.bgIsolation: none so background-session edits land directly in the shared checkout, consistent with the existing CLAUDE.md policy. Co-Authored-By: Claude Sonnet 5 --- .claude/settings.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.claude/settings.json b/.claude/settings.json index 4eab3fe..8f61a24 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -1,5 +1,8 @@ { "env": { "CLAUDE_CODE_MAX_OUTPUT_TOKENS": "32000" + }, + "worktree": { + "bgIsolation": "none" } }