What problem does it solve? Changing editor preferences in Cursor or VSCode requires manually locating and editing the settings.json file, which risks breaking JSON syntax or overwriting existing configuration. This Skill guides safe, targeted edits to user settings while preserving everything else. ## Core Features & Use Cases - Guided settings.json editing: Reads the existing settings file, applies only the requested change, and writes back valid JSON with proper formatting. - Common setting mappings: Translates natural requests like "bigger font" or "format on save" into concrete keys such as editor.fontSize and editor.formatOnSave. - Cross-platform paths: Covers settings file locations 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 settings.json, adds editor.minimap.enabled: false and editor.wordWrap: "on", preserves all other settings, and confirms whether a reload is needed. ## Quick Start Ask the assistant to change an editor preference, for example: "Update my Cursor settings to enable format on save and set the font size to 16."