skills/tune-settings/SKILL.md
This skill should be used when the user says "optimize settings.json", "tune settings for low tokens", "settings.json for performance", "disable auto memory", "configure for token savings", "minimal context window settings", or "settings taking too many tokens".
npx skillsauth add kyuna0312/kyuna_token_saver Tune SettingsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Read and optimize settings.json (or settings.local.json) for minimal token usage. Show diff before writing.
Check in order:
./.claude/settings.json (project)./.claude/settings.local.json (project local)~/.claude/settings.json (global)~/.claude/settings.local.json (global local)Read all found files.
Identify token-costly settings:
| Setting | Cost | Recommendation |
|---------|------|----------------|
| autoLoadMemory: true | High | Set to false |
| autoLoadSkills: true | Very High | Set to false |
| Verbose logging enabled | Medium | Disable |
| Large contextWindow | High | Reduce to needed size |
| Hook scripts that read files | Medium | Audit hooks |
| Multiple MCP servers active | Medium | Disable unused |
Recommended low-token settings.json:
{
"autoLoadMemory": false,
"autoLoadSkills": false,
"compactOnContextFull": true,
"verboseOutput": false,
"plugins": {
"autoEnable": false
}
}
Key settings explained:
autoLoadMemory: false — Prevents .remember/ files from loading every sessionautoLoadSkills: false — Skills load only when explicitly triggeredcompactOnContextFull: true — Auto-compact instead of erroring at context limitplugins.autoEnable: false — Plugins require explicit activationDisplay before/after diff:
- "autoLoadMemory": true,
+ "autoLoadMemory": false,
- "autoLoadSkills": true,
+ "autoLoadSkills": false,
+ "compactOnContextFull": true,
Ask user to confirm scope: project settings or global settings.
On confirmation, write the updated settings file.
Warning: Changing global settings affects all Claude Code sessions.
Emit structured output as LTX rows when reporting settings analysis results.
@v1:setting|current|recommended|action
| Field | Description |
|-------|-------------|
| setting | Settings key (e.g. autoLoadMemory) |
| current | Current value or missing if not set |
| recommended | Recommended value for token savings |
| action | change, keep, add |
Example:
@v1:setting|current|recommended|action
autoLoadMemory|true|false|change
autoLoadSkills|true|false|change
compactOnContextFull|missing|true|add
verboseOutput|false|false|keep
references/settings-reference.md — Full settings.json reference with token impact ratingstools
This skill should be used when the user asks to "show recent changes", "show forge changelog", "show changelog for <project>", "what did I add this week", "what files did I touch today", "what packages keep recurring", "what drifts from the template", "review template suggestions", "show pending forge suggestions", "sync forge templates", "apply template suggestion", or "compute back-mapping suggestions". Provides read, drift-discovery, and template back-mapping workflows that wrap the `forge-db` MCP tools (`get_changelog`, `compute_suggestions`, `apply_suggestion`).
development
This skill should be used when the user says "build a wiki", "maintain a wiki", "ingest docs into wiki", "query my wiki", "set up llm wiki", "wiki-based knowledge base", "stop re-reading docs every session", "persistent knowledge base", or "compress my docs into wiki pages".
testing
Use this skill when the user says "/task_brain", "break down this task", "plan this", "decompose this problem", or when a task has multiple moving parts, unclear dependencies, or high ambiguity.
tools
This skill should be used when the user asks to "add token counter to status line", "show context usage in status bar", "visualize token usage", "set up token status line", "live token counter", "show context window percentage", or wants to see token burn in the terminal status bar.