diff options
| author | Craig Jennings <c@cjennings.net> | 2026-05-06 21:59:52 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-05-06 21:59:52 -0500 |
| commit | 201377f57430ef28d02e703a2191434bbee55c75 (patch) | |
| tree | 8293f6966fbba681b991580924a9327aadc386e3 | |
| parent | 5710b7865549b923467f5e4b1056e040273fc6aa (diff) | |
| download | rulesets-201377f57430ef28d02e703a2191434bbee55c75.tar.gz rulesets-201377f57430ef28d02e703a2191434bbee55c75.zip | |
chore(claude): bump skillListingBudgetFraction to 5%
Default 1% of context maps to ~8K chars (the floor). The current skill listing totals ~10K chars and overflows on small-context models, triggering the truncation warning. Bumping to 5% leaves headroom even with the model-invocable skills' full descriptions present, and the file-based skill descriptions are now <=1000 chars each.
| -rw-r--r-- | .claude/settings.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.claude/settings.json b/.claude/settings.json index 87ea714..8c4404a 100644 --- a/.claude/settings.json +++ b/.claude/settings.json @@ -24,9 +24,10 @@ "gopls-lsp@claude-plugins-official": true }, "effortLevel": "high", + "skillListingBudgetFraction": 0.05, "promptSuggestionEnabled": false, - "skipDangerousModePermissionPrompt": true, - "editorMode": "emacs", "prefersReducedMotion": true, + "skipDangerousModePermissionPrompt": true, + "theme": "dark", "agentPushNotifEnabled": true } |
