Move graph report generation into build_graph_section() in lib/formula-session.sh. Both planner-run.sh and predictor-run.sh now call the shared helper instead of duplicating the same 11 lines. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
117 lines
5.4 KiB
Bash
Executable file
117 lines
5.4 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# =============================================================================
|
|
# planner-run.sh — Cron wrapper: direct planner execution via Claude + formula
|
|
#
|
|
# Runs daily (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.
|
|
#
|
|
# Usage:
|
|
# planner-run.sh [projects/disinto.toml] # project config (default: disinto)
|
|
# =============================================================================
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
FACTORY_ROOT="$(dirname "$SCRIPT_DIR")"
|
|
|
|
# Accept project config from argument; default to disinto (planner is disinto infrastructure)
|
|
export PROJECT_TOML="${1:-$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"
|
|
# shellcheck source=../lib/formula-session.sh
|
|
source "$FACTORY_ROOT/lib/formula-session.sh"
|
|
# shellcheck source=../lib/guard.sh
|
|
source "$FACTORY_ROOT/lib/guard.sh"
|
|
|
|
LOG_FILE="$SCRIPT_DIR/planner.log"
|
|
# shellcheck disable=SC2034 # consumed by run_formula_and_monitor
|
|
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
|
|
|
|
SCRATCH_FILE="/tmp/planner-${PROJECT_NAME}-scratch.md"
|
|
|
|
log() { echo "[$(date -u +%Y-%m-%dT%H:%M:%S)Z] $*" >> "$LOG_FILE"; }
|
|
|
|
# ── Guards ────────────────────────────────────────────────────────────────
|
|
check_active planner
|
|
acquire_cron_lock "/tmp/planner-run.lock"
|
|
check_memory 2000
|
|
|
|
log "--- Planner run start ---"
|
|
|
|
# ── Load formula + context ───────────────────────────────────────────────
|
|
load_formula "$FACTORY_ROOT/formulas/run-planner.toml"
|
|
build_context_block VISION.md AGENTS.md RESOURCES.md planner/prerequisite-tree.md
|
|
|
|
# ── Build structural analysis graph ──────────────────────────────────────
|
|
build_graph_section
|
|
|
|
# ── Read planner memory ─────────────────────────────────────────────────
|
|
MEMORY_BLOCK=""
|
|
MEMORY_FILE="$PROJECT_REPO_ROOT/planner/MEMORY.md"
|
|
if [ -f "$MEMORY_FILE" ]; then
|
|
MEMORY_BLOCK="
|
|
### planner/MEMORY.md (persistent memory from prior runs)
|
|
$(cat "$MEMORY_FILE")
|
|
"
|
|
fi
|
|
|
|
# ── Read recent journal files ──────────────────────────────────────────
|
|
JOURNAL_BLOCK=""
|
|
JOURNAL_DIR="$PROJECT_REPO_ROOT/planner/journal"
|
|
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
|
|
|
|
# ── Read scratch file (compaction survival) ───────────────────────────────
|
|
SCRATCH_CONTEXT=$(read_scratch_context "$SCRATCH_FILE")
|
|
SCRATCH_INSTRUCTION=$(build_scratch_instruction "$SCRATCH_FILE")
|
|
|
|
# ── Build prompt ─────────────────────────────────────────────────────────
|
|
build_prompt_footer "
|
|
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\"}'
|
|
"
|
|
|
|
# shellcheck disable=SC2034 # consumed by run_formula_and_monitor
|
|
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.
|
|
|
|
## Project context
|
|
${CONTEXT_BLOCK}${MEMORY_BLOCK}${JOURNAL_BLOCK}
|
|
${GRAPH_SECTION}
|
|
${SCRATCH_CONTEXT:+${SCRATCH_CONTEXT}
|
|
}
|
|
## Formula
|
|
${FORMULA_CONTENT}
|
|
|
|
${SCRATCH_INSTRUCTION}
|
|
|
|
${PROMPT_FOOTER}"
|
|
|
|
# ── Run session ──────────────────────────────────────────────────────────
|
|
export CLAUDE_MODEL="opus"
|
|
run_formula_and_monitor "planner"
|
|
|
|
# ── Cleanup scratch file on normal exit ──────────────────────────────────
|
|
# FINAL_PHASE already set by run_formula_and_monitor
|
|
if [ "${FINAL_PHASE:-}" = "PHASE:done" ]; then
|
|
rm -f "$SCRATCH_FILE"
|
|
fi
|