freedom-intelligence/scripts/railiance-rhythm/run-daily.sh
tegwick 46cfcd7a51 Align FI recurrence with activity-core + rein-aharness (drop workstation cron).
Document the three-layer model, add railiance-rhythm executor install, and
point playbooks at rein-aharness fi-research-brief instead of local crontab.
2026-08-03 17:53:07 +02:00

17 lines
691 B
Bash
Executable file

#!/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]}"