LaunchKit · 2026
Back to Skills

vscode-node

Operate on code through a VS Code/Cursor IDE connected as an OpenClaw Node.

0
593 downloads
by @xiaoyaner0201

Setup & Installation

openclaw skills install @xiaoyaner0201/vscode-node

Or with the ClawHub CLI, for registry-managed skill folders outside a full OpenClaw workspace:

npx clawhub install vscode-node

Version History

v1.0.2Feb 26, 2026 - Version note by skill developer:

Fix ClawHub URLs to correct /{owner}/{slug} format

What This Skill Does

Controls a VS Code or Cursor IDE remotely through the OpenClaw Node protocol. Provides 40+ commands for file read/write, language server queries (definitions, references, hover), git operations, test execution, debugging, and Cursor Agent delegation. Requires the openclaw-node-vscode extension to be installed and connected.

Language server commands like definitions, references, and hover give access to IDE-level code intelligence that plain file reads cannot provide.

When to use it

  • Editing source files in a connected VS Code workspace from an AI agent
  • Looking up all references to a function or variable across a codebase
  • Running a test suite and retrieving pass/fail results programmatically
  • Staging and committing changes via git without leaving the agent workflow
  • Delegating a multi-file refactor to Cursor Agent and capturing the output

Example Workflow

Here's how your AI assistant might use this skill in practice.

INPUT

User asks: Stage the modified files in src/ and commit with the message 'fix: resolve type error'

AGENT
  1. 1Call vscode.git.status to identify which files in src/ are modified
  2. 2Call vscode.git.stage with the relevant paths from the modified list
  3. 3Call vscode.git.commit with the provided commit message
  4. 4Return the commit result including branch name and status
OUTPUT

Commit created on current branch with staged src/ changes

Requirements

Accounts, API keys, or tools you or your AI assistant may need to set up while using this skill.

OpenClaw Node for VS Code extension (openclaw-node-vscode) installed from the VS Code MarketplaceVS Code or Cursor IDE with the extension connected and showing green status in the status bar