claude-evolve 1.5.8 → 1.5.10

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:])
package/lib/ai-cli.sh CHANGED
@@ -19,7 +19,7 @@ call_ai_model_configured() {
19
19
  case "$model_name" in
20
20
  opus|sonnet)
21
21
  local ai_output
22
- ai_output=$(timeout 180 claude --dangerously-skip-permissions --model "$model_name" -p "$prompt" 2>&1)
22
+ ai_output=$(timeout 300 claude --dangerously-skip-permissions --model "$model_name" -p "$prompt" 2>&1)
23
23
  local ai_exit_code=$?
24
24
  ;;
25
25
  gpt5high)
@@ -50,7 +50,7 @@ call_ai_model_configured() {
50
50
  ;;
51
51
  cursor-sonnet)
52
52
  local ai_output
53
- ai_output=$(timeout 180 cursor-agent sonnet -p "$prompt" 2>&1)
53
+ ai_output=$(timeout 300 cursor-agent sonnet -p "$prompt" 2>&1)
54
54
  local ai_exit_code=$?
55
55
  ;;
56
56
  cursor-opus)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.5.8",
3
+ "version": "1.5.10",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",