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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
|
"""Terminal output: colors, table and reading a conversation."""
import os
import re
import shutil
import subprocess
import sys
import textwrap
from .sessions import parse_ts
MES = ["ene", "feb", "mar", "abr", "may", "jun",
"jul", "ago", "sep", "oct", "nov", "dic"]
ANSI_RE = re.compile(r"\x1b\[[0-9;]*m")
# Minimum terminal widths to show each optional column.
MIN_COLS_PATH = 92
MIN_COLS_DUR = 74
class Style:
"""ANSI codes, or empty strings if the output is not a terminal."""
CODES = {
"reset": "0", "bold": "1", "dim": "2", "italic": "3",
"amber": "38;5;179", "copper": "38;5;173", "grey": "38;5;245",
"faint": "38;5;240", "ink": "38;5;252", "blue": "38;5;110",
# age bar, from bright amber to grey
"age0": "38;5;214", "age1": "38;5;179",
"age2": "38;5;137", "age3": "38;5;239",
}
def __init__(self, enabled):
self.on = enabled
def __getattr__(self, name):
try:
code = self.CODES[name]
except KeyError:
raise AttributeError(name) from None
return f"\x1b[{code}m" if self.on else ""
@classmethod
def from_stream(cls, stream, no_color=False):
"""Color only with a terminal, when not disabled and without NO_COLOR."""
return cls(bool(getattr(stream, "isatty", lambda: False)())
and not no_color
and not os.environ.get("NO_COLOR"))
# ──────────────────────────────── formatting ─────────────────────────────
def visible_len(s):
return len(ANSI_RE.sub("", s))
def clip(s, width):
"""Truncates to `width` columns, with … if it does not fit."""
s = s.replace("\n", " ")
if len(s) <= width:
return s
return s[: max(0, width - 1)] + "…"
def fmt_date(iso):
d = parse_ts(iso).astimezone()
return f"{d.day:02d} {MES[d.month - 1]}"
def fmt_time(iso):
return parse_ts(iso).astimezone().strftime("%H:%M")
def fmt_rel(iso, now):
n = (now - parse_ts(iso)).total_seconds() / 86400
if n < 1:
return "hoy"
if n < 2:
return "ayer"
if n < 7:
return f"hace {int(n)}d"
if n < 30:
return f"hace {int(n // 7)}sem"
return f"hace {int(n // 30)}mes"
def plural(n, singular, plural_):
return f"{n} {singular if n == 1 else plural_}"
def fmt_dur(m):
if m is None:
return "—"
if m < 1:
return "<1m"
if m < 60:
return f"{m}m"
h, r = divmod(m, 60)
return f"{h}h{r:02d}" if r else f"{h}h"
def fmt_size(kb):
return f"{kb / 1024:.1f} MB" if kb >= 1024 else f"{kb:.1f} KB"
def stripe(iso, now, st):
"""Age bar to the left of each row."""
if not st.on:
return "|"
n = (now - parse_ts(iso)).total_seconds() / 86400
color = st.age0 if n < 2 else st.age1 if n < 7 else st.age2 if n < 14 else st.age3
return f"{color}▌{st.reset}"
# ──────────────────────────────── tabla ────────────────────────────────
def print_table(sessions, st, now, out, width=None):
width = width or shutil.get_terminal_size((100, 24)).columns
show_path = width >= MIN_COLS_PATH
show_dur = width >= MIN_COLS_DUR
# fixed columns: idx(3) bar(1) date(6) rel(9) msgs(4) dur(6) id(8) + gaps
fixed = 3 + 1 + 6 + 9 + 4 + (6 if show_dur else 0) + 8
gaps = 7 if show_dur else 6
flex = max(24, width - fixed - gaps)
w_title = int(flex * 0.58) if show_path else flex
w_path = flex - w_title - 1 if show_path else 0
head = [
f"{'#':>3}", " ",
f"{st.faint}{'SESIÓN':<{w_title}}{st.reset}",
]
if show_path:
head.append(f"{st.faint}{'RUTA':<{w_path}}{st.reset}")
head.append(f"{st.faint}{'FECHA':<6} {'CUÁNDO':<9}{st.reset}")
head.append(f"{st.faint}{'MSG':>4}{st.reset}")
if show_dur:
head.append(f"{st.faint}{'DUR':>6}{st.reset}")
head.append(f"{st.faint}{'ID':<8}{st.reset}")
print(" ".join(head), file=out)
for i, s in enumerate(sessions, 1):
title = s["t"] or "sesión abierta sin mensajes"
tcolor = st.dim + st.italic if s["e"] else (st.ink if s["ai"] else "")
tags = ""
if s["e"]:
tags = f" {st.faint}[vacía]{st.reset}"
elif s["n"]:
tags = f" {st.faint}[auto]{st.reset}"
avail = w_title - visible_len(tags)
cells = [
f"{st.faint}{i:>3}{st.reset}",
stripe(s["l"], now, st),
f"{tcolor}{clip(title, avail):<{avail}}{st.reset}{tags}",
]
if show_path:
cells.append(f"{st.grey}{clip(s['p'], w_path):<{w_path}}{st.reset}")
cells.append(
f"{fmt_date(s['l']):<6} {st.faint}{fmt_rel(s['l'], now):<9}{st.reset}"
)
cells.append(f"{s['u'] or '—':>4}")
if show_dur:
cells.append(f"{st.grey}{fmt_dur(s['d']):>6}{st.reset}")
cells.append(f"{st.faint}{s['id'][:8]}{st.reset}")
print(" ".join(cells), file=out)
# ──────────────────────────── one conversation ────────────────────────────
def strip_md(text):
"""Minimal markdown for the terminal: removes ** and heading markers."""
text = re.sub(r"^#{1,6}\s+", "", text, flags=re.M)
return re.sub(r"\*\*([^*\n]+)\*\*", r"\1", text)
def render_block(text, st, width, code_color):
"""Formats a message honouring code fences."""
lines = []
in_code = False
for raw in text.split("\n"):
if raw.lstrip().startswith("```"):
in_code = not in_code
continue
if in_code:
lines.append(f" {code_color}{raw}{st.reset}")
elif not raw.strip():
lines.append("")
else:
wrapped = textwrap.wrap(
strip_md(raw), width=width,
break_long_words=False, break_on_hyphens=False,
)
lines.extend(" " + w for w in (wrapped or [""]))
return lines
def print_chat(s, st, out, show_tools=True, width=None):
width = min(width or shutil.get_terminal_size((100, 24)).columns, 100)
body = width - 2
print(f"{st.amber}{st.bold}{s['t'] or 'Sesión sin título'}{st.reset}", file=out)
meta = (f"{s['p']} · {fmt_date(s['l'])} {fmt_time(s['l'])} · "
f"{s['u']} tuyos / {s['a']} de Claude · {fmt_dur(s['d'])}")
print(f"{st.faint}{meta}{st.reset}", file=out)
print(f"{st.faint}{resume_cmd(s)}{st.reset}", file=out)
print(f"{st.faint}{'─' * min(width, 80)}{st.reset}\n", file=out)
if not s["c"]:
print(f"{st.dim}Esta sesión no tiene mensajes.{st.reset}", file=out)
return
first = True
for m in s["c"]:
if m["r"] == "t":
if show_tools:
print(f" {st.faint}⚒ {clip(m['x'], body - 4)}{st.reset}", file=out)
first = False
continue
# The separator goes before each turn: that way a batch of tool calls
# stays attached to the message that launched it and apart from the next one.
if not first:
print(file=out)
first = False
who = "vos" if m["r"] == "u" else "claude"
color = st.amber if m["r"] == "u" else st.blue
print(f"{color}{who}{
|