Some checks failed
Work Records / validate (push) Has been cancelled
Complete T06 cutover: remove binky rhythm bridge crontab, install scripts/railiance-rhythm systemd user timers on railiance01 (Europe/Berlin), document residual continuous-intake gaps as BINKY-WP-0006. Three completion event types verified (daily_brief, mail_intake on Railiance, weekly_review). DEC-2026-003 marked resolved/executed.
12 lines
396 B
Bash
Executable file
12 lines
396 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Friday 16:43 Europe/Berlin — weekly founder review prep.
|
|
set -euo pipefail
|
|
# shellcheck disable=SC1091
|
|
source "$(dirname "$0")/run-common.sh"
|
|
require_repo
|
|
require_claude
|
|
log "START review-prep"
|
|
agent-harness run \
|
|
--task-file "${BINKY_REPO}/integrations/harness-tasks/review-prep.json" \
|
|
2>&1 | tee -a "${LOG_DIR}/review.log"
|
|
log "END review-prep rc=${PIPESTATUS[0]}"
|