← All skills
Tencent SkillHub · Developer Tools

VSCode

Avoid common VSCode mistakes — settings conflicts, debugger setup, and extension clashes.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Avoid common VSCode mistakes — settings conflicts, debugger setup, and extension clashes.

⬇ 0 downloads ★ 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.0

Documentation

ClawHub primary doc Primary doc: SKILL.md 8 sections Open source page

Settings Precedence

User → Workspace → Folder — later overrides earlier .vscode/settings.json per project — overrides user settings "editor.formatOnSave" in workspace overrides user — can be confusing Multi-root workspaces need per-folder settings — or root .code-workspace file Some settings only work in user — "terminal.integrated.shell" is user-only

Formatter Conflicts

Multiple formatters for same language — set "[language]": {"editor.defaultFormatter": "id"} Prettier vs ESLint both formatting — disable one: "prettier.enable": false in ESLint projects Format on save runs wrong formatter — explicit defaultFormatter required .editorconfig overrides some settings — can conflict with extension settings

Debugger Setup

launch.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 Node.js: "skipFiles" to avoid stepping into node_modules Compound configurations for multi-process — "compounds" array in launch.json

Extensions

Extension host crash — disable recently installed, enable one by one "Cannot find module" after install — restart VS Code completely Extension settings not applying — check if workspace setting overrides Conflicting extensions — keybinding conflicts, duplicate features

Terminal

Wrong shell on new terminal — set "terminal.integrated.defaultProfile.*" Environment variables missing — terminal inherits from launch method, not .bashrc Path not updated after install — restart VS Code, not just terminal Shell integration issues — "terminal.integrated.shellIntegration.enabled": false to disable

Remote Development

SSH: ~/.ssh/config Host must match — "remote.SSH.configFile" to use different config Containers: .devcontainer/devcontainer.json required — won't auto-detect Dockerfile WSL: extensions install separately — WSL extensions stay in WSL Port forwarding: auto but not always — check Ports panel

Workspace Trust

Restricted mode disables some features — debugging, tasks, some extensions Trust prompt on first open — "Trust Folder" to enable everything Per-folder trust in multi-root — can trust some folders, not others

Common Fixes

IntelliSense not working — check language server status in Output panel "Cannot find module" in TypeScript — restart TS server: Cmd+Shift+P → "TypeScript: Restart TS Server" Git not detecting changes — check if inside subfolder, .git must be at root or configured Settings not saving — check write permissions on settings.json

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc