Temporarily disable squad for current session only (preserves permanent state)
Temporarily disables squad functionality for current session only, preserving permanent installation.
/plugin marketplace add jamsajones/claude-squad/plugin install claude-squad@claude-squad-marketplaceTemporarily disable squad functionality for the current session only, without affecting permanent installation.
Creating temporary session disable...
!echo "SESSION_DISABLE=$(date)" > ~/.claude/.squad_session_disabled
Updating session hook for temporary disable...
!cat > ~/.claude/hooks/sessionStart.sh << 'EOF' #!/bin/bash
if [ -f "$HOME/.claude/.squad_session_disabled" ]; then echo "â¸ī¸ Squad temporarily disabled for this session." echo "Use /squad-on to re-enable for this session." exit 0 fi
if [ -f "$HOME/.claude/.squad_enabled" ]; then SQUAD_FILE="$HOME/.claude/SQUAD.md"
# Check if SQUAD.md exists
if [ -f "$SQUAD_FILE" ]; then
echo "đ¤ Loading squad orchestration rules from SQUAD.md..."
cat "$SQUAD_FILE"
else
echo "â ī¸ Warning: SQUAD.md not found at $SQUAD_FILE"
echo "Agent orchestration rules may not be properly configured."
fi
else echo "âšī¸ Squad functionality disabled. Use /squad-on to enable agent delegation." fi EOF
!chmod +x ~/.claude/hooks/sessionStart.sh
!echo "đ Current State:" !echo "â Permanent state: $([ -f ~/.claude/.squad_enabled ] && echo 'Preserved' || echo 'Not installed')" !echo "â¸ī¸ Session disable: $([ -f ~/.claude/.squad_session_disabled ] && echo 'Active' || echo 'Inactive')"
â ī¸ IMPORTANT: To ensure proper squad standdown, your current context should be cleared.
Do you want to clear the context now?
Respond with 'yes' to clear context and deactivate squad for this session, or 'no' to keep current context.
If you choose 'yes', the context will be cleared and you'll interact directly with Claude without agent delegation for this session only.
â¸ī¸ Squad functionality is now in STANDDOWN (session-only)
Use /squad-on to re-enable for current session.
Use /squad-dismiss to permanently remove squad functionality.