macOS: Why do I get the error “string not in pwd” when trying to access my project’s local folder?
That error is because the path has a space in it (Application Support), and your shell is splitting it into two arguments. cd only sees the first part (/Users/<your-user>/Library/Application), can’t find it, and complains.
Fix it by quoting the path that Insomnia provides from the UI:
cd "<path-from-Insomnia>"