Running #OpenClaw agents in sandboxed environment and wondering why pre-configured ~/.bashrc never loaded by your agent? (Like brew or brew installed tools)

It is because OpenClaw overwrite $HOME to /workspace so the bash profiles in /home/sandbox will never loaded, just create those two symbolic link and everything should work as expected.

Send this to your sandboxed agent:

(Text limit exceeded, check comment)

Run those two commends and add `.bashrc` `.profile` to `.gitignore`
```
ln -sf /home/sandbox/.profile /workspace/.profile
ln -sf /home/sandbox/.bashrc /workspace/.bashrc
```