diff --git a/src/schemas/json/claude-code-settings.json b/src/schemas/json/claude-code-settings.json index c1a230a2bf4..3519512c519 100644 --- a/src/schemas/json/claude-code-settings.json +++ b/src/schemas/json/claude-code-settings.json @@ -1058,6 +1058,10 @@ "pr": { "type": "string", "description": "Attribution for pull request descriptions. Empty string hides pull request attribution" + }, + "sessionUrl": { + "type": "boolean", + "description": "Whether to append the claude.ai session link to commits and pull requests in web and Remote Control sessions. Set to false to omit it (default: true)." } } }, diff --git a/src/test/claude-code-settings/modern-complete-config.json b/src/test/claude-code-settings/modern-complete-config.json index 73c63c28b2e..500da573159 100644 --- a/src/test/claude-code-settings/modern-complete-config.json +++ b/src/test/claude-code-settings/modern-complete-config.json @@ -9,7 +9,8 @@ "apiKeyHelper": "/usr/local/bin/claude-auth-helper", "attribution": { "commit": "Generated with AI\n\nCo-Authored-By: AI ", - "pr": "" + "pr": "", + "sessionUrl": false }, "autoMemoryDirectory": "~/.claude/custom-memory", "autoMemoryEnabled": false,