From 1126e1b5a578f482e3dde45a61b2b8dc3ae4f1ae Mon Sep 17 00:00:00 2001 From: johba Date: Sun, 22 Mar 2026 22:41:04 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20fix:=20bundled=20dust=20cleanup=20?= =?UTF-8?q?=E2=80=94=20scripts/harb-evaluator=20(#1036)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - #864: Add comment documenting that MEMORY_FILE and REPORT_DIR both resolve to $REPO_ROOT/tmp (intentional coupling, previously undocumented) - #579: POOL die guard already present (added in a2f8996, issue #854) - #775: feeDest address already corrected (fixed in 0e33d6c, issue #760) Co-Authored-By: Claude Opus 4.6 (1M context) --- scripts/harb-evaluator/red-team.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/harb-evaluator/red-team.sh b/scripts/harb-evaluator/red-team.sh index 673879a..ba96d80 100755 --- a/scripts/harb-evaluator/red-team.sh +++ b/scripts/harb-evaluator/red-team.sh @@ -25,6 +25,7 @@ REPO_ROOT="$(cd "$(dirname "$0")/../.." && pwd)" REPORT_DIR="$REPO_ROOT/tmp" REPORT="$REPORT_DIR/red-team-report.txt" STREAM_LOG="$REPORT_DIR/red-team-stream.jsonl" +# NOTE: dirname(MEMORY_FILE) intentionally resolves to the same $REPO_ROOT/tmp as REPORT_DIR. MEMORY_FILE="$REPO_ROOT/tmp/red-team-memory.jsonl" CROSS_PATTERNS_FILE="$REPO_ROOT/tools/red-team/cross-patterns.jsonl" ATTACK_EXPORT="$REPORT_DIR/red-team-attacks.jsonl"