Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>VS Command PickerNew to Visual Studio Code? Get it now.
VS Command Picker

VS Command Picker

String

|
5 installs
| (1) | Free
Friendly script organizer from package.json or custom commands.json
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

VS Command Picker

Easily find, search, organize and execute commands, both from package.json or from commands.json (custom file)

Too many scripts in your repo/monorepo? Tell me about it! Too many custom scripts that you cannot longer reach with the upwards key? Forget about it!

Features

  • Specify your package.json and get all the commands from there
  • Define custom commands in a JSON file
  • Quick access via status bar button
  • Color-coded command buttons
  • Execute commands in the active terminal
  • Search commands
  • pin/unpin frequently used commands on top

Screenshot

Usage

  1. Click the status bar button "Commands" (bottom right):
  2. Optionally, specify the path to your package json (usually "../package.json"):
  3. Optionally, define custom commands in the following format:
  4. Select a command to execute it in the active terminal

Basic Format (Array)

[
  {
    "command": "npm run dev",
    "name": "Start Dev Server",
    "descripcion": "Start the development server",
    "color": "green"
  },
  {
    "command": "npm run build",
    "name": "Build Project",
    "descripcion": "Build the project for production",
    "color": "blue"
  },
]

Advanced Format (Object with package.json support)

{
  "commands": [
    {
      "command": "npm run dev",
      "name": "Start Dev Server",
      "descripcion": "Start the development server",
      "color": "green",
	 "pinned": true
    },
    {
      "command": "npm run build",
      "name": "Build Project",
      "descripcion": "Build the project for production",
      "color": "blue"
    }
  ],
  "packageJsonPath": "../package.json"
}

The packageJsonPath field is optional. If specified, it should be a relative path from .vscode/commands.json to your package.json file. All scripts from that package.json will be automatically included as commands.

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft