CLI Tools Overview
AIRGAP Studio command-line tools usage
CLI & Command Palette
AIRGAP Studio is built on VSCodium, so it exposes two command interfaces:
- Command Palette (
Ctrl+Shift+P) — IDE-internal commands + AIRGAP-specific commands - OS shell commands — llama-server health checks, log inspection, etc.
Command Palette — AIRGAP-Specific Commands
| Command | ID | Purpose | Availability |
|---|---|---|---|
AIRGAP: Select LLM Model | airgap.selectLlamaModel | Pick one of 6 AI models | Always |
AIRGAP: Switch Assistant | airgap.switchAssistant | Toggle Assistant ↔ Lite Assistant | Always (VSCodium restart required) |
AIRGAP: Refresh Status | airgapMonitor.refreshStatus | Refresh Monitor state | airgap-monitor active |
AIRGAP: Clear History | airgapMonitor.clearHistory | Clear Monitor history | airgap-monitor active |
AIRGAP: Open UI Library | airgap.openLibrary | Search/insert UI Library | airgap-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.