AIRGAP StudioAIRGAP Studio

CLI Tools Overview

AIRGAP Studio command-line tools usage

CLI & Command Palette

AIRGAP Studio is built on VSCodium, so it exposes two command interfaces:

  1. Command Palette (Ctrl+Shift+P) — IDE-internal commands + AIRGAP-specific commands
  2. OS shell commands — llama-server health checks, log inspection, etc.

Command Palette — AIRGAP-Specific Commands

CommandIDPurposeAvailability
AIRGAP: Select LLM Modelairgap.selectLlamaModelPick one of 6 AI modelsAlways
AIRGAP: Switch Assistantairgap.switchAssistantToggle Assistant ↔ Lite AssistantAlways (VSCodium restart required)
AIRGAP: Refresh StatusairgapMonitor.refreshStatusRefresh Monitor stateairgap-monitor active
AIRGAP: Clear HistoryairgapMonitor.clearHistoryClear Monitor historyairgap-monitor active
AIRGAP: Open UI Libraryairgap.openLibrarySearch/insert UI Libraryairgap-ui-library active

Additional commands appear depending on the active assistant:

  • Lite Assistant active: Continue: ... commands (60+)
  • Assistant (Cline) active: Cline: ... commands (70+)

OS Shell Commands — AI Engine Diagnostics

llama-server health check

Invoke-WebRequest http://127.0.0.1:11434/health -UseBasicParsing

Expected: HTTP 200

Compatibility Proxy health check

Invoke-WebRequest http://127.0.0.1:11433/health -UseBasicParsing

Port usage check

Get-NetTCPConnection -LocalPort 11434
Get-NetTCPConnection -LocalPort 11433

Launcher log

Get-Content $env:LOCALAPPDATA\AIRGAP\logs\launcher.log -Tail 50

Ollama Commands Are No Longer Used

Commands from older versions (v1.0.x) such as ollama list, ollama ps, ollama run, and ollama serve are no longer used starting with AIRGAP Studio v1.1.0. The AI engine was replaced from Ollama to llama-server (Vulkan).

For equivalent information, use the http://127.0.0.1:11434/health health check above or the Monitor panel.

See Also