2026-03-20 13:40:09 +00:00
#!/usr/bin/env bash
# =============================================================================
# planner-run.sh — Cron wrapper: direct planner execution via Claude + formula
#
# Runs weekly (or on-demand). Guards against concurrent runs and low memory.
# Creates a tmux session with Claude (opus) reading formulas/run-planner.toml.
# No action issues — the planner is a nervous system component, not work.
#
# The planner plans for ALL projects (harb + disinto) but is itself disinto
# infrastructure — always sources projects/disinto.toml.
# =============================================================================
set -euo pipefail
SCRIPT_DIR = " $( cd " $( dirname " $0 " ) " && pwd ) "
FACTORY_ROOT = " $( dirname " $SCRIPT_DIR " ) "
# Source disinto project config — the planner is disinto infrastructure
export PROJECT_TOML = " $FACTORY_ROOT /projects/disinto.toml "
# shellcheck source=../lib/env.sh
source " $FACTORY_ROOT /lib/env.sh "
# shellcheck source=../lib/agent-session.sh
source " $FACTORY_ROOT /lib/agent-session.sh "
2026-03-20 13:53:33 +00:00
# shellcheck source=../lib/formula-session.sh
source " $FACTORY_ROOT /lib/formula-session.sh "
2026-03-20 13:40:09 +00:00
LOG_FILE = " $SCRIPT_DIR /planner.log "
2026-03-20 17:41:52 +00:00
# shellcheck disable=SC2034 # consumed by run_formula_and_monitor
2026-03-20 13:40:09 +00:00
SESSION_NAME = " planner- ${ PROJECT_NAME } "
PHASE_FILE = " /tmp/planner-session- ${ PROJECT_NAME } .phase "
# shellcheck disable=SC2034 # read by monitor_phase_loop in lib/agent-session.sh
PHASE_POLL_INTERVAL = 15
log( ) { echo " [ $( date -u +%Y-%m-%dT%H:%M:%S) Z] $* " >> " $LOG_FILE " ; }
2026-03-20 13:53:33 +00:00
# ── Guards ────────────────────────────────────────────────────────────────
acquire_cron_lock "/tmp/planner-run.lock"
check_memory 2000
2026-03-20 13:40:09 +00:00
log "--- Planner run start ---"
2026-03-20 13:53:33 +00:00
# ── Load formula + context ───────────────────────────────────────────────
load_formula " $FACTORY_ROOT /formulas/run-planner.toml "
build_context_block VISION.md AGENTS.md RESOURCES.md
2026-03-20 13:40:09 +00:00
# ── Read planner memory ─────────────────────────────────────────────────
MEMORY_BLOCK = ""
MEMORY_FILE = " $FACTORY_ROOT /planner/MEMORY.md "
if [ -f " $MEMORY_FILE " ] ; then
MEMORY_BLOCK = "
### planner/MEMORY.md (persistent memory from prior runs)
$( cat " $MEMORY_FILE " )
"
fi
# ── Build prompt ─────────────────────────────────────────────────────────
2026-03-20 17:41:52 +00:00
build_prompt_footer "
Relabel: curl -sf -H \" Authorization: token \$ CODEBERG_TOKEN\" -X PUT -H 'Content-Type: application/json' '${CODEBERG_API}/issues/{number}/labels' -d '{\"labels\":[LABEL_ID]}'
Comment: curl -sf -H \" Authorization: token \$ CODEBERG_TOKEN\" -X POST -H 'Content-Type: application/json' '${CODEBERG_API}/issues/{number}/comments' -d '{\"body\":\"...\"}'
Close: curl -sf -H \" Authorization: token \$ CODEBERG_TOKEN\" -X PATCH -H 'Content-Type: application/json' '${CODEBERG_API}/issues/{number}' -d '{\"state\":\"closed\"}'
"
# shellcheck disable=SC2034 # consumed by run_formula_and_monitor
2026-03-20 13:40:09 +00:00
PROMPT = " You are the strategic planner for ${ CODEBERG_REPO } . Work through the formula below. You MUST write PHASE:done to ' ${ PHASE_FILE } ' when finished — the orchestrator will time you out if you return to the prompt without signalling.
## Project context
${ CONTEXT_BLOCK } ${ MEMORY_BLOCK }
## Formula
${ FORMULA_CONTENT }
2026-03-20 17:41:52 +00:00
${ PROMPT_FOOTER } "
2026-03-20 13:40:09 +00:00
2026-03-20 17:41:52 +00:00
# ── Run session ──────────────────────────────────────────────────────────
2026-03-20 13:40:09 +00:00
export CLAUDE_MODEL = "opus"
2026-03-20 17:41:52 +00:00
run_formula_and_monitor "planner"