From iterm2-tab-status
Removes all iTerm2 tab status artifacts: adapter script from AutoLaunch, Python venv, signal files, and marker files. Use after uninstalling the iterm2-tab-status plugin.
How this command is triggered — by the user, by Claude, or both
Slash command
/iterm2-tab-status:uninstallThe summary Claude sees in its command listing — used to decide when to auto-load this command
Clean up all iterm2-tab-status artifacts from the system: 1. Remove the adapter script from iTerm2 AutoLaunch 2. Remove the Python venv if it was created by bootstrap (not pre-existing) 3. Remove signal files 4. Remove marker and tracking files Execute this cleanup: After running, restart iTerm2. Then uninstall the plugin: `/plugin uninstall iterm2-tab-status`
Clean up all iterm2-tab-status artifacts from the system:
Execute this cleanup:
ITERM2_SUPPORT="$HOME/Library/Application Support/iTerm2"
AUTOLAUNCH="$ITERM2_SUPPORT/Scripts/AutoLaunch"
# 1. Remove adapter from AutoLaunch
rm -f "$AUTOLAUNCH/claude_tab_status.py"
echo "Removed adapter from AutoLaunch"
# 2. Remove venv if we created it
VENV_PATH_FILE="$HOME/.claude/iterm2-tab-status-venv-path"
if [[ -f "$VENV_PATH_FILE" ]]; then
VENV_PATH="$(cat "$VENV_PATH_FILE")"
if [[ -d "$VENV_PATH" ]]; then
rm -rf "$VENV_PATH"
echo "Removed venv: $VENV_PATH"
fi
rm -f "$VENV_PATH_FILE"
fi
# 3. Remove signal files
rm -rf /tmp/claude-tab-status
# 4. Remove marker and lock
rm -f "$HOME/.claude/iterm2-tab-status-bootstrapped"
rm -f /tmp/claude-tab-status-bootstrap.lock
echo "Cleanup complete. Restart iTerm2 to finish."
After running, restart iTerm2. Then uninstall the plugin: /plugin uninstall iterm2-tab-status
npx claudepluginhub jaspersui/claude-code-iterm2-tab-status2plugins reuse this command
First indexed Mar 28, 2026
/uninstallRemoves the which-claude-code statusline from ~/.claude/settings.json and restores any previous backup. Also reminds the user to run /plugin uninstall separately.
/uninstallCleanly removes all VBW traces from Claude Code configuration, status line, and project files, preparing for plugin uninstall.
/uninstallUninstalls claude-code-mascot-statusline by dry-running removal of statusLine, hooks, and runtime data, confirming with user, then executing cleanup.
/uninstall-watchdogRemoves the egregore watchdog daemon by unloading the launchd agent on macOS or disabling the systemd timer/service on Linux, cleaning up all related configuration files.
/uninstallUninstalls or disables Autonomous-Dev plugin features interactively or via direct options like --disable-hooks, --clean-project, --full-clean, --global. Removes hooks, templates, settings, PROJECT.md, or plugin globally.
/uninstallRemoves all managed anotifier hooks from Claude Code, Codex, Cursor, and Gemini. Original configs are backed up at ~/.anotifier/backups/.