Install
openclaw skills install vscodeAvoid common VSCode mistakes — settings conflicts, debugger setup, and extension clashes.
openclaw skills install vscode.vscode/settings.json per project — overrides user settings"editor.formatOnSave" in workspace overrides user — can be confusing.code-workspace file"terminal.integrated.shell" is user-only"[language]": {"editor.defaultFormatter": "id"}"prettier.enable": false in ESLint projectsdefaultFormatter required.editorconfig overrides some settings — can conflict with extension settingslaunch.json needed for most debugging — can't just press F5"cwd" relative to workspace root — not launch.json location"program" path wrong — use ${workspaceFolder}/path/to/file"skipFiles" to avoid stepping into node_modules"compounds" array in launch.json"terminal.integrated.defaultProfile.*""terminal.integrated.shellIntegration.enabled": false to disable~/.ssh/config Host must match — "remote.SSH.configFile" to use different config.devcontainer/devcontainer.json required — won't auto-detect Dockerfile.git must be at root or configured