Two Claude Pro account limits overlapping.

Resolved 💬 3 comments Opened Aug 2, 2025 by bazinga012 Closed Aug 15, 2025

Bug Description
Im using two different Claude pro account in my machine.
One using <personal_email>
And one using <work_email>
With following functions:::
cc_ta() {
export CLAUDE_CONFIG_DIR="$HOME/.config/claude-code/profiles/work" # Optional, if you want separate interactive login configs
echo "Switching to Claude work profile..."
command claude "$@" # command will call the actual claude to avoid the recursion
unset CLAUDE_CONFIG_DIR
}

Claude Personal Profile

cc_p() {
export CLAUDE_CONFIG_DIR="$HOME/.config/claude-code/profiles/personal" # Optional
echo "Switching to Claude Default personal profile..."
command claude "$@" # command will call the actual claude to avoid the recursion
unset CLAUDE_CONFIG_DIR
}

But when I'm reaching limit in one claude code instance, claude code with other profile is also showing reached limit, even without use. Please help I've annual plan on both accounts, and I need to work with both accounts

View original on GitHub ↗

This issue has 3 comments on GitHub. Read the full discussion on GitHub ↗