From 075237304609c4106cd9e7d98192bef9420be6cf Mon Sep 17 00:00:00 2001 From: Claude Date: Thu, 19 Feb 2026 19:18:59 +0000 Subject: [PATCH] Allow Claude to read sibling seer and getsentry repos Adds `../seer` and `../getsentry` to `permissions.additionalDirectories` in `.claude/settings.json` so Claude Code can read from these sibling repos without extra permission prompts when working on cross-repo tasks. https://claude.ai/code/session_01VpAY5kJhAwzPhGRxi3mYRU --- .claude/settings.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.claude/settings.json b/.claude/settings.json index 197a24acd4f46b..7acd90e95ac5d3 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -87,7 +87,8 @@ "WebFetch(domain:modelcontextprotocol.io)", "WebFetch(domain:react.dev)" ], - "deny": [] + "deny": [], + "additionalDirectories": ["../seer", "../getsentry"] }, "enableAllProjectMcpServers": true, "includeCoAuthoredBy": false,