cc-bunline
v0.1.2
Published
Multi-line Claude Code statusline for Bun: model info, cost, tokens, rate limits, and git status
Maintainers
Readme
cc-bunline
Bun 專屬的 Claude Code 多行狀態列—在終端機中顯示模型資訊、費用、Token 用量、速率限制和 Git 狀態。
功能展示
渲染四行 ANSI 狀態列:
- 模型 —名稱、上下文用量進度條、Session ID
- 費用 —本次費用、持續時間、快取 / 非快取 Token 明細
- 速率限制 —5 小時與 7 天視窗,含重置倒計時
- Git —儲存庫名稱、分支、工作區變更統計

系統需求
- Bun >= 1.0.0
安裝
全域安裝(建議)
bun add -g cc-bunline免安裝直接執行
bunx cc-bunline手動下載
curl -o ~/.claude/statusline.mts https://raw.githubusercontent.com/zeta987/cc-bunline/main/statusline.mts設定方式
在 Claude Code 設定檔(~/.claude/settings.json)中加入:
{
"statusLine": {
"type": "command",
"command": "cc-bunline"
}
}或使用 bunx(不需全域安裝):
{
"statusLine": {
"type": "command",
"command": "bunx cc-bunline"
}
}若使用手動下載方式:
{
"statusLine": {
"type": "command",
"command": "bun ~/.claude/statusline.mts"
}
}運作原理
Claude Code 將 JSON 狀態物件透過 stdin 傳入,cc-bunline 解析後將 ANSI 格式化的多行文字輸出到 stdout。不需要設定檔—所有資料都由 Claude Code 提供的 JSON 輸入驅動。
