If youโre dabbling with tools like Claude Code, you might not have the mental models as typical developers who use the Terminal โ I know I donโt, coming from the Shortcuts world.
One simple tip to help you get started is creating a home directory for all your projects, so instead of running claude on your entire user folder, you can run โchoose directoryโ on that folder with cd ~/Developer and then activate your AI bot from there.
Why Developer? Because, when added to your user folder, Apple automatically adds the hammer glyph, giving the folder icon a nice โApple Developerโ vibe both in the Finder view and sidebar.
From there, you can create new projects in their own respective folders and tap into each when necessary, while not immediately granting an AI access to the contents of your entire computer.
To make the Developer directory with the Terminal1, run mkdir -p ~/Developer.
- The P in
-pstands for โcreate parent directories if they don’t existโ in case you donโt have a typical user folder structure. โฉ