33#
44# dispatch-runner.sh — Execute actions from hypatia dispatch manifests
55#
6- # Reads pending.jsonl from verisimdb -data/dispatch/ and executes fixes
6+ # Reads pending.jsonl from verisim -data/dispatch/ and executes fixes
77# via robot-repo-automaton CLI, gitbot-fleet fix scripts, or advisory logging.
88#
99# Usage:
1515# --strategy STRAT Only process entries matching strategy (auto_execute|review|report_only)
1616# --repo REPO Only process entries for a specific repo
1717# --limit N Process at most N entries
18- # --manifest PATH Path to manifest (default: verisimdb -data/dispatch/pending.jsonl)
18+ # --manifest PATH Path to manifest (default: verisim -data/dispatch/pending.jsonl)
1919# --parallel N Run up to N fix scripts concurrently (default: 1)
2020# --dedup-repo Group entries by repo, run only first per repo+category
2121
@@ -50,9 +50,9 @@ validate_path_within() {
5050
5151# --- Configuration ---
5252# Hypatia's local data store is the primary source for dispatch manifests.
53- # Falls back to central verisimdb -data if HYPATIA_DATA is not set.
54- HYPATIA_DATA=" ${HYPATIA_DATA:-/ var$REPOS_DIR / nextgen-databases/ verisimdb / verisimdb -data} "
55- VERISIMDB_DATA=" ${VERISIMDB_DATA:-/ var$REPOS_DIR / nextgen-databases/ verisimdb / verisimdb -data} "
53+ # Falls back to central verisim -data if HYPATIA_DATA is not set.
54+ HYPATIA_DATA=" ${HYPATIA_DATA:-/ var$REPOS_DIR / nextgen-databases/ verisim / verisim -data} "
55+ VERISIMDB_DATA=" ${VERISIMDB_DATA:-/ var$REPOS_DIR / nextgen-databases/ verisim / verisim -data} "
5656REPOS_BASE=" ${REPOS_BASE:-/ var$REPOS_DIR } "
5757FLEET_SCRIPTS=" ${FLEET_SCRIPTS:-/ var$REPOS_DIR / gitbot-fleet/ scripts} "
5858RRA_BIN=" ${RRA_BIN:-/ var$REPOS_DIR / gitbot-fleet/ robot-repo-automaton/ target/ release/ robot-repo-automaton} "
@@ -65,7 +65,7 @@ THIRD_PARTY_PATHS=(
6565 " echidna/HOL"
6666)
6767
68- # Try hypatia's data first, then fall back to central verisimdb -data
68+ # Try hypatia's data first, then fall back to central verisim -data
6969if [[ -f " ${HYPATIA_DATA} /dispatch/pending.jsonl" ]]; then
7070 MANIFEST_PATH=" ${HYPATIA_DATA} /dispatch/pending.jsonl"
7171elif [[ -f " ${VERISIMDB_DATA} /dispatch/pending.jsonl" ]]; then
0 commit comments