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.
This commit is contained in:
tegwick 2026-08-03 17:53:07 +02:00
parent 70cbfe0c6c
commit 46cfcd7a51
10 changed files with 248 additions and 100 deletions

View file

@ -0,0 +1,17 @@
#!/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]}"