Protect what matters – even after you're gone. Make a plan for your digital legacy today.
Forum Discussion
subsonic_rumble
29 days agoNew Contributor
1password-cli op command causes "would like to access data from other apps." warning
See also https://github.com/1Password/shell-plugins/issues/586, . I am receiving pop up "would like to access data from other apps" warnings when using the op command. This may have appeared with ...
ferdinandkeller
3 days agoNew Member
Encountered exactly that:
- I have this problem with Claude Desktop on MacOS.
- It's caused by oh-my-zsh 1password plugin
I modified gege_ahlin solution slightly:
# if using Claude Desktop (non interactive shell), early escape
if [[ ! -t 1 ]] then
echo "Requires an interactive terminal."
exit 1
fiAnother variant where I only load plugins if the shell is interactive:
# only load plugins if interactive shell
if [[ -t 1 ]] then
plugins=(1password)
source $ZSH/oh-my-zsh.sh
fiThis seems to work well for now, I will modify it if I notice problems.