binky-control/scripts/railiance-rhythm/run-review.sh
tegwick 88a4886ea7
Some checks failed
Work Records / validate (push) Has been cancelled
BINKY-WP-0006: retarget Railiance rhythm to llm-connect/OpenRouter
Reject Claude Code (or any coding agent) on railiance01. Mail-scan stays
deterministic; triage/briefs use llm-connect HTTP → structured JSON →
deterministic apply. Document in integrations/railiance-llm-rhythm.md and
rewrite WP-0006 tasks accordingly; timers no longer require_claude.
2026-07-22 00:00:04 +02:00

16 lines
531 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_llm_connect
log "START review-prep (llm-connect path)"
if agent-harness brief-weekly --help >/dev/null 2>&1; then
agent-harness brief-weekly --target-repo "${BINKY_REPO}" \
2>&1 | tee -a "${LOG_DIR}/review.log"
else
log "ERROR: brief-weekly not implemented yet (BINKY-WP-0006-T05)"
exit 3
fi
log "END review-prep rc=${PIPESTATUS[0]}"