Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .agents/scripts/supervisor-helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@
# supervisor-helper.sh verify <task_id> Run post-merge verification checks (t180)
# supervisor-helper.sh triage [--dry-run] [--auto-resolve] Diagnose and resolve stuck tasks
# supervisor-helper.sh self-heal <task_id> Create diagnostic subtask for failed/blocked task
# supervisor-helper.sh pool <subcommand> [args] Container pool manager (t1165.2)
# supervisor-helper.sh contest <subcommand> [args] Model contest mode (t1011)
# supervisor-helper.sh backup [reason] Backup supervisor database (t162)
# supervisor-helper.sh restore [backup_file] Restore from backup (lists if no file) (t162)
Expand Down Expand Up @@ -235,6 +236,7 @@ source "${SUPERVISOR_MODULE_DIR}/ai-lifecycle.sh"
source "${SUPERVISOR_MODULE_DIR}/issue-audit.sh"
source "${SUPERVISOR_MODULE_DIR}/routine-scheduler.sh"
source "${SUPERVISOR_MODULE_DIR}/sanity-check.sh"
source "${SUPERVISOR_MODULE_DIR}/container-pool.sh"

# Valid states for the state machine
# shellcheck disable=SC2034 # Used by supervisor/state.sh
Expand Down Expand Up @@ -366,6 +368,7 @@ Usage:
supervisor-helper.sh stale-gc-report [--days N] [--json] Stale state GC metrics report (t1202)
supervisor-helper.sh stale-claims [--repo path] Detect and recover stale TODO.md claims (t1263)
supervisor-helper.sh labels [--action X] [--model Y] [--json] Query model usage labels (t1010)
supervisor-helper.sh pool <subcommand> [args] Container pool manager (t1165.2)
supervisor-helper.sh ai-pipeline [full|dry-run] Run AI reasoning + action pipeline manually
supervisor-helper.sh ai-status Show AI supervisor status and next-run countdown
supervisor-helper.sh db [sql] Direct SQLite access
Expand Down Expand Up @@ -800,6 +803,7 @@ main() {
db) cmd_db "$@" ;;
labels) cmd_labels "$@" ;;
contest) cmd_contest "$@" ;;
pool) cmd_pool "$@" ;;
ai-context) build_ai_context "${REPO_PATH:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)}" "${1:-full}" ;;
ai-reason) run_ai_reasoning "${REPO_PATH:-$(git rev-parse --show-toplevel 2>/dev/null || pwd)}" "${1:-full}" ;;
ai-actions)
Expand Down
Loading
Loading