Common Issues
Solutions to frequently encountered problems
Git Not Working
Symptoms
- Git commands fail in terminal
- Source control features don't work
- "git not found" errors
Solution
Agentastic is distributed without sandbox restrictions for full Git access. Ensure Git is installed:
# Check if Git is installed git --version # Install via Xcode Command Line Tools xcode-select --install # Or via Homebrew brew install git
Terminal Not Opening
Symptoms
- Terminal tab appears blank
- No shell prompt
Solution
- Check your shell path in Settings > Terminal
- Verify the shell exists:
which zsh # or bash, fish, etc. - Try switching terminal backends in Settings > Terminal > Terminal Emulator
LSP Not Working
Symptoms
- No auto-completion
- "Go to Definition" doesn't work
- No error highlighting
Solution
- Verify the language server is installed
- Check Settings > LSP for configuration
- Ensure your project has the required config file:
- TypeScript:
tsconfig.json - Python:
pyrightconfig.jsonorpyproject.toml - Rust:
Cargo.toml
- TypeScript:
See Setup LSP for detailed instructions.
Slow Performance
Symptoms
- Editor feels sluggish
- High CPU usage
- Slow file opening
Solution
-
Large files: Files over 10MB may be slow. Consider using a dedicated text editor for very large files.
-
Many open tabs: Close unused tabs to free memory
-
LSP indexing: Some language servers need time to index large projects. Wait for initial indexing to complete.
-
Search scope: Use more specific search patterns and exclude unnecessary directories:
- Add
node_modules,.git,buildto ignore patterns
- Add
Syntax Highlighting Wrong
Symptoms
- Code not colored correctly
- Wrong language detected
Solution
- Check the file extension matches the language
- Try: View > Syntax > [Language] to manually set
- Report unsupported file types for Tree-sitter grammar additions
Workspace Not Opening
Symptoms
- Project doesn't load
- Files not showing in Navigator
Solution
-
Try opening via terminal:
open -a "Agentastic.dev" /path/to/project -
Check folder permissions:
ls -la /path/to/project -
Open a fresh project to verify Agentastic is working
Keyboard Shortcuts Not Working
Symptoms
- Shortcut does nothing
- Wrong action triggered
Solution
- Check for conflicts in Settings > Keybindings
- Verify macOS isn't intercepting the shortcut:
- System Settings > Keyboard > Keyboard Shortcuts
- Try resetting to defaults in Keybindings settings
Auto-Update Issues
Symptoms
- Updates don't install
- "Update available" won't dismiss
Solution
- Manually download from agentastic.dev/download
- Replace the app in /Applications
- Relaunch Agentastic
Theme Not Applying
Symptoms
- Colors look wrong
- Dark/light mode not switching
Solution
- Check Settings > Theme > Match System
- Toggle system appearance to trigger refresh
- Try selecting a different theme and switching back
Getting Help
If you're still experiencing issues: