Docs
Installation
Install and configure the Quadrastack VS Code extension
Installation
Get the Quadrastack VS Code extension up and running.
Install the Extension
From VS Code Marketplace
Or install directly in VS Code:
- Open VS Code
- Press
Ctrl+Shift+X(Windows/Linux) orCmd+Shift+X(macOS) to open Extensions - Search for Quadrastack
- Click Install
From Command Line
code --install-extension quadrastack.quadrastack-vscode
Prerequisites
The extension requires the Quadrastack CLI to run tests and mock servers. See the CLI Installation Guide if you haven't installed it yet.
Configuration
Set Playbook Directory
Right-click on a folder in VS Code Explorer and select Set as Playbook Directory.
Configure CLI Path
If the CLI is not in your system PATH, add it to .vscode/settings.json:
{
"quadrastack.playbookRoot": "./playbooks",
"quadrastack.cliPath": "/usr/local/bin/quadrastack"
}
Settings Reference
| Setting | Description | Default |
|---|---|---|
quadrastack.playbookRoot | Path to playbook directory | Workspace root |
quadrastack.cliPath | Path to CLI executable | quadrastack |
Verify Setup
- Open Extensions panel and verify "Quadrastack" is installed and enabled
- Create a test YAML file and click the Run button above a request
- You should see the response in a panel on the right
Troubleshooting
Extension Not Working
- Verify the extension is enabled in the Extensions panel
- Reload VS Code:
Ctrl+Shift+P→ "Reload Window"
CLI Not Found
- Check CLI is installed:
quadrastack --version - If installed in a custom location, set
quadrastack.cliPathin settings - See CLI Installation for setup instructions
Playbook Directory Issues
- Right-click your playbook folder → Set as Playbook Directory
- Or set
quadrastack.playbookRootin.vscode/settings.json
Next Steps
- Features - Learn what the extension can do
- Playbook Guide - Write your first playbook