Skip to content

Quick Start

First Launch

  1. Open your project in VS Code or Cursor.

  2. Press Ctrl+M M — the extension auto-detects the project name and package manager from your workspace.

  3. Configure servers via the main menu → Manage Servers, or add them directly to .vscode/settings.json:

    "devManager.project.servers": [
    { "id": "web", "label": "Frontend", "command": "npm run dev", "path": "", "port": 3000 }
    ]
  4. Press Ctrl+M S to start all configured servers.

  5. Open the sidebar — click the SnakeFlow icon in the Activity Bar to see Quality Hub, GitHub Issues, Pull Requests, and Git Branches panels.

Where Settings Live

All SnakeFlow settings are standard VS Code settings under the devManager.* namespace.

Two ways to edit them:

  • Ctrl+, → search @ext:vaulttec-dev.snakeflow-dev-manager → use the graphical Settings UI
  • Edit .vscode/settings.json in your project directly (workspace-level settings are project-specific)

Keybindings

ShortcutAction
Ctrl+M MOpen main menu
Ctrl+M SStart all servers
Ctrl+M QStop all servers
Ctrl+M RRestart all servers
Ctrl+M FRun all Quality Hub checks
Ctrl+M NRun npm/package script
Ctrl+M ICreate GitHub Issue

Next Steps