2026-03-20 17:29:49 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
# =============================================================================
|
2026-04-10 08:54:11 +00:00
|
|
|
# predictor-run.sh — Polling-loop wrapper: predictor execution via SDK + formula
|
2026-03-20 17:29:49 +00:00
|
|
|
#
|
fix: Migrate planner, predictor, supervisor to SDK (#6)
Replace tmux-based run_formula_and_monitor() with synchronous agent_run()
from lib/agent-sdk.sh, matching the pattern established in gardener-run.sh.
Key changes per agent:
- Drop agent-session.sh, use agent-sdk.sh (SID_FILE, LOGFILE)
- Remove SESSION_NAME, PHASE_FILE, PHASE_POLL_INTERVAL (tmux/phase artifacts)
- Strip phase protocol from prompt footer (SDK mode needs no phase signals)
- Preserve all prompt composition: context blocks, memory, journal, preflight
Shared helpers added to lib/formula-session.sh:
- build_sdk_prompt_footer(): build_prompt_footer minus phase protocol
- formula_worktree_setup(): fetch + cleanup + create worktree + EXIT trap
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 13:06:34 +00:00
|
|
|
# Synchronous bash loop using claude -p (one-shot invocation).
|
|
|
|
|
# No tmux sessions, no phase files — the bash script IS the state machine.
|
|
|
|
|
#
|
|
|
|
|
# Flow:
|
2026-04-10 08:54:11 +00:00
|
|
|
# 1. Guards: run lock, memory check
|
fix: Migrate planner, predictor, supervisor to SDK (#6)
Replace tmux-based run_formula_and_monitor() with synchronous agent_run()
from lib/agent-sdk.sh, matching the pattern established in gardener-run.sh.
Key changes per agent:
- Drop agent-session.sh, use agent-sdk.sh (SID_FILE, LOGFILE)
- Remove SESSION_NAME, PHASE_FILE, PHASE_POLL_INTERVAL (tmux/phase artifacts)
- Strip phase protocol from prompt footer (SDK mode needs no phase signals)
- Preserve all prompt composition: context blocks, memory, journal, preflight
Shared helpers added to lib/formula-session.sh:
- build_sdk_prompt_footer(): build_prompt_footer minus phase protocol
- formula_worktree_setup(): fetch + cleanup + create worktree + EXIT trap
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 13:06:34 +00:00
|
|
|
# 2. Load formula (formulas/run-predictor.toml)
|
|
|
|
|
# 3. Context: AGENTS.md, ops:RESOURCES.md, VISION.md, structural graph
|
|
|
|
|
# 4. agent_run(worktree, prompt) → Claude analyzes, writes to ops repo
|
2026-03-20 17:29:49 +00:00
|
|
|
#
|
|
|
|
|
# Usage:
|
|
|
|
|
# predictor-run.sh [projects/disinto.toml] # project config (default: disinto)
|
|
|
|
|
#
|
2026-04-10 08:54:11 +00:00
|
|
|
# Called by: entrypoint.sh polling loop (daily)
|
2026-03-20 17:29:49 +00:00
|
|
|
# =============================================================================
|
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
|
FACTORY_ROOT="$(dirname "$SCRIPT_DIR")"
|
|
|
|
|
|
|
|
|
|
# Accept project config from argument; default to disinto
|
|
|
|
|
export PROJECT_TOML="${1:-$FACTORY_ROOT/projects/disinto.toml}"
|
2026-04-15 07:15:28 +00:00
|
|
|
# Set override BEFORE sourcing env.sh so it survives any later re-source of
|
|
|
|
|
# env.sh from nested shells / claude -p tools (#762, #747)
|
|
|
|
|
export FORGE_TOKEN_OVERRIDE="${FORGE_PREDICTOR_TOKEN:-}"
|
2026-03-20 17:29:49 +00:00
|
|
|
# shellcheck source=../lib/env.sh
|
|
|
|
|
source "$FACTORY_ROOT/lib/env.sh"
|
|
|
|
|
# shellcheck source=../lib/formula-session.sh
|
|
|
|
|
source "$FACTORY_ROOT/lib/formula-session.sh"
|
2026-03-27 19:06:31 +00:00
|
|
|
# shellcheck source=../lib/worktree.sh
|
|
|
|
|
source "$FACTORY_ROOT/lib/worktree.sh"
|
2026-03-23 21:46:59 +00:00
|
|
|
# shellcheck source=../lib/guard.sh
|
|
|
|
|
source "$FACTORY_ROOT/lib/guard.sh"
|
fix: Migrate planner, predictor, supervisor to SDK (#6)
Replace tmux-based run_formula_and_monitor() with synchronous agent_run()
from lib/agent-sdk.sh, matching the pattern established in gardener-run.sh.
Key changes per agent:
- Drop agent-session.sh, use agent-sdk.sh (SID_FILE, LOGFILE)
- Remove SESSION_NAME, PHASE_FILE, PHASE_POLL_INTERVAL (tmux/phase artifacts)
- Strip phase protocol from prompt footer (SDK mode needs no phase signals)
- Preserve all prompt composition: context blocks, memory, journal, preflight
Shared helpers added to lib/formula-session.sh:
- build_sdk_prompt_footer(): build_prompt_footer minus phase protocol
- formula_worktree_setup(): fetch + cleanup + create worktree + EXIT trap
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 13:06:34 +00:00
|
|
|
# shellcheck source=../lib/agent-sdk.sh
|
|
|
|
|
source "$FACTORY_ROOT/lib/agent-sdk.sh"
|
2026-03-20 17:29:49 +00:00
|
|
|
|
2026-04-07 21:02:05 +00:00
|
|
|
LOG_FILE="${DISINTO_LOG_DIR}/predictor/predictor.log"
|
fix: Migrate planner, predictor, supervisor to SDK (#6)
Replace tmux-based run_formula_and_monitor() with synchronous agent_run()
from lib/agent-sdk.sh, matching the pattern established in gardener-run.sh.
Key changes per agent:
- Drop agent-session.sh, use agent-sdk.sh (SID_FILE, LOGFILE)
- Remove SESSION_NAME, PHASE_FILE, PHASE_POLL_INTERVAL (tmux/phase artifacts)
- Strip phase protocol from prompt footer (SDK mode needs no phase signals)
- Preserve all prompt composition: context blocks, memory, journal, preflight
Shared helpers added to lib/formula-session.sh:
- build_sdk_prompt_footer(): build_prompt_footer minus phase protocol
- formula_worktree_setup(): fetch + cleanup + create worktree + EXIT trap
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 13:06:34 +00:00
|
|
|
# shellcheck disable=SC2034 # consumed by agent-sdk.sh
|
|
|
|
|
LOGFILE="$LOG_FILE"
|
|
|
|
|
# shellcheck disable=SC2034 # consumed by agent-sdk.sh
|
|
|
|
|
SID_FILE="/tmp/predictor-session-${PROJECT_NAME}.sid"
|
2026-03-20 20:12:45 +00:00
|
|
|
SCRATCH_FILE="/tmp/predictor-${PROJECT_NAME}-scratch.md"
|
fix: Migrate planner, predictor, supervisor to SDK (#6)
Replace tmux-based run_formula_and_monitor() with synchronous agent_run()
from lib/agent-sdk.sh, matching the pattern established in gardener-run.sh.
Key changes per agent:
- Drop agent-session.sh, use agent-sdk.sh (SID_FILE, LOGFILE)
- Remove SESSION_NAME, PHASE_FILE, PHASE_POLL_INTERVAL (tmux/phase artifacts)
- Strip phase protocol from prompt footer (SDK mode needs no phase signals)
- Preserve all prompt composition: context blocks, memory, journal, preflight
Shared helpers added to lib/formula-session.sh:
- build_sdk_prompt_footer(): build_prompt_footer minus phase protocol
- formula_worktree_setup(): fetch + cleanup + create worktree + EXIT trap
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 13:06:34 +00:00
|
|
|
WORKTREE="/tmp/${PROJECT_NAME}-predictor-run"
|
2026-03-20 20:12:45 +00:00
|
|
|
|
2026-04-07 21:02:05 +00:00
|
|
|
# Override LOG_AGENT for consistent agent identification
|
|
|
|
|
# shellcheck disable=SC2034 # consumed by agent-sdk.sh and env.sh log()
|
|
|
|
|
LOG_AGENT="predictor"
|
|
|
|
|
|
|
|
|
|
# Override log() to append to predictor-specific log file
|
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
|
log() {
|
|
|
|
|
local agent="${LOG_AGENT:-predictor}"
|
|
|
|
|
printf '[%s] %s: %s\n' "$(date -u '+%Y-%m-%dT%H:%M:%SZ')" "$agent" "$*" >> "$LOG_FILE"
|
|
|
|
|
}
|
2026-03-20 17:29:49 +00:00
|
|
|
|
|
|
|
|
# ── Guards ────────────────────────────────────────────────────────────────
|
2026-03-23 21:46:59 +00:00
|
|
|
check_active predictor
|
2026-04-10 08:54:11 +00:00
|
|
|
acquire_run_lock "/tmp/predictor-run.lock"
|
2026-04-06 09:36:14 +00:00
|
|
|
memory_guard 2000
|
2026-03-20 17:29:49 +00:00
|
|
|
|
|
|
|
|
log "--- Predictor run start ---"
|
|
|
|
|
|
2026-04-06 09:26:18 +00:00
|
|
|
# ── Resolve forge remote for git operations ─────────────────────────────
|
2026-04-10 12:26:31 +00:00
|
|
|
# Run git operations from the project checkout, not the baked code dir
|
|
|
|
|
cd "$PROJECT_REPO_ROOT"
|
|
|
|
|
|
2026-04-06 09:26:18 +00:00
|
|
|
resolve_forge_remote
|
|
|
|
|
|
2026-04-01 14:16:13 +00:00
|
|
|
# ── Resolve agent identity for .profile repo ────────────────────────────
|
2026-04-06 09:55:07 +00:00
|
|
|
resolve_agent_identity || true
|
2026-04-01 14:16:13 +00:00
|
|
|
|
2026-03-20 17:29:49 +00:00
|
|
|
# ── Load formula + context ───────────────────────────────────────────────
|
2026-04-01 14:16:13 +00:00
|
|
|
load_formula_or_profile "predictor" "$FACTORY_ROOT/formulas/run-predictor.toml" || exit 1
|
fix: {project}-ops repo — separate operations from code (#757) (#767)
Fixes #757
## Changes
Separate operations from code into {project}-ops repo pattern. Added OPS_REPO_ROOT infrastructure (env.sh, load-project.sh, formula-session.sh with ensure_ops_repo helper). Updated all 8 agent scripts and 7 formulas to read/write vault items, journals, evidence, prerequisites, RESOURCES.md, and knowledge from the ops repo. Added setup_ops_repo() to disinto init for automatic ops repo creation and seeding. Removed migrated data from code repo (vault data dirs, planner journal/memory/prerequisites, supervisor journal/best-practices, evidence, RESOURCES.md). Updated all documentation. 55 files changed, ShellCheck clean, all 38 phase tests pass.
Co-authored-by: openhands <openhands@all-hands.dev>
Reviewed-on: https://codeberg.org/johba/disinto/pulls/767
Reviewed-by: Disinto_bot <disinto_bot@noreply.codeberg.org>
2026-03-26 19:55:12 +01:00
|
|
|
build_context_block AGENTS.md ops:RESOURCES.md VISION.md ops:prerequisites.md
|
2026-03-20 17:29:49 +00:00
|
|
|
|
2026-03-24 21:24:20 +00:00
|
|
|
# ── Build structural analysis graph ──────────────────────────────────────
|
2026-03-25 13:50:33 +00:00
|
|
|
build_graph_section
|
2026-03-24 21:24:20 +00:00
|
|
|
|
2026-04-01 14:16:13 +00:00
|
|
|
# ── Prepare .profile context (lessons injection) ─────────────────────────
|
|
|
|
|
formula_prepare_profile_context
|
|
|
|
|
|
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 17:29:49 +00:00
|
|
|
# ── Build prompt ─────────────────────────────────────────────────────────
|
fix: Migrate planner, predictor, supervisor to SDK (#6)
Replace tmux-based run_formula_and_monitor() with synchronous agent_run()
from lib/agent-sdk.sh, matching the pattern established in gardener-run.sh.
Key changes per agent:
- Drop agent-session.sh, use agent-sdk.sh (SID_FILE, LOGFILE)
- Remove SESSION_NAME, PHASE_FILE, PHASE_POLL_INTERVAL (tmux/phase artifacts)
- Strip phase protocol from prompt footer (SDK mode needs no phase signals)
- Preserve all prompt composition: context blocks, memory, journal, preflight
Shared helpers added to lib/formula-session.sh:
- build_sdk_prompt_footer(): build_prompt_footer minus phase protocol
- formula_worktree_setup(): fetch + cleanup + create worktree + EXIT trap
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 13:06:34 +00:00
|
|
|
build_sdk_prompt_footer
|
|
|
|
|
export CLAUDE_MODEL="sonnet"
|
2026-03-20 17:41:52 +00:00
|
|
|
|
fix: Migrate planner, predictor, supervisor to SDK (#6)
Replace tmux-based run_formula_and_monitor() with synchronous agent_run()
from lib/agent-sdk.sh, matching the pattern established in gardener-run.sh.
Key changes per agent:
- Drop agent-session.sh, use agent-sdk.sh (SID_FILE, LOGFILE)
- Remove SESSION_NAME, PHASE_FILE, PHASE_POLL_INTERVAL (tmux/phase artifacts)
- Strip phase protocol from prompt footer (SDK mode needs no phase signals)
- Preserve all prompt composition: context blocks, memory, journal, preflight
Shared helpers added to lib/formula-session.sh:
- build_sdk_prompt_footer(): build_prompt_footer minus phase protocol
- formula_worktree_setup(): fetch + cleanup + create worktree + EXIT trap
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 13:06:34 +00:00
|
|
|
PROMPT="You are the prediction agent (goblin) for ${FORGE_REPO}. Work through the formula below.
|
2026-03-20 17:29:49 +00:00
|
|
|
|
2026-03-23 13:56:59 +00:00
|
|
|
Your role: abstract adversary. Find the project's biggest weakness, challenge
|
|
|
|
|
planner claims, and generate evidence. Explore when uncertain (file a prediction),
|
|
|
|
|
exploit when confident (file a prediction AND dispatch a formula via an action issue).
|
2026-03-22 11:47:13 +00:00
|
|
|
|
2026-03-23 13:56:59 +00:00
|
|
|
Your prediction history IS your memory — review it to decide where to focus.
|
2026-03-20 17:29:49 +00:00
|
|
|
The planner (adult) will triage every prediction before acting.
|
|
|
|
|
You MUST NOT emit feature work or implementation issues — only predictions
|
2026-03-23 13:56:59 +00:00
|
|
|
challenging claims, exposing gaps, and surfacing risks.
|
2026-03-22 11:47:13 +00:00
|
|
|
Use WebSearch for external signal scanning — be targeted (project dependencies
|
2026-03-23 13:56:59 +00:00
|
|
|
and tools only, not general news). Limit to 3 web searches per run.
|
2026-03-20 17:29:49 +00:00
|
|
|
|
|
|
|
|
## Project context
|
2026-04-01 14:25:43 +00:00
|
|
|
${CONTEXT_BLOCK}$(formula_lessons_block)
|
2026-03-24 21:24:20 +00:00
|
|
|
${GRAPH_SECTION}
|
2026-04-01 14:16:13 +00:00
|
|
|
${SCRATCH_CONTEXT:+${SCRATCH_CONTEXT}
|
|
|
|
|
}
|
2026-03-20 17:29:49 +00:00
|
|
|
## Formula
|
|
|
|
|
${FORMULA_CONTENT}
|
|
|
|
|
|
2026-03-20 20:58:32 +00:00
|
|
|
${SCRATCH_INSTRUCTION}
|
2026-03-20 17:41:52 +00:00
|
|
|
${PROMPT_FOOTER}"
|
2026-03-20 17:29:49 +00:00
|
|
|
|
fix: Migrate planner, predictor, supervisor to SDK (#6)
Replace tmux-based run_formula_and_monitor() with synchronous agent_run()
from lib/agent-sdk.sh, matching the pattern established in gardener-run.sh.
Key changes per agent:
- Drop agent-session.sh, use agent-sdk.sh (SID_FILE, LOGFILE)
- Remove SESSION_NAME, PHASE_FILE, PHASE_POLL_INTERVAL (tmux/phase artifacts)
- Strip phase protocol from prompt footer (SDK mode needs no phase signals)
- Preserve all prompt composition: context blocks, memory, journal, preflight
Shared helpers added to lib/formula-session.sh:
- build_sdk_prompt_footer(): build_prompt_footer minus phase protocol
- formula_worktree_setup(): fetch + cleanup + create worktree + EXIT trap
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 13:06:34 +00:00
|
|
|
# ── Create worktree ──────────────────────────────────────────────────────
|
|
|
|
|
formula_worktree_setup "$WORKTREE"
|
|
|
|
|
|
|
|
|
|
# ── Run agent ─────────────────────────────────────────────────────────────
|
|
|
|
|
agent_run --worktree "$WORKTREE" "$PROMPT"
|
|
|
|
|
log "agent_run complete"
|
2026-03-20 20:12:45 +00:00
|
|
|
|
2026-04-01 14:16:13 +00:00
|
|
|
# Write journal entry post-session
|
|
|
|
|
profile_write_journal "predictor-run" "Predictor run $(date -u +%Y-%m-%d)" "complete" "" || true
|
|
|
|
|
|
fix: Migrate planner, predictor, supervisor to SDK (#6)
Replace tmux-based run_formula_and_monitor() with synchronous agent_run()
from lib/agent-sdk.sh, matching the pattern established in gardener-run.sh.
Key changes per agent:
- Drop agent-session.sh, use agent-sdk.sh (SID_FILE, LOGFILE)
- Remove SESSION_NAME, PHASE_FILE, PHASE_POLL_INTERVAL (tmux/phase artifacts)
- Strip phase protocol from prompt footer (SDK mode needs no phase signals)
- Preserve all prompt composition: context blocks, memory, journal, preflight
Shared helpers added to lib/formula-session.sh:
- build_sdk_prompt_footer(): build_prompt_footer minus phase protocol
- formula_worktree_setup(): fetch + cleanup + create worktree + EXIT trap
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-28 13:06:34 +00:00
|
|
|
rm -f "$SCRATCH_FILE"
|
|
|
|
|
log "--- Predictor run done ---"
|