Use Ctrl+G Ctrl+L, /logs, or the Show Logs button in the navigator footer. CodeAlta also writes rolling diagnostic logs under:
~/.alta/logs/
Logs are the first place to check for provider startup, credential, plugin build, and runtime errors.
CodeAlta's terminal UI uses Nerd Fonts icons for tree expanders, status indicators, and other compact symbols. If these appear as empty boxes, question marks, unrelated icons, or misaligned glyphs, the terminal is usually not using a current Nerd Font-compatible font.
Check the font setup in this order:
alta; changing an editor font does not affect CodeAlta. For example, CaskaydiaCove Nerd Font is expected to work when the installed font files are current.alta again. On Linux, refresh the font cache if needed with fc-cache -f -v.Platform-specific places to check for stale font copies include Windows Settings > Personalization > Fonts, %LOCALAPPDATA%\Microsoft\Windows\Fonts, C:\Windows\Fonts, macOS Font Book, and Linux user font directories such as ~/.local/share/fonts or ~/.fonts.
If only some icons are wrong after updating, verify that the active terminal profile is not falling back to a different font family.
Windows Terminal can reserve shortcuts for its own paste, pane, and navigation actions before CodeAlta can receive them. CodeAlta uses Ctrl+Alt+Left and Ctrl+Alt+Right for tab switching so Windows Terminal's default Alt+Left and Alt+Right pane switching can remain enabled. If Ctrl+V or another CodeAlta shortcut does not behave as expected, review your Windows Terminal settings and unbind only the terminal-level shortcuts that CodeAlta needs to receive directly.
Add entries like this to the keybindings array in Windows Terminal's settings.json when a key is currently assigned to a terminal action:
{ "keys": "ctrl+v", "id": "unbound" }
A small known issue can affect Windows Terminal after CodeAlta has been running in the same tab for many hours, such as a full day. The UI may begin to feel sluggish. Restarting alta in the same Windows Terminal tab may not restore normal responsiveness, but opening a new tab or window and launching alta there usually does.
This appears to be related to how Windows Terminal handles long-running, high-refresh terminal rendering. CodeAlta uses XenoAtom.Terminal.UI for an interactive interface that can render at up to 60 FPS. If you notice slowdown after a long session, move to a fresh Windows Terminal tab or window.
config.tomlCodeAlta validates ~/.alta/config.toml before creating providers or sessions. If the file is invalid at startup, CodeAlta opens a TOML recovery editor with syntax highlighting, an error marker, live parse feedback, Ctrl+S Save and Continue when valid, and Ctrl+Q Exit.
Fix configuration parse errors before starting agent work. Provider creation, project overrides, and plugin configuration depend on a valid TOML file.
Common fixes:
enabled = true or enabled = false booleans, not quoted strings;[providers.<provider-key>];[chat] default_provider = "<provider-key>" only for an enabled provider.If no provider is enabled, CodeAlta opens the Model Providers dialog automatically. Configure credentials, click Test Provider, then Save. A successful test enables the provider automatically; Codex/Copilot browser or device login also enables its provider automatically.
For API-key providers, verify that the environment variable exists in the shell that launches alta.
The Model Providers dialog keeps Browser Login and Device Login instructions visible while authorization is pending. The current operation can be canceled from the dialog or with Ctrl+G Ctrl+C. Use Ctrl+G Ctrl+U / Ctrl+G Ctrl+D to copy the current login URL or device code.
Broken plugins can fail during discovery, build, load, activation, or callbacks. Use safe mode or --no-plugins first if CodeAlta cannot start normally.
Start CodeAlta without dynamic plugins:
alta --no-plugins
Or with plugin safe mode:
alta --plugin-safe-mode
You can also set:
CODEALTA_DISABLE_PLUGINS=1
Then open plugin management, disable the failing plugin, or inspect ~/.alta/logs/codealta.log for build/load diagnostics.
plugin.cs was treated as a project fileSource plugins require a .NET SDK that supports native file-based C# builds. Restore CodeAlta-generated plugin-root files if they were deleted, install the supported SDK, or start with --plugin-safe-mode / --no-plugins and fix the plugin package.
Only one alta application instance can run on a machine at a time. CodeAlta uses:
Do not delete the lock file for a running process. Multiple active instances would share user state, sessions, and provider/runtime files unsafely.
~/.alta/alta.lock
A second launch exits with the PID of the already-running instance because multiple instances would share session state unsafely.
CodeAlta preserves prompt text when dispatch fails. Check:
If the session is busy, the prompt may be in the waiting list rather than sent immediately.
Open the context usage popup with Ctrl+G Ctrl+U. For idle started sessions, press F11 to run manual compaction. If compaction repeatedly misses its target, review attached file sizes and provider context metadata in the provider configuration.