claude-evolve 1.5.8 → 1.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -269,8 +269,12 @@ class AutoStatus:
|
|
|
269
269
|
print("-" * min(self.display.cols, len(header_fmt)))
|
|
270
270
|
row += 1
|
|
271
271
|
# Sort generations numerically by extracting the number after "gen"
|
|
272
|
+
# Put baseline first, then sort numerically
|
|
272
273
|
def gen_sort_key(gen_str):
|
|
273
274
|
"""Extract numeric value from generation string for sorting."""
|
|
275
|
+
# Baseline goes first (return -1 for sorting)
|
|
276
|
+
if gen_str == "baseline" or gen_str == "gen00":
|
|
277
|
+
return -1
|
|
274
278
|
if gen_str.startswith("gen"):
|
|
275
279
|
try:
|
|
276
280
|
return int(gen_str[3:])
|