What problem does it solve? Editing Cursor/VSCode settings.json by hand risks breaking the editor with invalid JSON, losing existing preferences, or changing the wrong setting. This Skill guides safe, targeted modifications to user settings so only the requested values change. ## Core Features & Use Cases - Guided settings edits: Read the existing settings.json, apply only the requested change, and write back valid JSON with 2-space indentation. - Common request mapping: Translates natural requests like "bigger font" or "format on save" into exact keys such as editor.fontSize and editor.formatOnSave. - Cross-platform paths: Locates settings.json on macOS, Linux, and Windows, and distinguishes user settings from workspace settings. - Use Case: A user says "hide the minimap and enable word wrap" — the Skill reads the current file, adds editor.minimap.enabled: false and editor.wordWrap: "on", preserves all other settings, and notes whether a reload is needed. ## Quick Start Ask the assistant to change a Cursor editor preference, such as increasing the font size or enabling format on save, and it will update settings.json accordingly.