A VS Code/Cursor extension that lists all available commands and allows you to execute them via a quick picker.
- List all available VS Code commands (including internal ones)
- Single-select picker for quick command execution
- Keyboard shortcut support
- Alphabetically sorted command list
npm ci
npm run package:vsix
cursor --install-extension open-command-*.vsix- Download the latest
.vsixfile from Releases - Open VS Code/Cursor
- Go to Extensions
- Click "..." and select "Install from VSIX..."
- Select the downloaded file
- Command Palette: Open with
Cmd+Shift+P/Ctrl+Shift+Pand run "Run Commands..."
- Open the picker using the shortcut or command palette
- Type to filter commands
- Select a command and press Enter to execute
# Install dependencies
npm ci
# Compile
npm run compile
# Package extension
npm run package:vsix
# Install in Cursor for testing
cursor --install-extension open-command-*.vsixGitHub Actions builds the extension on every push, pull request, and manual run, then uploads the generated .vsix as a workflow artifact.
When the workflow runs for a Git tag, it also publishes the .vsix file to GitHub Releases as a release asset. Push a version tag such as v0.0.1 to create a release build.
MIT