1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
|
package tmux
import (
"fmt"
"os"
"os/exec"
"strconv"
"strings"
"time"
"codeberg.org/snonux/hexai/internal/textutil"
)
// baseFGToken is a placeholder inserted by status formatters wherever the
// base foreground color should be restored. The theming layer (applyTheme)
// replaces this token with a tmux color sequence matching the active theme's
// foreground, which fixes readability when a theme sets a non-default fg.
const (
baseFGToken = "\x1EHEXAI_BASE_FG\x1E"
arrowUpToken = "\x1EHEXAI_ARROW_UP\x1E"
arrowDownToken = "\x1EHEXAI_ARROW_DOWN\x1E"
)
// Enabled reports whether tmux status updates are enabled via env (default: on).
func Enabled() bool {
v := strings.TrimSpace(os.Getenv("HEXAI_TMUX_STATUS"))
if v == "" {
return true
}
v = strings.ToLower(v)
return v == "1" || v == "true" || v == "yes" || v == "on"
}
// SetUserOption sets a global tmux user option like @hexai_status to value.
func SetUserOption(key, value string) error {
if !Enabled() || !HasBinary() || !InSession() {
return nil
}
k := strings.TrimPrefix(strings.TrimSpace(key), "@")
if k == "" {
return nil
}
// Use set-option -g so it appears for all windows
return exec.Command("tmux", "set-option", "-g", "@"+k, value).Run()
}
// SetStatus is a convenience for setting @hexai_status.
func SetStatus(value string) error { return SetUserOption("hexai_status", applyTheme(value)) }
// FormatLLMStatsStatus builds a compact tmux status string for LLM heartbeats.
// Example: "LLM:gpt-4.1 5r 0.8rpm in12k out34k"
func FormatLLMStatsStatus(model string, reqs int64, rpm float64, inBytes, outBytes int64) string {
return fmt.Sprintf("LLM:%s %dr %.1frpm in%s out%s", model, reqs, rpm, textutil.HumanBytes(inBytes), textutil.HumanBytes(outBytes))
}
// FormatLLMStatsStatusColored is like FormatLLMStatsStatus but includes provider and
// tmux color segments for readability. Uses up/down arrows for bytes.
// Example (with colors): "LLM:openai:gpt-4.1 ↑12k ↓34k 0.8rpm 5r"
func FormatLLMStatsStatusColored(provider, model string, reqs int64, rpm float64, inBytes, outBytes int64) string {
in := textutil.HumanBytes(inBytes)
out := textutil.HumanBytes(outBytes)
// Keep it compact; colorize prefix and arrows; use fg resets so a themed bg can persist.
// Arrows use theme-aware styles; bytes immediately switch to base fg for contrast.
return fmt.Sprintf(
"%sLLM:%s:%s %s↑%s%s %s↓%s%s %.1frpm %dr",
baseFGToken, provider, model, arrowUpToken, baseFGToken, in, arrowDownToken, baseFGToken, out, rpm, reqs,
)
}
// FormatGlobalStatusColored renders a compact global stats heartbeat with an optional
// scoped provider:model tail. The window indicator (e.g., Σ@1h) should be composed
// by the caller if needed; this function focuses on numbers and labels.
// Example: "Σ ↑120k ↓340k 4.2rpm | openai:gpt-4.1 3.1rpm 80r"
func FormatGlobalStatusColored(globalReqs int64, globalRPM float64, globalIn, globalOut int64, scopeProvider, scopeModel string, scopeRPM float64, scopeReqs int64, window time.Duration) string {
gin := textutil.HumanBytes(globalIn)
gout := textutil.HumanBytes(globalOut)
head := fmt.Sprintf("%sΣ@%s %s↑%s%s %s↓%s%s %.1frpm", baseFGToken, humanWindow(window), arrowUpToken, baseFGToken, gin, arrowDownToken, baseFGToken, gout, globalRPM)
// Narrow modes: only show Σ head
if narrowEnabled() || strings.TrimSpace(scopeProvider) == "" || strings.TrimSpace(scopeModel) == "" {
return head
}
tail := fmt.Sprintf(" | %s:%s %.1frpm %dr", scopeProvider, scopeModel, scopeRPM, scopeReqs)
// Respect max length when configured: drop tail if it would overflow
if ml := maxStatusLen(); ml > 0 {
if len(head) <= ml && len(head)+len(tail) > ml {
return head
}
if len(head) > ml {
return truncateStatus(head, ml)
}
}
return head + tail
}
func humanWindow(d time.Duration) string {
if d <= 0 {
return "?"
}
mins := int(d.Minutes())
if mins%60 == 0 {
return fmt.Sprintf("%dh", mins/60)
}
if mins >= 60 {
return fmt.Sprintf("%dm", mins)
}
return fmt.Sprintf("%dm", mins)
}
// narrowEnabled returns true when HEXAI_TMUX_STATUS_NARROW is truthy (1/true/yes/on).
func narrowEnabled() bool {
v := strings.ToLower(strings.TrimSpace(os.Getenv("HEXAI_TMUX_STATUS_NARROW")))
if v == "" {
return false
}
switch v {
case "1", "true", "yes", "on":
return true
default:
return false
}
}
// maxStatusLen returns HEXAI_TMUX_STATUS_MAXLEN parsed as int; 0 disables.
func maxStatusLen() int {
v := strings.TrimSpace(os.Getenv("HEXAI_TMUX_STATUS_MAXLEN"))
if v == "" {
return 0
}
n, err := strconv.Atoi(v)
if err != nil || n <= 0 {
return 0
}
return n
}
func truncateStatus(s string, n int) string {
if n <= 0 {
return ""
}
if len(s) <= n {
return s
}
if n <= 1 {
return s[:n]
}
return s[:n-1] + "…"
}
// FormatLLMStartStatus renders a short colored heartbeat at start/initialize time.
// Example: "LLM:openai:gpt-4.1 ⏳"
func FormatLLMStartStatus(provider, model string) string {
return fmt.Sprintf("%sLLM:%s:%s #[fg=colour11]⏳%s", baseFGToken, provider, model, baseFGToken)
}
// applyTheme wraps the status string with a user-selected tmux style if requested.
// Set HEXAI_TMUX_STATUS_THEME=white-on-purple to get white-on-purple background.
func applyTheme(s string) string {
theme := strings.ToLower(strings.TrimSpace(os.Getenv("HEXAI_TMUX_STATUS_THEME")))
// Allow explicit fg/bg override
fg := strings.TrimSpace(os.Getenv("HEXAI_TMUX_STATUS_FG"))
bg := strings.TrimSpace(os.Getenv("HEXAI_TMUX_STATUS_BG"))
// Determine base foreground and background from env or theme presets
baseFG := ""
wrap := false
if fg != "" || bg != "" { // explicit override path
wrap = true
if fg == "" {
baseFG = "default"
} else {
baseFG = fg
}
// bg used as provided (may be empty)
} else {
switch theme {
case "white-on-purple", "purple", "magenta", "white-on-magenta":
baseFG, bg, wrap = "white", "magenta", true
case "black-on-yellow", "yellow", "black-on-gold":
baseFG, bg, wrap = "black", "yellow", true
case "white-on-blue", "blue", "white-on-navy":
baseFG, bg, wrap = "white", "blue", true
}
if baseFG == "" { // no theme selected
baseFG = "default"
}
}
// Theme-aware arrow styles
upStyle, downStyle := "#[fg=colour3]", "#[fg=colour2]" // defaults: yellow up, green down
if fg != "" || bg != "" { // explicit override path: match arrows to base fg, bold for visibility
upStyle = "#[bold,fg=" + baseFG + "]"
downStyle = upStyle
} else {
switch theme {
case "white-on-purple", "purple", "magenta", "white-on-magenta":
upStyle, downStyle = "#[bold,fg=black]", "#[bold,fg=black]"
case "black-on-yellow", "yellow", "black-on-gold":
upStyle, downStyle = "#[bold,fg=black]", "#[bold,fg=black]"
case "white-on-blue", "blue", "white-on-navy":
upStyle, downStyle = "#[bold,fg=white]", "#[bold,fg=white]"
}
}
// Replace base-foreground and arrow placeholders with selected styles
if strings.Contains(s, baseFGToken) {
s = strings.ReplaceAll(s, baseFGToken, "#[fg="+baseFG+"]")
}
if strings.Contains(s, arrowUpToken) {
s = strings.ReplaceAll(s, arrowUpToken, upStyle)
}
if strings.Contains(s, arrowDownToken) {
s = strings.ReplaceAll(s, arrowDownToken, downStyle)
}
if !wrap {
return s
}
// Wrap with base fg and optional bg, then reset at the end
prefix := "#[fg=" + baseFG
if bg != "" {
prefix += ",bg=" + bg
}
prefix += "]"
return prefix + s + "#[fg=default,bg=default]"
}
|