claude-evolve 1.0.2 → 1.0.3

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.
@@ -3,7 +3,7 @@
3
3
  set -e
4
4
 
5
5
  # Parse arguments
6
- count=1
6
+ count=20
7
7
  no_ai=false
8
8
 
9
9
  while [[ $# -gt 0 ]]; do
@@ -16,7 +16,7 @@ USAGE:
16
16
  claude-evolve ideate [N] [--no-ai]
17
17
 
18
18
  ARGUMENTS:
19
- N Number of ideas to generate (default: 1, max: 50)
19
+ N Number of ideas to generate (default: 20, max: 50)
20
20
 
21
21
  OPTIONS:
22
22
  --no-ai Use manual entry mode instead of AI generation
@@ -71,8 +71,8 @@ get_next_id() {
71
71
  # Find highest ID and increment (pure shell)
72
72
  local max_id=0
73
73
  while IFS=, read -r id rest; do
74
- if [[ $id =~ ^[0-9]+$ ]] && [[ $id -gt $max_id ]]; then
75
- max_id=$id
74
+ if [[ $id =~ ^[0-9]+$ ]] && (( 10#$id > max_id )); then
75
+ max_id=$((10#$id))
76
76
  fi
77
77
  done < <(tail -n +2 evolution/evolution.csv)
78
78
  echo $((max_id + 1))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-evolve",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "bin": {
5
5
  "claude-evolve": "./bin/claude-evolve",
6
6
  "claude-evolve-main": "./bin/claude-evolve-main",