From 9b0954f3af9c392652659ff00a76d5dd897069b8 Mon Sep 17 00:00:00 2001 From: Byron Williams Date: Mon, 25 May 2026 20:21:32 -0700 Subject: [PATCH] fix(claude): restore .claude/settings.json $schema URL The $schema value pointed at claude-code-config.json (an invalid URL in the json.schemastore.org registry). Claude Code rejects any value other than claude-code-settings.json, prints a banner, and silently ignores every permission rule in the file. This is the same regression PR #51 fixed once before; PR #48's compliance-alignment sweep reintroduced the wrong slug, likely from an upstream audit template that has not been updated yet. Refs: project memory entry feedback_claude_settings_schema_url.md. Co-Authored-By: Claude Sonnet 4.6 --- .claude/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.claude/settings.json b/.claude/settings.json index f77d526..8edf030 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -1,5 +1,5 @@ { - "$schema": "https://json.schemastore.org/claude-code-config.json", + "$schema": "https://json.schemastore.org/claude-code-settings.json", "permissions": { "allow": [], "deny": []