Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/schemas/json/claude-code-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@
},
"effortLevel": {
"type": "string",
"enum": ["low", "medium", "high"],
"enum": ["low", "medium", "high", "xhigh"],
"description": "Control Opus 4.6 adaptive reasoning effort. Lower effort is faster and cheaper for straightforward tasks, higher effort provides deeper reasoning. Defaults vary by model and plan (Opus 4.6 defaults to medium for Max and Team subscribers). Use /effort auto to reset to model default. Also configurable via CLAUDE_CODE_EFFORT_LEVEL environment variable. See https://code.claude.com/docs/en/model-config#adjust-effort-level"
},
"fastMode": {
Expand Down Expand Up @@ -963,6 +963,14 @@
"installLocation": {
"type": "string",
"description": "Local cache path where marketplace manifest is stored (auto-generated if not provided)"
},
"autoUpdate": {
"type": "boolean",
"description": "Whether to automatically update this marketplace on Claude Code startup. Written automatically by Claude Code when you toggle auto-update for a marketplace"
},
"lastUpdated": {
"type": "string",
"description": "ISO 8601 timestamp of the last marketplace refresh. Written automatically by Claude Code"
}
},
"required": ["source"],
Expand Down
4 changes: 4 additions & 0 deletions src/test/claude-code-settings/effort-level-xhigh.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"effortLevel": "xhigh",
"model": "opus"
}
2 changes: 2 additions & 0 deletions src/test/claude-code-settings/marketplace-host-pattern.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
}
},
"internal-git": {
"autoUpdate": true,
"lastUpdated": "2026-04-20T10:00:00Z",
"source": {
"hostPattern": "git.internal.example.com",
"source": "hostPattern"
Expand Down