Configuration
Settings Overview
Open Settings via:
- macOS:
Cmd + ,or Atlas Studio menu → Preferences - Windows/Linux:
Ctrl + ,or File → Settings
Settings are stored locally at:
- macOS:
~/Library/Application Support/Atlas Studio/preferences.json - Windows:
%APPDATA%\Atlas Studio\preferences.json - Linux:
~/.config/Atlas Studio/preferences.json
AI Model Configuration
Atlas Studio supports multiple AI providers and model tiers.
Model Tiers
| Tier | Use Case | Credits/Request | Latency |
|---|---|---|---|
| Fast | Scripts, lookups, ticket triage | 1× | < 2s |
| Balanced | Runbooks, workflows, code review | 2× | < 8s |
| Deep Reasoning | RCA, architecture review, multi-step debug | 3× | < 30s |
Set the default in: Settings → AI → Default Model Tier.
You can override the tier per-agent or per-prompt.
BYOM (Bring Your Own Model)
The Coding Agent is free with BYOM — use your own API key:
OpenAI
// Settings → AI → BYOM
{
"provider": "openai",
"apiKey": "sk-...",
"model": "gpt-4o",
"baseUrl": "https://api.openai.com/v1"
}API keys are stored encrypted in the OS keychain (Keychain on macOS, Credential Manager on Windows, Secret Service on Linux). They are never stored in plain text or sent to Atlas servers.
Data Directory
By default, Atlas Studio stores its SQLite database and local data in:
| Platform | Path |
|---|---|
| macOS | ~/Library/Application Support/Atlas Studio/data/ |
| Windows | %APPDATA%\Atlas Studio\data\ |
| Linux | ~/.local/share/Atlas Studio/data/ |
Custom data directory
Set ATLAS_DATA_DIR environment variable before launching:
# macOS / Linux
ATLAS_DATA_DIR=/mnt/shared/atlas-studio /Applications/AtlasStudio.app/Contents/MacOS/AtlasStudio
# Windows (PowerShell)
$env:ATLAS_DATA_DIR="D:\SharedAtlasData"
& "C:\Program Files\Atlas Studio\AtlasStudio.exe"This is useful for:
- Pointing multiple IDE instances at a shared dataset
- Storing data on a faster NVMe drive
- Enterprise-managed profile paths
Web Portal Connection
The Desktop IDE can connect to your Web Portal to sync workflows, credentials, and team settings.
Settings → Web Portal → Portal URL → https://studio.atlastechlab.com
Once linked:
- Workflows created locally sync to the Web Portal
- Vault credentials are available in both
- Team members can see workflow status from the portal
Telemetry and Privacy
Atlas Studio collects anonymous usage telemetry (crash reports, feature usage counters) by default.
To disable:
- Settings → Privacy → Telemetry → Off
- Or set
ATLAS_TELEMETRY_DISABLED=1environment variable
No source code, workflow definitions, credentials, or personally identifiable data is ever sent.
Environment Variables Reference
| Variable | Description | Default |
|---|---|---|
ATLAS_DATA_DIR | Local data storage path | OS-specific default |
ATLAS_TELEMETRY_DISABLED | Disable telemetry (set to 1) | 0 |
ATLAS_LOG_LEVEL | Log verbosity: error, warn, info, debug | info |
ATLAS_CP_URL | Override Control Plane URL | https://atlasaiop.com |
ATLAS_PORTAL_URL | Override Web Portal URL | https://studio.atlastechlab.com |
HTTPS_PROXY | HTTP/HTTPS proxy | — |
NO_PROXY | Proxy bypass list | localhost,127.0.0.1 |
Keyboard Shortcuts
| Action | macOS | Windows/Linux |
|---|---|---|
| Open Settings | Cmd+, | Ctrl+, |
| New Workflow | Cmd+N | Ctrl+N |
| Run Active Agent | Cmd+Enter | Ctrl+Enter |
| Stop Agent | Cmd+. | Ctrl+. |
| Search | Cmd+K | Ctrl+K |
| Command Palette | Cmd+Shift+P | Ctrl+Shift+P |
| Toggle Sidebar | Cmd+B | Ctrl+B |
| Switch to RCA Agent | Cmd+1 | Ctrl+1 |
| Switch to Runbook Agent | Cmd+2 | Ctrl+2 |
| Switch to Workflow Agent | Cmd+3 | Ctrl+3 |
| Switch to Coding Agent | Cmd+4 | Ctrl+4 |
| Switch to Dashboard Builder | Cmd+5 | Ctrl+5 |
| Switch to Report Generator | Cmd+6 | Ctrl+6 |
| Switch to Data Analyzer | Cmd+7 | Ctrl+7 |