#Changing home folder name

1 messages ยท Page 1 of 1 (latest)

rapid wrenBOT
#

To help others find answers, you can mark your question as solved via Right click solution message -> Apps -> โœ… Mark Solution

somber nexusBOT
#

This is a great question and something worth thinking about before making the change.

Short answer: It can cause issues, but Clawdbot should generally handle it okay since it uses ~/.clawdbot/ paths.

What to watch out for:

  1. Running processes: If Clawdbot is running when you change the home folder, stop it first. The process will have the old path open and can behave unpredictably.

  2. Database files: The gateway stores data in ~/.clawdbot/data/ โ€” this should resolve fine via the tilde, but if you ever configured absolute paths anywhere, those would break.

  3. Permissions: macOS can get finicky with permissions after renaming. If you see "permission denied" errors after the change, you may need to reset ownership:

    sudo chown -R $(whoami) ~/.clawdbot
    
  4. Homebrew/npm/pnpm: If Clawdbot was installed via Homebrew or you have dependencies installed, those might also reference the old username in their paths. A reinstall might be needed if things break.