All checks were successful
Work Records / validate (push) Successful in 17s
Use agent-harness brief-daily (llm-connect) for Railiance daily rhythm; document T05 progress. Live brief generated on railiance01.
12 lines
407 B
Bash
Executable file
12 lines
407 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# Weekday 08:23 Europe/Berlin — Binky daily rhythm via agent-harness.
|
|
set -euo pipefail
|
|
# shellcheck disable=SC1091
|
|
source "$(dirname "$0")/run-common.sh"
|
|
require_repo
|
|
ensure_git_identity
|
|
require_llm_connect
|
|
log "START brief-daily (llm-connect)"
|
|
agent-harness brief-daily --target-repo "${BINKY_REPO}" \
|
|
2>&1 | tee -a "${LOG_DIR}/daily.log"
|
|
log "END brief-daily rc=${PIPESTATUS[0]}"
|