Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx agentmods add commands/jaspersui/claude-code-iterm2-tab-status/uninstallgit clone --depth 1 https://github.com/JasperSui/claude-code-iterm2-tab-statusWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/commands/jaspersui/claude-code-iterm2-tab-status/uninstall)<a href="https://agentmods.dev/commands/jaspersui/claude-code-iterm2-tab-status/uninstall"><img src="https://agentmods.dev/badge/commands/jaspersui/claude-code-iterm2-tab-status/uninstall.svg" alt="Measured on agentmods" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5 | $0.00023 | $0.00356 |
| Opus 5 | $0.00012 | $0.00178 |
| Sonnet 5 | $0.00005 | $0.00071 |
| Haiku 4.5 | $0.00002 | $0.00036 |
Grade C, and why
uninstall scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 4d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Recursive force deletehighDestructive command
rm -rf with a variable or a broad path is one typo away from removing the wrong tree.
rm -rf "$VENV_PATH" What it actually says
Clean up all iterm2-tab-status artifacts from the system:
- Remove the adapter script from iTerm2 AutoLaunch
- Remove the Python venv if it was created by bootstrap (not pre-existing)
- Remove signal files
- Remove marker and tracking files
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
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 4d ago First seen · 43 lines · 23 tokens per session scan C 828a8bc5a26d
uninstall is a command published in the GitHub repository JasperSui/claude-code-iterm2-tab-status (39 stars, last pushed 14d ago), licensed MIT. It adds 23 tokens to every session and 356 once invoked, about $0.0001 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.
Other commands, from other repositories
stats
Show token-saver compression statistics and savings.
release
Cut a signed, notarized Switchboard release (GitHub + Homebrew tap).
repeat
Replay the most recent Audio Recap audibly. Hits the per-session cache when available; otherwise generates on demand from the latest assistant turn.
off
Disable Audio Recap for this Claude Code session.
status
Print Audio Recap's current on/off state for this Claude Code session (no change).
on
Enable Audio Recap for this Claude Code session.