|
|
|
|
|
by npollock
59 days ago
|
|
You can configure the status line to get a feel for token usage: [Opus 4.6] 3% context | last: 5.2k in / 1.1k out add this to .claude/settings.json "statusLine": {
"type": "command",
"command": "jq -r '\"[\\(.model.display_name)]
\\(.context_window.used_percentage // 0)% context | last:
\\(((.context_window.current_usage.input_tokens // 0) / 1000 * 10 | floor / 10))k in /
\\(((.context_window.current_usage.output_tokens // 0) / 1000 * 10 | floor / 10))k out\"'"
} |
|