13 lines
409 B
Bash
13 lines
409 B
Bash
|
|
#!/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
|
||
|
|
require_claude
|
||
|
|
log "START daily-rhythm"
|
||
|
|
agent-harness run \
|
||
|
|
--task-file "${BINKY_REPO}/integrations/harness-tasks/daily-rhythm.json" \
|
||
|
|
2>&1 | tee -a "${LOG_DIR}/daily.log"
|
||
|
|
log "END daily-rhythm rc=${PIPESTATUS[0]}"
|