Troubleshooting
Goose, like any system, may run into occasional issues. This guide provides solutions for common problems.
Goose Edits Files
Goose can and will edit files as part of its workflow. To avoid losing personal changes, use version control to stage your personal edits. Leave Goose edits unstaged until reviewed. Consider separate commits for Goose's edits so you can easily revert them if needed.
Interrupting Goose
If Goose is heading in the wrong direction or gets stuck, you can interrupt it by pressing CTRL+C
. This will stop Goose and give you the opportunity to correct its actions or provide additional information.
Stuck in a Loop or Unresponsive
In rare cases, Goose may enter a "doom spiral" or become unresponsive during a long session. This is often resolved by ending the current session, and starting a new session.
- Hold down
Ctrl+C
to cancel - Start a new session:
goose session
For particularly large or complex tasks, consider breaking them into smaller sessions.
Context Length Exceeded Error
This error occurs when the input provided to Goose exceeds the maximum token limit of the LLM being used. To resolve this, try breaking down your input into smaller parts. You can also use .goosehints
as a way to provide goose with detailed context. Refer to the Using Goosehints Guide for more information.
Using Ollama Provider
Ollama provides local LLMs, which means you must first download Ollama and run a model before attempting to use this provider with Goose. If you do not have the model downloaded, you'll run into the following error:
ExecutionError("error sending request for url (http://localhost:11434/v1/chat/completions)")
Another thing to note is that the DeepSeek models do not support tool calling, so all Goose extensions must be disabled to use one of these models. Unfortunately, without the use of tools, there is not much Goose will be able to do autonomously if using DeepSeek. However, Ollama's other models such as qwen2.5
do support tool calling and can be used with Goose extensions.
Handling Rate Limit Errors
Goose may encounter a 429 error
(rate limit exceeded) when interacting with LLM providers. The recommended solution is to use OpenRouter. See Handling LLM Rate Limits for more info.
Hermit Errors
If you see an issue installing an extension in the app that says "hermit:fatal", you may need to reset your hermit cache. We use a copy of hermit to ensure npx and uvx are consistently available. If you have already used an older version of hermit, you may need to cleanup the cache - on Mac this cache is at
sudo rm -rf ~/Library/Caches/hermit
API Errors
Users may run into an error like the one below when there are issues with their LLM API tokens, such as running out of credits or incorrect configuration:
Traceback (most recent call last):
File "/Users/admin/.local/pipx/venvs/goose-ai/lib/python3.13/site-packages/exchange/providers/utils.py",
line 30, in raise_for_status
response.raise_for_status()
~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/Users/admin/.local/pipx/venvs/goose-ai/lib/python3.13/site-packages/httpx/_models.py",
line 829, in raise_for_status
raise HTTPStatusError(message, request=request, response=self)
httpx.HTTPStatusError: Client error '404 Not Found' for url
'https://api.openai.com/v1/chat/completions'
...
This error typically occurs when LLM API credits are exhausted or your API key is invalid. To resolve this issue:
- Check Your API Credits:
- Log into your LLM provider's dashboard
- Verify that you have enough credits. If not, refill them
- Verify API Key:
- Run the following command to reconfigure your API key:
goose configure
For detailed steps on updating your LLM provider, refer to the Installation Guide.
Uninstall Goose or Remove Cached Data
You may need to uninstall Goose or clear existing data before re-installing. Goose stores data in a few places. Secrets, such as API keys, are stored exclusively in the system keychain.
Logs and configuration data are stored in ~/.config/goose
. And the app stores a small amount of data in
~/Library/Application Support/Goose
.
You can remove all of this data by following these steps.
- stop any copies of goose running (CLI or GUI)
- consider confirming you've stopped them all via the activity monitor
- open the keychain and delete the credential called "goose", which contains all secrets stored by goose
rm -rf ~/.config/goose
If you are using Goose Desktop on macOS, you may also need to remove the app itself.
rm -rf ~/Library/Application Support/Goose
- Delete the "Goose" app from your Applications folder
After this cleanup, if you are looking to try out a fresh install of Goose, you can now start from the usual install instructions.
Keychain/Keyring Errors
Goose tries to use the system keyring to store secrets. In environments where there is no keyring support, you may see an error like:
Error Failed to access secure storage (keyring): Platform secure storage failure: DBus error: The name org.freedesktop.secrets was not provided by any .service files
Please check your system keychain and run 'goose configure' again.
If your system is unable to use the keyring, please try setting secret key(s) via environment variables.
In this case, you will need to set your provider specific environment variable(s), which can be found at Supported LLM Providers.
You can set them either by doing:
export GOOGLE_API_KEY=$YOUR_KEY_HERE
- for the duration of your session- in your
~/.bashrc
or~/.zshrc
- (or equivalents) so it persists on new shell each new session
Then select the No
option when prompted to save the value to your keyring.
$ goose configure
Welcome to goose! Let's get you set up with a provider.
you can rerun this command later to update your configuration
┌ goose-configure
│
◇ Which model provider should we use?
│ Google Gemini
│
◇ GOOGLE_API_KEY is set via environment variable
│
◇ Would you like to save this value to your keyring?
│ No
│
◇ Enter a model from that provider:
│ gemini-2.0-flash-exp
Package Runners
Many of the external extensions require a package runner. For example, if you run into an error like this one:
Failed to start extension: {extension name}, "No such file or directory (os error 2)"
Please check extension configuration for {extension name}.
... it signals that the extension may not have been installed and you need the package runner in order to do so.
An example is the GitHub extension whose command is npx -y @modelcontextprotocol/server-github
. You'd need Node.js installed on your system to run this command, as it uses npx
.
macOS Permission Issues
If you encounter an issue where the Goose Desktop app shows no window on launch, it may be due to file and folder permissions. This typically happens because Goose needs read and write access to the ~/.config
directory to create its log directory and file.
Similarly, if tools fail to create files or directories during use, it could be caused by the same permission issue.
How to Check and Fix Permissions:
- Open Terminal.
- Run the following command to check the current permissions for ~/.config:
ls -ld ~/.config
Example output:
drwx------ 7 yourusername staff 224 Jan 15 12:00 /Users/yourusername/.config
rwx
indicates you have read (r), write (w), and execute (x) permissions for your user. If you do not see rwx
for your user, follow the steps below.
How to Grant Read and Write Permissions:
- To add the correct permissions, run the following commands:
If the ~/.config directory does not exist, create it and then assign permissions:
chmod u+rw ~/.config
mkdir -p ~/.config
chmod u+rw ~/.config - Verify the change:
ls -ld ~/.config
If you still experience issues after fixing permissions, try launching Goose with superuser (admin) privileges:
sudo /Applications/Goose.app/Contents/MacOS/Goose
Running Goose with sudo may create files owned by root, which could lead to further permission issues. Use this as a troubleshooting step rather than a permanent fix.
Update permission in System Settings (macOs)
- Go to
System Settings
->Privacy & Security
->Files & Folders
- Grant Goose access
Connection Error with Ollama Provider on WSL
If you encounter an error like this when setting up Ollama as the provider in Goose:
Execution error: error sending request for url (http://localhost:11434/v1/chat/completions)
This likely means that the local host address is not accessible from WSL.
- Check if the service is running:
If you receive a
curl http://localhost:11434/api/tags
failed to connect
error, it’s possible that WSL is using a different IP for localhost. In that case, run the following command to find the correct IP address for WSL:ip route show | grep -i default | awk '{ print $3 }'
- Once you get the IP address, use it in your Goose configuration instead of localhost. For example:
http://172.24.80.1:11434
Need Further Help?
If you have questions, run into issues, or just need to brainstorm ideas join the Discord Community!