Install command
Not provided
Real-time AI cost tracking statusline with per-session spend analytics, model pricing, and budget alerts
Open the source and read safety notes before installing.
Source-backed facts for citing this resource, derived directly from the registry — also available as plain text for AI assistants.
Decision playbook
Signals are present but mixed. Use the checklist below to confirm the source and operational safety for your environment.
0
78
—
No baseline selected
No major trust-signal divergence detected in the current selection.
Confirm ownership and provenance before trusting install instructions.
Source link availableRequired
Open the canonical repository and verify ownership.
Source provenance statusRequired
Marked as source-backed.
Metadata reviewed
Registry metadata indicates a reviewed listing.
Validate risk disclosures before installation or API wiring.
Safety notes presentRequired
Review the listed safety guidance before running commands.
Privacy notes presentRequired
Review data handling notes before connecting accounts or secrets.
Trust level risk gateRequired
Trust level does not block evaluation.
Check package metadata and artifact integrity signals.
Install payload available
Install or copy payload is available for review.
Package verification flag
No package verification flag provided.
Checksum metadata
No checksum provided for downloaded artifact.
Use compare context to validate trade-offs before adoption.
Compare tray has multiple entries
Add at least one more entry to compare trust differences.
Baseline comparison available
No baseline peer selected yet.
Diverging trust signals identified
No major trust-signal divergence found.
Setup at a glance
Copy-ready — paste the snippet to get started.
Install command
Not provided
Config snippet
Provided
Copy snippet
Provided
Prerequisites
6 to clear
Platforms
1 listed
Difficulty
2/100
Adoption plan
Current risk score 16/100. Use staged verification before broader rollout.
Validate source and review signals before any execution.
Confirm source provenanceRequired
Source URL/provenance metadata is present.
Confirm metadata review state
Listing has review metadata.
Verify install payload
Install/config payload exists and can be inspected.
Confirm safety, privacy, and package integrity signals.
Review safety notesRequired
Safety notes are present.
Review privacy notesRequired
Privacy notes are present.
Verify package integrity metadata
No package verification/checksum metadata.
Adopt in controlled steps based on the selected plan.
Run in isolated sandbox firstRequired
Use a constrained sandbox and observe behavior across multiple tasks.
Roll out graduallyRequired
Roll out to a small cohort before wider usage.
Set monitoring and fallback
Define rollback path and monitor errors after adoption.
Evidence readiness
Required evidence gates are covered (5/6 signals complete).
Source repository/provenance is listed.
Required in this preset
Review metadata is present.
Required in this preset
Safety notes are present.
Required in this preset
Privacy notes are present.
Optional in this preset
Package integrity metadata is missing.
Optional in this preset
Install payload is available.
Required in this preset
Required evidence gates are covered for this preset.
Decision timeline
5/6 steps complete with no blocking gaps for this preset.
triage
Source/provenance metadata is available.
triage
Review metadata is available.
verify
Safety notes are available.
verify
Privacy notes are available.
verify
Package integrity metadata is missing.
rollout
Install payload is available.
No required blockers for this timeline preset.
Prerequisite readiness
6 prerequisites to line up before setup.
Safety & privacy surface
1 safety and 1 privacy notes across 1 risk area. Review closely: credentials & tokens.
#!/usr/bin/env bash
# Real-Time Cost Tracker
# Calculate session costs based on token usage
read -r input
model=$(echo "$input" | jq -r '.model // "unknown"')
tokens=$(echo "$input" | jq -r '.session.totalTokens // 0')
# 2025 Pricing (per 1M tokens)
if [[ "$model" == *"claude-sonnet-4"* ]]; then
price_per_m=3.00
elif [[ "$model" == *"gpt-4"* ]]; then
price_per_m=5.00
elif [[ "$model" == *"gemini"* ]]; then
price_per_m=1.25
else
price_per_m=1.00
fi
# Calculate cost
cost=$(awk "BEGIN {printf \"%.4f\", ($tokens / 1000000) * $price_per_m}")
# Budget alert
if (( $(echo "$cost > 0.50" | bc -l) )); then
color="\033[31m" # Red
icon="⚠️"
elif (( $(echo "$cost > 0.10" | bc -l) )); then
color="\033[33m" # Yellow
icon="💰"
else
color="\033[32m" # Green
icon="💵"
fi
echo -e "${icon} ${color}$${cost}${color}\033[0m │ ${tokens} tokens"{
"statusLine": {
"type": "command",
"command": "$CLAUDE_PROJECT_DIR/.claude/statuslines/real-time-cost-tracker.sh",
"refreshInterval": 1000
}
}{
"statusLine": {
"type": "command",
"command": "$CLAUDE_PROJECT_DIR/.claude/statuslines/real-time-cost-tracker.sh",
"refreshInterval": 1000
}
}
Extended version tracking daily spending and budget limits
#!/usr/bin/env bash
# Enhanced Real-Time Cost Tracker with Daily Budget
export LC_NUMERIC=C
read -r input
model=$(echo "$input" | jq -r '.model.id // .model.display_name // "unknown"')
tokens=$(echo "$input" | jq -r '.cost.total_lines_added // .session.totalTokens // 0')
# Daily budget (configurable via environment variable)
DAILY_BUDGET=${COST_TRACKER_DAILY_BUDGET:-10.00}
# Session cost file
COST_FILE="${HOME}/.claude-code-daily-cost"
TODAY=$(date +%Y-%m-%d)
# Read today's total cost
if [ -f "$COST_FILE" ]; then
today_total=$(grep "^${TODAY}" "$COST_FILE" | cut -d'|' -f2 2>/dev/null || echo "0.0000")
else
today_total="0.0000"
fi
# 2025 Pricing
if [[ "$model" == *"claude-sonnet-4"* ]] || [[ "$model" == *"sonnet-4"* ]]; then
price_per_m=3.00
elif [[ "$model" == *"claude-opus"* ]] || [[ "$model" == *"opus"* ]]; then
price_per_m=15.00
elif [[ "$model" == *"gpt-4.1"* ]]; then
price_per_m=5.00
elif [[ "$model" == *"gemini-2"* ]]; then
price_per_m=3.50
else
price_per_m=1.00
fi
# Calculate session cost
if command -v awk > /dev/null 2>&1; then
session_cost=$(awk "BEGIN {printf \"%.4f\", ($tokens / 1000000) * $price_per_m}" 2>/dev/null || echo "0.0000")
else
session_cost=$(echo "scale=4; ($tokens / 1000000) * $price_per_m" | bc -l 2>/dev/null || echo "0.0000")
fi
# Update daily total
if command -v bc > /dev/null 2>&1; then
new_total=$(echo "$today_total + $session_cost" | bc -l 2>/dev/null || echo "$today_total")
else
new_total="$today_total"
fi
# Write updated total
if [ -f "$COST_FILE" ]; then
sed -i.bak "/^${TODAY}/d" "$COST_FILE" 2>/dev/null || true
fi
echo "${TODAY}|${new_total}" >> "$COST_FILE"
# Budget alert
if command -v bc > /dev/null 2>&1; then
budget_percentage=$(awk "BEGIN {printf \"%.1f\", ($new_total / $DAILY_BUDGET) * 100}" 2>/dev/null || echo "0.0")
if (( $(echo "$new_total >= $DAILY_BUDGET" | bc -l 2>/dev/null) )); then
color="\033[31m"
icon="🚨"
budget_status="BUDGET EXCEEDED"
elif (( $(echo "$new_total > ($DAILY_BUDGET * 0.8)" | bc -l 2>/dev/null) )); then
color="\033[33m"
icon="⚠️"
budget_status="${budget_percentage}%"
else
color="\033[32m"
icon="💵"
budget_status="${budget_percentage}%"
fi
else
color="\033[32m"
icon="💵"
budget_status=""
fi
# Format costs
if command -v printf > /dev/null 2>&1; then
session_formatted=$(printf "$%.4f" $session_cost 2>/dev/null || echo "$${session_cost}")
total_formatted=$(printf "$%.2f" $new_total 2>/dev/null || echo "$${new_total}")
tokens_formatted=$(printf "%'d" $tokens 2>/dev/null || echo "$tokens")
else
session_formatted="$${session_cost}"
total_formatted="$${new_total}"
tokens_formatted="$tokens"
fi
RESET="\033[0m"
echo -e "${icon} ${color}${session_formatted}${RESET} │ Daily: ${total_formatted} (${budget_status}) │ ${tokens_formatted} tokens"
Version with configurable pricing via environment variables
#!/usr/bin/env bash
# Real-Time Cost Tracker with Custom Pricing
export LC_NUMERIC=C
read -r input
model=$(echo "$input" | jq -r '.model.id // .model.display_name // "unknown"')
tokens=$(echo "$input" | jq -r '.cost.total_lines_added // .session.totalTokens // 0')
# Custom pricing via environment variables (defaults to 2025 pricing)
CLAUDE_SONNET_PRICE=${CLAUDE_SONNET_PRICE:-3.00}
CLAUDE_OPUS_PRICE=${CLAUDE_OPUS_PRICE:-15.00}
CLAUDE_HAIKU_PRICE=${CLAUDE_HAIKU_PRICE:-0.25}
GPT4_PRICE=${GPT4_PRICE:-5.00}
GEMINI_PRICE=${GEMINI_PRICE:-3.50}
DEFAULT_PRICE=${DEFAULT_PRICE:-1.00}
# Determine pricing based on model
if [[ "$model" == *"claude-sonnet-4"* ]] || [[ "$model" == *"sonnet-4"* ]]; then
price_per_m=$CLAUDE_SONNET_PRICE
elif [[ "$model" == *"claude-opus"* ]] || [[ "$model" == *"opus"* ]]; then
price_per_m=$CLAUDE_OPUS_PRICE
elif [[ "$model" == *"claude-haiku"* ]] || [[ "$model" == *"haiku"* ]]; then
price_per_m=$CLAUDE_HAIKU_PRICE
elif [[ "$model" == *"gpt-4"* ]]; then
price_per_m=$GPT4_PRICE
elif [[ "$model" == *"gemini"* ]]; then
price_per_m=$GEMINI_PRICE
else
price_per_m=$DEFAULT_PRICE
fi
# Calculate cost
if command -v awk > /dev/null 2>&1; then
cost=$(awk "BEGIN {printf \"%.4f\", ($tokens / 1000000) * $price_per_m}" 2>/dev/null || echo "0.0000")
else
cost=$(echo "scale=4; ($tokens / 1000000) * $price_per_m" | bc -l 2>/dev/null || echo "0.0000")
fi
# Budget alert
if command -v bc > /dev/null 2>&1; then
if (( $(echo "$cost > 0.50" | bc -l 2>/dev/null) )); then
color="\033[31m"
icon="⚠️"
elif (( $(echo "$cost > 0.10" | bc -l 2>/dev/null) )); then
color="\033[33m"
icon="💰"
else
color="\033[32m"
icon="💵"
fi
else
cost_int=${cost%.*}
if [ $cost_int -gt 0 ] || [ "$(echo "$cost" | cut -d'.' -f2 | cut -c1-2)" -gt 50 ]; then
color="\033[31m"
icon="⚠️"
elif [ "$(echo "$cost" | cut -d'.' -f2 | cut -c1-2)" -gt 10 ]; then
color="\033[33m"
icon="💰"
else
color="\033[32m"
icon="💵"
fi
fi
# Format output
if command -v printf > /dev/null 2>&1; then
tokens_formatted=$(printf "%'d" $tokens 2>/dev/null || echo "$tokens")
else
tokens_formatted="$tokens"
fi
RESET="\033[0m"
echo -e "${icon} ${color}$${cost}${RESET} │ ${tokens_formatted} tokens"
Complete setup script with bc calculator verification and locale configuration
#!/bin/bash
# Installation script for Real-Time Cost Tracker
# Check for jq (required for JSON parsing)
if ! command -v jq &> /dev/null; then
echo "Installing jq for JSON parsing..."
if [[ "$OSTYPE" == "darwin"* ]]; then
brew install jq
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then
sudo apt-get install -y jq || sudo yum install -y jq
else
echo "Please install jq manually: https://stedolan.github.io/jq/"
fi
fi
# Check for bc (required for floating point comparison)
if ! command -v bc &> /dev/null; then
echo "Installing bc calculator (required for cost calculations)..."
if [[ "$OSTYPE" == "darwin"* ]]; then
brew install bc
elif [[ "$OSTYPE" == "linux-gnu"* ]]; then
sudo apt-get install -y bc || sudo yum install -y bc
else
echo "Please install bc manually: https://www.gnu.org/software/bc/"
fi
fi
# Check for awk (usually pre-installed)
if ! command -v awk &> /dev/null; then
echo "Warning: awk command not found - cost calculations may not work"
echo "Install awk: macOS (pre-installed), Linux (sudo apt-get install gawk or sudo yum install gawk)"
else
echo "awk command available"
fi
# Test locale for decimal separator
if [ "$(locale -k LC_NUMERIC | grep decimal_point | cut -d'=' -f2 | tr -d '"')" = "." ]; then
echo "Decimal separator verified: . (dot)"
else
echo "Warning: Decimal separator may be comma - set LC_NUMERIC=C in script"
echo "Script sets export LC_NUMERIC=C automatically"
fi
# Test bc calculator
if command -v bc &> /dev/null; then
if echo "scale=4; 1000000 / 1000000 * 3.00" | bc -l 2>/dev/null | grep -q "3.0000"; then
echo "bc calculator working: $(echo 'scale=4; 1000000 / 1000000 * 3.00' | bc -l)"
else
echo "Warning: bc calculator test failed"
fi
fi
# Test awk for cost calculation
if command -v awk &> /dev/null; then
test_cost=$(awk "BEGIN {printf \"%.4f\", (1000000 / 1000000) * 3.00}" 2>/dev/null)
if [ "$test_cost" = "3.0000" ]; then
echo "awk cost calculation working: $test_cost"
else
echo "Warning: awk cost calculation test failed"
fi
fi
# Test emoji support
if echo -e '💵 💰 ⚠️ 🚨' &> /dev/null; then
echo "Emoji characters supported: 💵 💰 ⚠️ 🚨"
else
echo "Warning: Emoji characters may not display correctly"
fi
# Create statuslines directory
mkdir -p .claude/statuslines
cat > .claude/statuslines/real-time-cost-tracker.sh << 'SCRIPT_EOF'
#!/usr/bin/env bash
# Real-Time Cost Tracker
# Calculate session costs based on token usage
export LC_NUMERIC=C
read -r input
model=$(echo "$input" | jq -r '.model.id // .model.display_name // "unknown"')
tokens=$(echo "$input" | jq -r '.cost.total_lines_added // .session.totalTokens // 0')
# 2025 Pricing (per 1M tokens)
if [[ "$model" == *"claude-sonnet-4"* ]] || [[ "$model" == *"sonnet-4"* ]] || [[ "$model" == *"Sonnet 4"* ]]; then
price_per_m=3.00
elif [[ "$model" == *"claude-opus"* ]] || [[ "$model" == *"opus"* ]] || [[ "$model" == *"Opus"* ]]; then
price_per_m=15.00
elif [[ "$model" == *"claude-haiku"* ]] || [[ "$model" == *"haiku"* ]] || [[ "$model" == *"Haiku"* ]]; then
price_per_m=0.25
elif [[ "$model" == *"gpt-4.1"* ]] || [[ "$model" == *"GPT-4.1"* ]]; then
price_per_m=5.00
elif [[ "$model" == *"gpt-4o"* ]] || [[ "$model" == *"GPT-4o"* ]]; then
price_per_m=2.50
elif [[ "$model" == *"gemini-2"* ]] || [[ "$model" == *"Gemini 2"* ]]; then
price_per_m=3.50
elif [[ "$model" == *"gemini-1.5-pro"* ]] || [[ "$model" == *"Gemini 1.5 Pro"* ]]; then
price_per_m=3.50
else
price_per_m=1.00
fi
# Calculate cost
if command -v awk > /dev/null 2>&1; then
cost=$(awk "BEGIN {printf \"%.4f\", ($tokens / 1000000) * $price_per_m}" 2>/dev/null || echo "0.0000")
else
if command -v bc > /dev/null 2>&1; then
cost=$(echo "scale=4; ($tokens / 1000000) * $price_per_m" | bc -l 2>/dev/null || echo "0.0000")
else
cost="0.0000"
fi
fi
# Budget alert
if command -v bc > /dev/null 2>&1; then
if (( $(echo "$cost > 0.50" | bc -l 2>/dev/null) )); then
color="\033[31m"
icon="⚠️"
elif (( $(echo "$cost > 0.10" | bc -l 2>/dev/null) )); then
color="\033[33m"
icon="💰"
else
color="\033[32m"
icon="💵"
fi
else
cost_int=${cost%.*}
if [ $cost_int -gt 0 ] || [ "$(echo "$cost" | cut -d'.' -f2 | cut -c1-2)" -gt 50 ]; then
color="\033[31m"
icon="⚠️"
elif [ "$(echo "$cost" | cut -d'.' -f2 | cut -c1-2)" -gt 10 ]; then
color="\033[33m"
icon="💰"
else
color="\033[32m"
icon="💵"
fi
fi
# Format token count
if command -v printf > /dev/null 2>&1; then
tokens_formatted=$(printf "%'d" $tokens 2>/dev/null || echo "$tokens")
else
tokens_formatted="$tokens"
fi
RESET="\033[0m"
echo -e "${icon} ${color}$${cost}${RESET} │ ${tokens_formatted} tokens"
SCRIPT_EOF
chmod +x .claude/statuslines/real-time-cost-tracker.sh
# Add to settings.json
if [ ! -f .claude/settings.json ]; then
echo '{"statusLine":{"type":"command","command":"$CLAUDE_PROJECT_DIR/.claude/statuslines/real-time-cost-tracker.sh","refreshInterval":1000}}' > .claude/settings.json
else
jq '.statusLine = {"type":"command","command":"$CLAUDE_PROJECT_DIR/.claude/statuslines/real-time-cost-tracker.sh","refreshInterval":1000}' .claude/settings.json > .claude/settings.json.tmp
mv .claude/settings.json.tmp .claude/settings.json
fi
echo "Real-Time Cost Tracker installed successfully!"
echo "Note: Ensure LC_NUMERIC=C is set for correct decimal formatting"
echo "Test cost calculation: echo 'scale=4; 1000000 / 1000000 * 3.00' | bc -l"
Set LC_NUMERIC=C at script start to enforce dot decimal separator. Some locales default to comma, breaking bc. Add: export LC_NUMERIC=C before math operations. Verify locale: locale -k LC_NUMERIC | grep decimal_point (should be '.'). Test: echo 'scale=4; 3.00' | bc -l (should return 3.0000, not 3,0000). Check script: Ensure export LC_NUMERIC=C is at the top of the script.
Update price_per_m values. Claude Sonnet 4 is $3/M (2025), Claude Opus is $15/M, Claude Haiku is $0.25/M, GPT-4.1 is $5/M, GPT-4o is $2.50/M, Gemini 2.0 is $3.50/M. Verify at provider docs before updating script. Check model detection: echo '$input' | jq .model.id (should match pattern in script). Update pricing: Modify price_per_m values in script for each model pattern. Test: Calculate manually: (tokens / 1000000) * price_per_m.
Install bc calculator: macOS (brew install bc), Linux (sudo apt-get install bc or sudo yum install bc). Verify installation: command -v bc (should return path). Test bc: echo 'scale=4; 3.00' | bc -l (should return 3.0000). Script has awk fallback: If bc unavailable, script uses awk for cost calculation. Verify awk: command -v awk (should return path). Check both: Script tries awk first, then bc as fallback.
Check printf precision: use %.4f for micro-dollars. Verify tokens populated: echo '$input' | jq '.cost.total_lines_added' (should return number). If zero, test JSON parsing: echo '$input' | jq '.session.totalTokens'. Check field names: Script checks cost.total_lines_added and session.totalTokens. Verify calculation: echo 'scale=4; (1000000 / 1000000) * 3.00' | bc -l (should return 3.0000). Check model detection: If model not recognized, default price is 1.00 - verify model name matches patterns.
Verify bc comparison works: echo '0.60 > 0.50' | bc -l (should return 1 for true). Check cost value: echo $cost (should be decimal like 0.1234). Verify thresholds: Script uses > 0.50 (red), > 0.10 (yellow), else (green). Test comparison: echo 'scale=4; 0.60 > 0.50' | bc -l (should return 1). Check if bc unavailable: Script uses integer fallback if bc not found - may not work correctly for decimal comparisons.
Verify printf supports thousands separator: printf "%'d" 12345 (should return 12,345). Check locale settings: locale (should include thousands separator). Set locale if needed: export LC_NUMERIC=en_US.UTF-8 (but keep LC_NUMERIC=C for calculations). Test formatting: printf "%'d" 1234567 (should return 1,234,567). If not supported, script falls back to plain numbers. Alternative: Use awk for formatting: awk '{printf "%'"'"'d", $1}' <<< 12345.
Add patterns to model detection logic. Common patterns: claude-sonnet-4, claude-opus, claude-haiku, gpt-4.1, gpt-4o, gemini-2, gemini-1.5-pro. Update with: [["$model" == "pattern"]]. Check model name format: echo '$input' | jq .model.id. Test pattern matching: [["test-claude-sonnet-4" == "claude-sonnet-4"]] && echo "Matched". Add new model variants to appropriate pricing block. Verify pricing: Check provider documentation for current pricing.
Increase precision in awk: awk 'BEGIN {printf "%.4f", ...}' (4 decimals). For bc: echo 'scale=4; ...' (4 decimal places). Verify calculation: echo 'scale=4; (1000000 / 1000000) * 3.00' | bc -l (should return 3.0000). Check printf format: printf "$%.4f" 0.1234 (should return $0.1234). Higher precision: Use %.6f for 6 decimals (micro-dollars). Note: Higher precision may slow execution slightly.
Show that Real Time Cost Tracker - Statuslines is listed on HeyClaude. Paste this Markdown into your README — it renders the badge and links back to this page.
[](https://heyclau.de/entry/statuslines/real-time-cost-tracker)Real Time Cost Tracker - Statuslines side by side with 3 alternatives on trust, install, platform support, and disclosed safety notes — all from reviewed registry metadata.
1 trust signal differ across this comparison (Submitter).
| Field | Real-time AI cost tracking statusline with per-session spend analytics, model pricing, and budget alerts Open dossier | Real-time burn rate monitor showing cost per minute, tokens per minute, and projected daily spend to prevent budget overruns during Claude Code sessions. Open dossier | Time-tracking statusline showing elapsed session duration, tokens per minute rate, and estimated cost with productivity metrics Open dossier | Claude Code statusline that estimates context pressure from local session token counts and a configurable context limit, then prints a compact risk tier. Open dossier |
|---|---|---|---|---|
| Next steps | ||||
| Trust | ||||
| Review status | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed | ReviewedMaintainer reviewed |
| Package trust | Package not verified | Package not verified | Package not verified | Package not verified |
| Source provenance | Source-backed | Source-backed | Source-backed | Source-backed |
| SubmitterDiffers | — | — | — | MkDev11 |
| Install risk | Review first | Review first | Review first | Review first |
| Notes | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ | Safety ✓ Privacy ✓ |
| Brand | — | — | — | — |
| Category | statuslines | statuslines | statuslines | statuslines |
| Source | source-backed | source-backed | source-backed | source-backed |
| Author | JSONbored | JSONbored | JSONbored | MkDev11 |
| Added | 2025-10-16 | 2025-10-25 | 2025-10-01 | 2026-06-04 |
| Platforms | Claude Code | Claude Code | Claude Code | Claude Code |
| Source repo | — | — | — | — |
| Safety notes | ✓Runs as a Claude Code statusline command on every refresh and depends on the local shell environment; a failure only affects status rendering, not your session. | ✓Runs as a Claude Code statusline command on every refresh and depends on the local shell environment; a failure only affects status rendering, not your session. | ✓Runs as a Claude Code statusline command on every refresh and depends on the local shell environment; a failure only affects status rendering, not your session. | ✓Context percentage is only as accurate as the configured limit and the usage fields available in the statusline input. Use the warning as a cue to summarize or checkpoint work before context pressure affects reasoning quality. Do not treat a low percentage as proof that all relevant files, instructions, or tool results are still in scope. |
| Privacy notes | ✓Reads the Claude Code statusline JSON from stdin (model, token usage, and cost) and renders it in the local terminal; it does not send data off-machine. | ✓Reads the Claude Code statusline JSON from stdin (model, workspace path, token usage) and renders it in the local terminal; it does not send data off-machine. | ✓Reads the Claude Code statusline JSON from stdin (model, workspace path, token usage) and renders it in the local terminal; it does not send data off-machine. | ✓The script reads local session counters and does not inspect prompt text, files, or transcript contents. Token counts and configured limits can still reveal workload size in screenshots or shared terminal logs. Teams should avoid placing customer names or project identifiers in shell variables that appear in debugging output. |
| Prerequisites |
|
|
|
|
| Install | — | — | — | — |
| Config | | | | |
| Citations | ||||
| Claim | Unclaimed | Unclaimed | Unclaimed | Unclaimed |
Loading live community signals…
A short, calm digest of reviewed Claude resources. Unsubscribe any time.