Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions report.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,12 @@ FINDINGS="$RUN_DIR/findings.ndjson"

[ -f "$MANIFEST" ] || { echo "report: no manifest at $MANIFEST" >&2; exit 1; }

# Load honey.conf so persisted settings (verdict floor, trusted patterns,
# HONEY_BASELINE) apply when report.sh is run standalone — the Claude routine
# invokes it as a separate process from daily-cycle.sh, so it can't rely on an
# inherited environment. env var > honey.conf > built-in default.
# shellcheck source=lib/load-config.sh
. "$HONEY/lib/load-config.sh"
# shellcheck source=lib/baseline.sh
. "$HONEY/lib/baseline.sh"

Expand Down
Loading