18 lines
691 B
Bash
18 lines
691 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Weekday 07:35 Europe/Berlin — FI research brief executor (rein-aharness).
|
||
|
|
#
|
||
|
|
# Cadence authority: activity-core definition fi-daily-research-brief
|
||
|
|
# (Temporal 07:30 Europe/Berlin, fi_brief_status due check, activity_task_spawn).
|
||
|
|
# This timer is the host executor, 5 minutes after the schedule fire window.
|
||
|
|
set -euo pipefail
|
||
|
|
# shellcheck disable=SC1091
|
||
|
|
source "$(dirname "$0")/run-common.sh"
|
||
|
|
require_repo
|
||
|
|
ensure_git_identity
|
||
|
|
require_harness
|
||
|
|
require_llm_connect
|
||
|
|
log "START fi-research-brief (rein-aharness / llm-connect)"
|
||
|
|
rein-aharness fi-research-brief --target-repo "${FI_REPO}" \
|
||
|
|
2>&1 | tee -a "${LOG_DIR}/daily.log"
|
||
|
|
log "END fi-research-brief rc=${PIPESTATUS[0]}"
|