From 73a8889c3e2a434fdc97df0c796d4874df46f789 Mon Sep 17 00:00:00 2001 From: gastown/crew/george Date: Fri, 9 Jan 2026 13:29:07 -0800 Subject: [PATCH] fix: remove settings.json that was incorrectly force-added This file was added with -f despite .claude/ being in .gitignore. When the repo is used as a crew workspace, this file shadows the proper crew-level settings at crew/.claude/settings.json. Removing it allows Claude Code to find the correct settings by walking up the directory tree. Co-Authored-By: Claude Opus 4.5 --- .claude/settings.json | 51 ------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 .claude/settings.json diff --git a/.claude/settings.json b/.claude/settings.json deleted file mode 100644 index 21668ce7..00000000 --- a/.claude/settings.json +++ /dev/null @@ -1,51 +0,0 @@ -{ - "enabledPlugins": { - "beads@beads-marketplace": false - }, - "hooks": { - "SessionStart": [ - { - "matcher": "", - "hooks": [ - { - "type": "command", - "command": "bash ~/.claude/hooks/session-start.sh && gt nudge deacon session-started" - } - ] - } - ], - "PreCompact": [ - { - "matcher": "", - "hooks": [ - { - "type": "command", - "command": "bash ~/.claude/hooks/session-start.sh" - } - ] - } - ], - "UserPromptSubmit": [ - { - "matcher": "", - "hooks": [ - { - "type": "command", - "command": "gt mail check --inject" - } - ] - } - ], - "Stop": [ - { - "matcher": "", - "hooks": [ - { - "type": "command", - "command": "gt costs record" - } - ] - } - ] - } -}