2026-03-21 00:22:37 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
# =============================================================================
|
2026-04-10 08:54:11 +00:00
|
|
|
# supervisor-run.sh — Polling-loop wrapper: supervisor execution via SDK + formula
|
2026-03-21 00:22:37 +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.
|
2026-03-21 00:22:37 +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
|
|
|
# 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. Housekeeping: clean up stale crashed worktrees
|
|
|
|
|
# 3. Collect pre-flight metrics (supervisor/preflight.sh)
|
|
|
|
|
# 4. Load formula (formulas/run-supervisor.toml)
|
|
|
|
|
# 5. Context: AGENTS.md, preflight metrics, structural graph
|
|
|
|
|
# 6. agent_run(worktree, prompt) → Claude monitors, may clean up
|
2026-03-21 00:22:37 +00:00
|
|
|
#
|
|
|
|
|
# Usage:
|
|
|
|
|
# supervisor-run.sh [projects/disinto.toml] # project config (default: disinto)
|
|
|
|
|
#
|
2026-04-10 08:54:11 +00:00
|
|
|
# Called by: entrypoint.sh polling loop (every 20 minutes)
|
2026-03-21 00:22:37 +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}"
|
|
|
|
|
# shellcheck source=../lib/env.sh
|
|
|
|
|
source "$FACTORY_ROOT/lib/env.sh"
|
fix: Per-agent Forgejo accounts — identity and permissions via authorship (#747)
Each agent now gets its own Forgejo account (dev-bot, review-bot,
planner-bot, gardener-bot, vault-bot, supervisor-bot, predictor-bot,
action-bot) with a dedicated API token. This enables:
- Audit trail: every forge action attributable to a specific agent
- Permission boundaries: agents act under their own identity
- Vault authorization model: vault-bot comments = proof of approval
Changes:
- bin/disinto: setup_forge() creates all 8 bot accounts during init,
stores per-agent tokens (FORGE_*_TOKEN) in .env, adds all bots as
repo collaborators
- lib/env.sh: exports per-agent token vars with fallback to FORGE_TOKEN
for backwards compat; sets FORGE_BOT_USERNAMES default to all 8 bots
- Agent scripts: each agent overrides FORGE_TOKEN with its per-agent
token after sourcing env.sh (gardener, planner, supervisor, predictor,
vault, action)
- .env.example: documents all per-agent token fields
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-26 16:16:13 +00:00
|
|
|
# Use supervisor-bot's own Forgejo identity (#747)
|
|
|
|
|
FORGE_TOKEN="${FORGE_SUPERVISOR_TOKEN:-${FORGE_TOKEN}}"
|
2026-03-21 00:22:37 +00:00
|
|
|
# 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-21 00:22:37 +00:00
|
|
|
|
2026-04-07 08:55:31 +00:00
|
|
|
LOG_FILE="${DISINTO_LOG_DIR}/supervisor/supervisor.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/supervisor-session-${PROJECT_NAME}.sid"
|
2026-03-21 00:22:37 +00:00
|
|
|
SCRATCH_FILE="/tmp/supervisor-${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}-supervisor-run"
|
2026-03-21 00:22:37 +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="supervisor"
|
|
|
|
|
|
fix: bug: supervisor hardcodes ops repo expectation — fails silently on deployments without one (#544)
Add OPS repo presence detection in supervisor-run.sh with degraded mode support:
- Detect if OPS_REPO_ROOT is missing and log WARNING message
- Set OPS_REPO_DEGRADED=1 flag and configure fallback paths
- Bundle minimal knowledge files as fallback for degraded mode
- Update formula to use OPS_KNOWLEDGE_ROOT, OPS_JOURNAL_ROOT, OPS_VAULT_ROOT
- Support local vault destination and journal fallback when ops repo absent
Knowledge files bundled: disk.md, memory.md, ci.md, git.md, dev-agent.md,
review-agent.md, forge.md
The supervisor now runs with full functionality when ops repo is available,
or gracefully degrades to local paths when absent, making the failure mode
explicit rather than silent.
2026-04-10 08:16:03 +00:00
|
|
|
# ── OPS Repo Detection (Issue #544) ──────────────────────────────────────
|
|
|
|
|
# Detect if OPS_REPO_ROOT is available and set degraded mode flag if not.
|
|
|
|
|
# This allows the supervisor to run with fallback knowledge files and
|
|
|
|
|
# local journal/vault paths when the ops repo is absent.
|
|
|
|
|
if [ -z "${OPS_REPO_ROOT:-}" ] || [ ! -d "${OPS_REPO_ROOT}" ]; then
|
|
|
|
|
log "WARNING: OPS_REPO_ROOT not set or directory missing — running in degraded mode (no playbooks, no journal continuity, no vault destination)"
|
|
|
|
|
export OPS_REPO_DEGRADED=1
|
|
|
|
|
# Set fallback paths for degraded mode
|
|
|
|
|
export OPS_KNOWLEDGE_ROOT="${FACTORY_ROOT}/knowledge"
|
|
|
|
|
export OPS_JOURNAL_ROOT="${FACTORY_ROOT}/state/supervisor-journal"
|
|
|
|
|
export OPS_VAULT_ROOT="${PROJECT_REPO_ROOT}/vault/pending"
|
|
|
|
|
mkdir -p "$OPS_JOURNAL_ROOT" "$OPS_VAULT_ROOT" 2>/dev/null || true
|
|
|
|
|
else
|
|
|
|
|
export OPS_REPO_DEGRADED=0
|
|
|
|
|
export OPS_KNOWLEDGE_ROOT="${OPS_REPO_ROOT}/knowledge"
|
|
|
|
|
export OPS_JOURNAL_ROOT="${OPS_REPO_ROOT}/journal/supervisor"
|
|
|
|
|
export OPS_VAULT_ROOT="${OPS_REPO_ROOT}/vault/pending"
|
|
|
|
|
mkdir -p "$OPS_JOURNAL_ROOT" "$OPS_VAULT_ROOT" 2>/dev/null || true
|
|
|
|
|
fi
|
|
|
|
|
|
2026-04-07 21:02:05 +00:00
|
|
|
# Override log() to append to supervisor-specific log file
|
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
|
log() {
|
|
|
|
|
local agent="${LOG_AGENT:-supervisor}"
|
|
|
|
|
printf '[%s] %s: %s\n' "$(date -u '+%Y-%m-%dT%H:%M:%SZ')" "$agent" "$*" >> "$LOG_FILE"
|
|
|
|
|
}
|
2026-03-21 00:22:37 +00:00
|
|
|
|
|
|
|
|
# ── Guards ────────────────────────────────────────────────────────────────
|
2026-03-23 21:46:59 +00:00
|
|
|
check_active supervisor
|
2026-04-10 08:54:11 +00:00
|
|
|
acquire_run_lock "/tmp/supervisor-run.lock"
|
2026-04-06 09:36:14 +00:00
|
|
|
memory_guard 2000
|
2026-03-21 00:22:37 +00:00
|
|
|
|
|
|
|
|
log "--- Supervisor 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
|
|
|
|
2026-03-26 13:41:33 +00:00
|
|
|
# ── Housekeeping: clean up stale crashed worktrees (>24h) ────────────────
|
|
|
|
|
cleanup_stale_crashed_worktrees 24
|
|
|
|
|
|
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-21 00:22:37 +00:00
|
|
|
# ── Collect pre-flight metrics ────────────────────────────────────────────
|
|
|
|
|
log "Running preflight.sh"
|
|
|
|
|
PREFLIGHT_OUTPUT=""
|
2026-04-07 21:02:05 +00:00
|
|
|
PREFLIGHT_RC=0
|
2026-03-21 00:22:37 +00:00
|
|
|
if PREFLIGHT_OUTPUT=$(bash "$SCRIPT_DIR/preflight.sh" "$PROJECT_TOML" 2>&1); then
|
|
|
|
|
log "Preflight collected ($(echo "$PREFLIGHT_OUTPUT" | wc -l) lines)"
|
|
|
|
|
else
|
2026-04-07 21:02:05 +00:00
|
|
|
PREFLIGHT_RC=$?
|
|
|
|
|
log "WARNING: preflight.sh failed (exit code $PREFLIGHT_RC), continuing with partial data"
|
|
|
|
|
if [ -n "$PREFLIGHT_OUTPUT" ]; then
|
|
|
|
|
log "Preflight error: $(echo "$PREFLIGHT_OUTPUT" | tail -3)"
|
|
|
|
|
fi
|
2026-03-21 00:22:37 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# ── Load formula + context ───────────────────────────────────────────────
|
2026-04-01 14:16:13 +00:00
|
|
|
load_formula_or_profile "supervisor" "$FACTORY_ROOT/formulas/run-supervisor.toml" || exit 1
|
2026-03-21 00:22:37 +00:00
|
|
|
build_context_block AGENTS.md
|
|
|
|
|
|
2026-04-01 14:16:13 +00:00
|
|
|
# ── Prepare .profile context (lessons injection) ─────────────────────────
|
|
|
|
|
formula_prepare_profile_context
|
|
|
|
|
|
2026-03-21 00:22:37 +00:00
|
|
|
# ── Read scratch file (compaction survival) ───────────────────────────────
|
|
|
|
|
SCRATCH_CONTEXT=$(read_scratch_context "$SCRATCH_FILE")
|
|
|
|
|
SCRATCH_INSTRUCTION=$(build_scratch_instruction "$SCRATCH_FILE")
|
|
|
|
|
|
|
|
|
|
# ── 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-21 00:22:37 +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 (before prompt assembly so trap is set early) ────────
|
|
|
|
|
formula_worktree_setup "$WORKTREE"
|
|
|
|
|
|
fix: bug: supervisor hardcodes ops repo expectation — fails silently on deployments without one (#544)
Add OPS repo presence detection in supervisor-run.sh with degraded mode support:
- Detect if OPS_REPO_ROOT is missing and log WARNING message
- Set OPS_REPO_DEGRADED=1 flag and configure fallback paths
- Bundle minimal knowledge files as fallback for degraded mode
- Update formula to use OPS_KNOWLEDGE_ROOT, OPS_JOURNAL_ROOT, OPS_VAULT_ROOT
- Support local vault destination and journal fallback when ops repo absent
Knowledge files bundled: disk.md, memory.md, ci.md, git.md, dev-agent.md,
review-agent.md, forge.md
The supervisor now runs with full functionality when ops repo is available,
or gracefully degrades to local paths when absent, making the failure mode
explicit rather than silent.
2026-04-10 08:16:03 +00:00
|
|
|
# Inject OPS repo status into prompt
|
|
|
|
|
if [ "${OPS_REPO_DEGRADED:-0}" = "1" ]; then
|
|
|
|
|
OPS_STATUS="
|
|
|
|
|
## OPS Repo Status
|
|
|
|
|
**DEGRADED MODE**: OPS repo is not available. Using bundled knowledge files and local journal/vault paths.
|
|
|
|
|
- Knowledge files: ${OPS_KNOWLEDGE_ROOT:-<unset>}
|
|
|
|
|
- Journal: ${OPS_JOURNAL_ROOT:-<unset>}
|
|
|
|
|
- Vault destination: ${OPS_VAULT_ROOT:-<unset>}
|
|
|
|
|
"
|
|
|
|
|
else
|
|
|
|
|
OPS_STATUS="
|
|
|
|
|
## OPS Repo Status
|
|
|
|
|
**FULL MODE**: OPS repo available at ${OPS_REPO_ROOT}
|
|
|
|
|
- Knowledge files: ${OPS_KNOWLEDGE_ROOT:-<unset>}
|
|
|
|
|
- Journal: ${OPS_JOURNAL_ROOT:-<unset>}
|
|
|
|
|
- Vault destination: ${OPS_VAULT_ROOT:-<unset>}
|
|
|
|
|
"
|
|
|
|
|
fi
|
|
|
|
|
|
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 supervisor agent for ${FORGE_REPO}. Work through the formula below.
|
2026-03-21 00:22:37 +00:00
|
|
|
|
|
|
|
|
You have full shell access and --dangerously-skip-permissions.
|
2026-03-26 09:09:58 +00:00
|
|
|
Fix what you can. File vault items for what you cannot. Do NOT ask permission — act first, report after.
|
2026-03-21 00:22:37 +00:00
|
|
|
|
|
|
|
|
## Pre-flight metrics (collected $(date -u +%H:%M) UTC)
|
|
|
|
|
${PREFLIGHT_OUTPUT}
|
|
|
|
|
|
|
|
|
|
## Project context
|
2026-04-01 14:25:43 +00:00
|
|
|
${CONTEXT_BLOCK}$(formula_lessons_block)
|
2026-03-21 00:22:37 +00:00
|
|
|
${SCRATCH_CONTEXT:+${SCRATCH_CONTEXT}
|
|
|
|
|
}
|
fix: bug: supervisor hardcodes ops repo expectation — fails silently on deployments without one (#544)
Add OPS repo presence detection in supervisor-run.sh with degraded mode support:
- Detect if OPS_REPO_ROOT is missing and log WARNING message
- Set OPS_REPO_DEGRADED=1 flag and configure fallback paths
- Bundle minimal knowledge files as fallback for degraded mode
- Update formula to use OPS_KNOWLEDGE_ROOT, OPS_JOURNAL_ROOT, OPS_VAULT_ROOT
- Support local vault destination and journal fallback when ops repo absent
Knowledge files bundled: disk.md, memory.md, ci.md, git.md, dev-agent.md,
review-agent.md, forge.md
The supervisor now runs with full functionality when ops repo is available,
or gracefully degrades to local paths when absent, making the failure mode
explicit rather than silent.
2026-04-10 08:16:03 +00:00
|
|
|
${OPS_STATUS}
|
2026-03-21 00:32:54 +00:00
|
|
|
Priority order: P0 memory > P1 disk > P2 stopped > P3 degraded > P4 housekeeping
|
|
|
|
|
|
2026-03-21 00:22:37 +00:00
|
|
|
${FORMULA_CONTENT}
|
|
|
|
|
|
|
|
|
|
${SCRATCH_INSTRUCTION}
|
|
|
|
|
${PROMPT_FOOTER}"
|
|
|
|
|
|
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
|
|
|
# ── Run agent ─────────────────────────────────────────────────────────────
|
|
|
|
|
agent_run --worktree "$WORKTREE" "$PROMPT"
|
|
|
|
|
log "agent_run complete"
|
2026-03-21 00:22:37 +00:00
|
|
|
|
2026-04-01 14:16:13 +00:00
|
|
|
# Write journal entry post-session
|
|
|
|
|
profile_write_journal "supervisor-run" "Supervisor 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 "--- Supervisor run done ---"
|