vscode-feature-webview

Installation
SKILL.md

When to use this skill

Use this skill when the user needs a custom UI (forms, charts, complex layouts) that cannot be achieved with standard VS Code UI elements.

How to use this skill

  1. Register Command: First, create a command (using vscode-feature-command) that will open the webview.
  2. Implement Webview Logic: In the command callback, create the panel.

Code Template

import * as vscode from 'vscode';

export function activate(context: vscode.ExtensionContext) {
    let currentPanel: vscode.WebviewPanel | undefined = undefined;
Installs
5
First Seen
Jun 7, 2026
vscode-feature-webview — full-statck-skills/vscode-skills