From 6571af3bfccdad10142f10710e62e8c1eba186c8 Mon Sep 17 00:00:00 2001 From: Anthony Ettinger Date: Thu, 30 Jul 2026 13:40:26 +0000 Subject: [PATCH] chore: untrack Claude Code local-only files .claude/settings.local.json contains machine-specific permission allowlists and is not intended to be shared. Committed worktree gitlinks under .claude/worktrees/ are transient session state. These files remain on disk; this only removes them from version control. Shared Claude config (settings.json, commands/, skills/, agents/, CLAUDE.md) is deliberately left tracked. Co-Authored-By: Claude Opus 5 (1M context) --- apps/web/public/.claude/settings.local.json | 24 --------------------- 1 file changed, 24 deletions(-) delete mode 100644 apps/web/public/.claude/settings.local.json diff --git a/apps/web/public/.claude/settings.local.json b/apps/web/public/.claude/settings.local.json deleted file mode 100644 index e72a88b..0000000 --- a/apps/web/public/.claude/settings.local.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "permissions": { - "allow": [ - "Bash(fav --help)", - "Bash(mkdir -p /home/ettinger/src/b1dz.com/apps/extension/icons)", - "Bash(cp /home/ettinger/src/b1dz.com/apps/web/public/favicon.svg /home/ettinger/src/b1dz.com/apps/extension/favicon.svg)", - "Bash(cp /home/ettinger/src/b1dz.com/apps/web/public/logo.svg /home/ettinger/src/b1dz.com/apps/extension/logo.svg)", - "Bash(magick -background none /home/ettinger/src/b1dz.com/apps/extension/favicon.svg -resize 16x16 /home/ettinger/src/b1dz.com/apps/extension/icons/icon-16.png)", - "Bash(magick -background none /home/ettinger/src/b1dz.com/apps/extension/favicon.svg -resize 48x48 /home/ettinger/src/b1dz.com/apps/extension/icons/icon-48.png)", - "Bash(file /home/ettinger/src/b1dz.com/apps/extension/icons/*.png)", - "Bash(magick -background none ../favicon.svg -resize 48x48 icon-48.png)", - "Bash(magick -background none ../favicon.svg -resize 128x128 icon-128.png)", - "Bash(cp favicon-16.png icon-16.png)", - "Bash(rm -rf /home/ettinger/src/b1dz.com/apps/extension/icons /home/ettinger/src/b1dz.com/apps/extension/favicon.svg /home/ettinger/src/b1dz.com/apps/extension/logo.svg)", - "Bash(ln -s ../web/public/icons icons)", - "Bash(ln -s ../web/public/favicon.svg favicon.svg)", - "Bash(ln -s ../web/public/logo.svg logo.svg)", - "Bash(rm icons:*)", - "Bash(cp -r ../web/public/icons icons)", - "Bash(cp ../web/public/favicon.svg favicon.svg)", - "Bash(cp ../web/public/logo.svg logo.svg)" - ] - } -}