{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/vscode",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=vscode",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/vscode",
    "agentPageUrl": "https://openagent3.xyz/skills/vscode/agent",
    "manifestUrl": "https://openagent3.xyz/skills/vscode/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/vscode/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Settings Precedence",
        "body": "User → Workspace → Folder — later overrides earlier\n.vscode/settings.json per project — overrides user settings\n\"editor.formatOnSave\" in workspace overrides user — can be confusing\nMulti-root workspaces need per-folder settings — or root .code-workspace file\nSome settings only work in user — \"terminal.integrated.shell\" is user-only"
      },
      {
        "title": "Formatter Conflicts",
        "body": "Multiple formatters for same language — set \"[language]\": {\"editor.defaultFormatter\": \"id\"}\nPrettier vs ESLint both formatting — disable one: \"prettier.enable\": false in ESLint projects\nFormat on save runs wrong formatter — explicit defaultFormatter required\n.editorconfig overrides some settings — can conflict with extension settings"
      },
      {
        "title": "Debugger Setup",
        "body": "launch.json needed for most debugging — can't just press F5\n\"cwd\" relative to workspace root — not launch.json location\n\"program\" path wrong — use ${workspaceFolder}/path/to/file\nNode.js: \"skipFiles\" to avoid stepping into node_modules\nCompound configurations for multi-process — \"compounds\" array in launch.json"
      },
      {
        "title": "Extensions",
        "body": "Extension host crash — disable recently installed, enable one by one\n\"Cannot find module\" after install — restart VS Code completely\nExtension settings not applying — check if workspace setting overrides\nConflicting extensions — keybinding conflicts, duplicate features"
      },
      {
        "title": "Terminal",
        "body": "Wrong shell on new terminal — set \"terminal.integrated.defaultProfile.*\"\nEnvironment variables missing — terminal inherits from launch method, not .bashrc\nPath not updated after install — restart VS Code, not just terminal\nShell integration issues — \"terminal.integrated.shellIntegration.enabled\": false to disable"
      },
      {
        "title": "Remote Development",
        "body": "SSH: ~/.ssh/config Host must match — \"remote.SSH.configFile\" to use different config\nContainers: .devcontainer/devcontainer.json required — won't auto-detect Dockerfile\nWSL: extensions install separately — WSL extensions stay in WSL\nPort forwarding: auto but not always — check Ports panel"
      },
      {
        "title": "Workspace Trust",
        "body": "Restricted mode disables some features — debugging, tasks, some extensions\nTrust prompt on first open — \"Trust Folder\" to enable everything\nPer-folder trust in multi-root — can trust some folders, not others"
      },
      {
        "title": "Common Fixes",
        "body": "IntelliSense not working — check language server status in Output panel\n\"Cannot find module\" in TypeScript — restart TS server: Cmd+Shift+P → \"TypeScript: Restart TS Server\"\nGit not detecting changes — check if inside subfolder, .git must be at root or configured\nSettings not saving — check write permissions on settings.json"
      }
    ],
    "body": "Settings Precedence\nUser → Workspace → Folder — later overrides earlier\n.vscode/settings.json per project — overrides user settings\n\"editor.formatOnSave\" in workspace overrides user — can be confusing\nMulti-root workspaces need per-folder settings — or root .code-workspace file\nSome settings only work in user — \"terminal.integrated.shell\" is user-only\nFormatter Conflicts\nMultiple formatters for same language — set \"[language]\": {\"editor.defaultFormatter\": \"id\"}\nPrettier vs ESLint both formatting — disable one: \"prettier.enable\": false in ESLint projects\nFormat on save runs wrong formatter — explicit defaultFormatter required\n.editorconfig overrides some settings — can conflict with extension settings\nDebugger Setup\nlaunch.json needed for most debugging — can't just press F5\n\"cwd\" relative to workspace root — not launch.json location\n\"program\" path wrong — use ${workspaceFolder}/path/to/file\nNode.js: \"skipFiles\" to avoid stepping into node_modules\nCompound configurations for multi-process — \"compounds\" array in launch.json\nExtensions\nExtension host crash — disable recently installed, enable one by one\n\"Cannot find module\" after install — restart VS Code completely\nExtension settings not applying — check if workspace setting overrides\nConflicting extensions — keybinding conflicts, duplicate features\nTerminal\nWrong shell on new terminal — set \"terminal.integrated.defaultProfile.*\"\nEnvironment variables missing — terminal inherits from launch method, not .bashrc\nPath not updated after install — restart VS Code, not just terminal\nShell integration issues — \"terminal.integrated.shellIntegration.enabled\": false to disable\nRemote Development\nSSH: ~/.ssh/config Host must match — \"remote.SSH.configFile\" to use different config\nContainers: .devcontainer/devcontainer.json required — won't auto-detect Dockerfile\nWSL: extensions install separately — WSL extensions stay in WSL\nPort forwarding: auto but not always — check Ports panel\nWorkspace Trust\nRestricted mode disables some features — debugging, tasks, some extensions\nTrust prompt on first open — \"Trust Folder\" to enable everything\nPer-folder trust in multi-root — can trust some folders, not others\nCommon Fixes\nIntelliSense not working — check language server status in Output panel\n\"Cannot find module\" in TypeScript — restart TS server: Cmd+Shift+P → \"TypeScript: Restart TS Server\"\nGit not detecting changes — check if inside subfolder, .git must be at root or configured\nSettings not saving — check write permissions on settings.json"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/vscode",
    "publisherUrl": "https://clawhub.ai/ivangdavila/vscode",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}