@walwal-harness/cli 4.0.0-alpha.8 → 4.0.0-alpha.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walwal-harness/cli",
|
|
3
|
-
"version": "4.0.0-alpha.
|
|
3
|
+
"version": "4.0.0-alpha.9",
|
|
4
4
|
"description": "Production harness for AI agent engineering — Planner, Generator(BE/FE), Evaluator(Func/Visual), optional Brainstormer (requirements refinement). Supports React and Flutter FE stacks.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"walwal-harness": "bin/init.js"
|
|
@@ -280,7 +280,11 @@ while true; do
|
|
|
280
280
|
gen_prompt=$(build_gen_prompt "$feature_id" "$attempt" "$eval_feedback")
|
|
281
281
|
|
|
282
282
|
gen_start=$(date +%s)
|
|
283
|
-
|
|
283
|
+
log "${DIM} claude -p --dangerously-skip-permissions --model ${GEN_MODEL}${RESET}"
|
|
284
|
+
gen_output=$(cd "$PROJECT_ROOT" && claude -p "$gen_prompt" \
|
|
285
|
+
--dangerously-skip-permissions \
|
|
286
|
+
--model "$GEN_MODEL" \
|
|
287
|
+
--output-format text 2>&1 | tee /dev/stderr) 2>&1 || true
|
|
284
288
|
gen_elapsed=$(( $(date +%s) - gen_start ))
|
|
285
289
|
|
|
286
290
|
files_changed=$(cd "$PROJECT_ROOT" && git diff --name-only 2>/dev/null | wc -l | tr -d ' ')
|
|
@@ -308,7 +312,11 @@ while true; do
|
|
|
308
312
|
eval_prompt=$(build_eval_prompt "$feature_id")
|
|
309
313
|
|
|
310
314
|
eval_start=$(date +%s)
|
|
311
|
-
|
|
315
|
+
log "${DIM} claude -p --dangerously-skip-permissions --model ${EVAL_MODEL}${RESET}"
|
|
316
|
+
eval_output=$(cd "$PROJECT_ROOT" && claude -p "$eval_prompt" \
|
|
317
|
+
--dangerously-skip-permissions \
|
|
318
|
+
--model "$EVAL_MODEL" \
|
|
319
|
+
--output-format text 2>&1 | tee /dev/stderr) 2>&1 || true
|
|
312
320
|
eval_elapsed=$(( $(date +%s) - eval_start ))
|
|
313
321
|
|
|
314
322
|
# Parse result
|