#Changing home folder name
1 messages ยท Page 1 of 1 (latest)
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:
-
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.
-
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. -
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 -
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.