# Send VSCode to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
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

```text
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.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "vscode",
    "name": "VSCode",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/ivangdavila/vscode",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/vscode",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/vscode",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vscode",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "vscode",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T13:21:53.865Z",
      "expiresAt": "2026-05-17T13:21:53.865Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vscode",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vscode",
        "contentDisposition": "attachment; filename=\"vscode-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "vscode"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/vscode"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/vscode",
    "downloadUrl": "https://openagent3.xyz/downloads/vscode",
    "agentUrl": "https://openagent3.xyz/skills/vscode/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vscode/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vscode/agent.md"
  }
}
```
## Documentation

### 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
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: ivangdavila
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-10T13:21:53.865Z
- Expires at: 2026-05-17T13:21:53.865Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/vscode)
- [Send to Agent page](https://openagent3.xyz/skills/vscode/agent)
- [JSON manifest](https://openagent3.xyz/skills/vscode/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/vscode/agent.md)
- [Download page](https://openagent3.xyz/downloads/vscode)