claude-evolve 1.3.20 → 1.3.22
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.
- package/README.md +1 -1
- package/bin/claude-evolve-worker +7 -3
- package/package.json +1 -2
- package/screenshot.png +0 -0
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@ claude-evolve is an automated algorithm evolution system that runs continuous ev
|
|
|
8
8
|
|
|
9
9
|
Think of it like **genetic algorithms for code** - it handles the mutations and testing, and runs **indefinitely** until you stop it. The system automatically generates new ideas when it runs out of candidates.
|
|
10
10
|
|
|
11
|
-

|
|
11
|
+

|
|
12
12
|
|
|
13
13
|
### How the Evolution System Works
|
|
14
14
|
|
package/bin/claude-evolve-worker
CHANGED
|
@@ -136,9 +136,13 @@ else
|
|
|
136
136
|
output_file="$FULL_OUTPUT_DIR/evolution_${id}.py"
|
|
137
137
|
fi
|
|
138
138
|
|
|
139
|
-
# Copy parent to output
|
|
140
|
-
|
|
141
|
-
echo "[WORKER-$$]
|
|
139
|
+
# Copy parent to output (skip if destination already exists)
|
|
140
|
+
if [[ -f "$output_file" ]]; then
|
|
141
|
+
echo "[WORKER-$$] ⚠️ Skipping copy - child algorithm already exists: $output_file"
|
|
142
|
+
else
|
|
143
|
+
cp "$parent_file" "$output_file"
|
|
144
|
+
echo "[WORKER-$$] Copied parent to: $output_file"
|
|
145
|
+
fi
|
|
142
146
|
|
|
143
147
|
# Generate mutation (skip for baseline)
|
|
144
148
|
if [[ $id == "000" || $id == "0" || $id == "gen00-000" ]]; then
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-evolve",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.22",
|
|
4
4
|
"bin": {
|
|
5
5
|
"claude-evolve": "./bin/claude-evolve",
|
|
6
6
|
"claude-evolve-main": "./bin/claude-evolve-main",
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
"claude-evolve-config": "./bin/claude-evolve-config"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
|
-
"screenshot.png",
|
|
17
16
|
"bin/",
|
|
18
17
|
"lib/",
|
|
19
18
|
"templates/"
|
package/screenshot.png
DELETED
|
Binary file
|