2026-03-20 13:40:09 +00:00
#!/usr/bin/env bash
# =============================================================================
# planner-run.sh — Cron wrapper: direct planner execution via Claude + formula
#
2026-03-20 17:21:33 +00:00
# Runs daily (or on-demand). Guards against concurrent runs and low memory.
2026-03-20 13:40:09 +00:00
# Creates a tmux session with Claude (opus) reading formulas/run-planner.toml.
# No action issues — the planner is a nervous system component, not work.
#
2026-03-20 17:21:33 +00:00
# Usage:
# planner-run.sh [projects/disinto.toml] # project config (default: disinto)
2026-03-20 13:40:09 +00:00
# =============================================================================
set -euo pipefail
SCRIPT_DIR = " $( cd " $( dirname " $0 " ) " && pwd ) "
FACTORY_ROOT = " $( dirname " $SCRIPT_DIR " ) "
2026-03-20 17:21:33 +00:00
# Accept project config from argument; default to disinto (planner is disinto infrastructure)
export PROJECT_TOML = " ${ 1 :- $FACTORY_ROOT /projects/disinto.toml } "
2026-03-20 13:40:09 +00:00
# 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-23 21:46:59 +00:00
# shellcheck source=../lib/guard.sh
source " $FACTORY_ROOT /lib/guard.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
2026-03-20 20:12:45 +00:00
SCRATCH_FILE = " /tmp/planner- ${ PROJECT_NAME } -scratch.md "
2026-03-20 13:40:09 +00:00
log( ) { echo " [ $( date -u +%Y-%m-%dT%H:%M:%S) Z] $* " >> " $LOG_FILE " ; }
2026-03-20 13:53:33 +00:00
# ── Guards ────────────────────────────────────────────────────────────────
2026-03-23 21:46:59 +00:00
check_active planner
2026-03-20 13:53:33 +00:00
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 "
2026-03-21 18:28:38 +00:00
build_context_block VISION.md AGENTS.md RESOURCES.md planner/prerequisite-tree.md
2026-03-20 13:40:09 +00:00
# ── Read planner memory ─────────────────────────────────────────────────
MEMORY_BLOCK = ""
2026-03-22 10:00:36 +00:00
MEMORY_FILE = " $PROJECT_REPO_ROOT /planner/MEMORY.md "
2026-03-20 13:40:09 +00:00
if [ -f " $MEMORY_FILE " ] ; then
MEMORY_BLOCK = "
### planner/MEMORY.md (persistent memory from prior runs)
$( cat " $MEMORY_FILE " )
"
fi
2026-03-21 08:57:06 +00:00
# ── Read recent journal files ──────────────────────────────────────────
JOURNAL_BLOCK = ""
2026-03-22 10:00:36 +00:00
JOURNAL_DIR = " $PROJECT_REPO_ROOT /planner/journal "
2026-03-21 08:57:06 +00:00
if [ -d " $JOURNAL_DIR " ] ; then
# Load last 5 journal files (most recent first) for run history context
JOURNAL_FILES = $( find " $JOURNAL_DIR " -name '*.md' -type f | sort -r | head -5)
if [ -n " $JOURNAL_FILES " ] ; then
JOURNAL_BLOCK = "
### Recent journal entries (planner/journal/)
"
while IFS = read -r jf; do
JOURNAL_BLOCK = " ${ JOURNAL_BLOCK }
#### $(basename "$jf")
$( cat " $jf " )
"
done <<< " $JOURNAL_FILES "
fi
fi
2026-03-20 20:12:45 +00:00
# ── Read scratch file (compaction survival) ───────────────────────────────
SCRATCH_CONTEXT = $( read_scratch_context " $SCRATCH_FILE " )
SCRATCH_INSTRUCTION = $( build_scratch_instruction " $SCRATCH_FILE " )
2026-03-20 13:40:09 +00:00
# ── Build prompt ─────────────────────────────────────────────────────────
2026-03-20 17:41:52 +00:00
build_prompt_footer "
fix: Replace Codeberg dependency with local Forgejo instance (#611)
- Add setup_forge() to bin/disinto: provisions Forgejo via Docker,
creates admin + bot users (dev-bot, review-bot), generates API
tokens, creates repo, and pushes code — all automated
- Rename env vars: CODEBERG_TOKEN→FORGE_TOKEN, REVIEW_BOT_TOKEN→
FORGE_REVIEW_TOKEN, CODEBERG_REPO→FORGE_REPO, CODEBERG_API→
FORGE_API, CODEBERG_WEB→FORGE_WEB, CODEBERG_BOT_USERNAMES→
FORGE_BOT_USERNAMES (with backwards-compat fallbacks)
- Rename API helpers: codeberg_api()→forge_api(), codeberg_api_all()
→forge_api_all() (with compat aliases)
- Add forge_url field to project TOML; load-project.sh derives
FORGE_API/FORGE_WEB from forge_url + repo
- Update parse_repo_slug() to accept any host URL, not just codeberg
- Forgejo data stored under ~/.disinto/forgejo/ (not in factory repo)
- Update all 58 files: agent scripts, formulas, docs, site HTML
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-23 16:57:12 +00:00
Relabel: curl -sf -H \" Authorization: token \$ { FORGE_TOKEN} \" -X PUT -H 'Content-Type: application/json' '${FORGE_API}/issues/{number}/labels' -d '{\"labels\":[LABEL_ID]}'
Comment: curl -sf -H \" Authorization: token \$ { FORGE_TOKEN} \" -X POST -H 'Content-Type: application/json' '${FORGE_API}/issues/{number}/comments' -d '{\"body\":\"...\"}'
Close: curl -sf -H \" Authorization: token \$ { FORGE_TOKEN} \" -X PATCH -H 'Content-Type: application/json' '${FORGE_API}/issues/{number}' -d '{\"state\":\"closed\"}'
2026-03-20 17:41:52 +00:00
"
# shellcheck disable=SC2034 # consumed by run_formula_and_monitor
fix: Replace Codeberg dependency with local Forgejo instance (#611)
- Add setup_forge() to bin/disinto: provisions Forgejo via Docker,
creates admin + bot users (dev-bot, review-bot), generates API
tokens, creates repo, and pushes code — all automated
- Rename env vars: CODEBERG_TOKEN→FORGE_TOKEN, REVIEW_BOT_TOKEN→
FORGE_REVIEW_TOKEN, CODEBERG_REPO→FORGE_REPO, CODEBERG_API→
FORGE_API, CODEBERG_WEB→FORGE_WEB, CODEBERG_BOT_USERNAMES→
FORGE_BOT_USERNAMES (with backwards-compat fallbacks)
- Rename API helpers: codeberg_api()→forge_api(), codeberg_api_all()
→forge_api_all() (with compat aliases)
- Add forge_url field to project TOML; load-project.sh derives
FORGE_API/FORGE_WEB from forge_url + repo
- Update parse_repo_slug() to accept any host URL, not just codeberg
- Forgejo data stored under ~/.disinto/forgejo/ (not in factory repo)
- Update all 58 files: agent scripts, formulas, docs, site HTML
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-23 16:57:12 +00:00
PROMPT = " You are the strategic planner for ${ FORGE_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.
2026-03-20 13:40:09 +00:00
## Project context
2026-03-21 08:57:06 +00:00
${ CONTEXT_BLOCK } ${ MEMORY_BLOCK } ${ JOURNAL_BLOCK }
2026-03-20 20:12:45 +00:00
${ SCRATCH_CONTEXT : + ${ SCRATCH_CONTEXT }
}
2026-03-20 13:40:09 +00:00
## Formula
${ FORMULA_CONTENT }
2026-03-20 20:12:45 +00:00
${ SCRATCH_INSTRUCTION }
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"
2026-03-20 20:12:45 +00:00
# ── Cleanup scratch file on normal exit ──────────────────────────────────
2026-03-20 20:58:32 +00:00
# FINAL_PHASE already set by run_formula_and_monitor
if [ " ${ FINAL_PHASE :- } " = "PHASE:done" ] ; then
2026-03-20 20:12:45 +00:00
rm -f " $SCRATCH_FILE "
fi