harness-evolver 3.3.0 → 3.3.1
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/.claude-plugin/plugin.json +1 -1
- package/bin/install.js +8 -13
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "harness-evolver",
|
|
3
3
|
"description": "LangSmith-native autonomous agent optimization — evolves LLM agent code using multi-agent proposers, LangSmith experiments, and git worktrees",
|
|
4
|
-
"version": "3.3.
|
|
4
|
+
"version": "3.3.1",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Raphael Valdetaro"
|
|
7
7
|
},
|
package/bin/install.js
CHANGED
|
@@ -100,24 +100,18 @@ function stepPrompt(content) {
|
|
|
100
100
|
console.log(`${c.cyan(S.stepActive)} ${content}`);
|
|
101
101
|
}
|
|
102
102
|
|
|
103
|
-
// ─── Banner (gradient dark →
|
|
103
|
+
// ─── Banner (green gradient dark → bright) ──────────────────────────────────
|
|
104
104
|
|
|
105
105
|
const BANNER_LINES = [
|
|
106
|
-
"\
|
|
107
|
-
"\
|
|
108
|
-
"\
|
|
109
|
-
"\u2588\u2588\u2554\u2550\u2550\u255D \u255A\u2588\u2588\u2588\u2588\u2554\u255D \u2588\u2588\u2551 \u2588\u2588\u2551\u2588\u2588\u2551 \u255A\u2588\u2588\u2588\u2588\u2554\u255D \u2588\u2588\u2554\u2550\u2550\u255D \u2588\u2588\u2554\u2550\u2550\u2588\u2588\u2557",
|
|
110
|
-
"\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u255A\u2588\u2588\u2554\u255D \u255A\u2588\u2588\u2588\u2588\u2588\u2588\u2554\u255D\u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557 \u255A\u2588\u2588\u2554\u255D \u2588\u2588\u2588\u2588\u2588\u2588\u2588\u2557\u2588\u2588\u2551 \u2588\u2588\u2551",
|
|
111
|
-
"\u255A\u2550\u2550\u2550\u2550\u2550\u2550\u255D \u255A\u2550\u255D \u255A\u2550\u2550\u2550\u2550\u2550\u255D \u255A\u2550\u2550\u2550\u2550\u2550\u2550\u255D \u255A\u2550\u255D \u255A\u2550\u2550\u2550\u2550\u2550\u2550\u255D\u255A\u2550\u255D \u255A\u2550\u255D",
|
|
106
|
+
" \u2566 \u2566\u2554\u2550\u2557\u2566\u2550\u2557\u2554\u2557\u2554\u2554\u2550\u2557\u2554\u2550\u2557\u2554\u2550\u2557 \u2554\u2550\u2557\u2566 \u2566\u2554\u2550\u2557\u2566 \u2566 \u2566\u2554\u2550\u2557\u2566\u2550\u2557",
|
|
107
|
+
" \u2560\u2550\u2563\u2560\u2550\u2563\u2560\u2566\u255D\u2551\u2551\u2551\u2551\u2563 \u255A\u2550\u2557\u255A\u2550\u2557 \u2551\u2563 \u255A\u2557\u2554\u255D\u2551 \u2551\u2551 \u255A\u2557\u2554\u255D\u2551\u2563 \u2560\u2566\u255D",
|
|
108
|
+
" \u2569 \u2569\u2569 \u2569\u2569\u255A\u2550\u255D\u255A\u255D\u255A\u2550\u255D\u255A\u2550\u255D\u255A\u2550\u255D \u255A\u2550\u255D \u255A\u255D \u255A\u2550\u255D\u2569\u2550\u255D \u255A\u255D \u255A\u2550\u255D\u2569\u255A\u2550",
|
|
112
109
|
];
|
|
113
110
|
|
|
114
111
|
const GRADIENT = [
|
|
115
|
-
[
|
|
116
|
-
[
|
|
117
|
-
[
|
|
118
|
-
[160, 160, 160],
|
|
119
|
-
[200, 200, 200],
|
|
120
|
-
[240, 240, 240],
|
|
112
|
+
[0, 100, 40],
|
|
113
|
+
[0, 180, 85],
|
|
114
|
+
[0, 255, 136],
|
|
121
115
|
];
|
|
122
116
|
|
|
123
117
|
function rgb(r, g, b) {
|
|
@@ -130,6 +124,7 @@ function banner() {
|
|
|
130
124
|
const [r, g, b] = GRADIENT[i];
|
|
131
125
|
console.log(`${rgb(r, g, b)}${BANNER_LINES[i]}${reset}`);
|
|
132
126
|
}
|
|
127
|
+
console.log(`${c.dim(` LangSmith-native agent optimization v${VERSION}`)}`);
|
|
133
128
|
}
|
|
134
129
|
|
|
135
130
|
// ─── Utilities ──────────────────────────────────────────────────────────────
|