From 306362c80c933cf66d89d8307cff3225944e5798 Mon Sep 17 00:00:00 2001 From: JohnDoe6345789 Date: Thu, 25 Dec 2025 21:14:43 +0000 Subject: [PATCH] scripts: tools,autobot (1 files) --- tools/autobot.sh | 20 +------------------- 1 file changed, 1 insertion(+), 19 deletions(-) diff --git a/tools/autobot.sh b/tools/autobot.sh index a284491c1..945764eb0 100755 --- a/tools/autobot.sh +++ b/tools/autobot.sh @@ -1,19 +1 @@ -#!/usr/bin/env sh -set -eu - -# Polling loop (runs locally, every 90s). Breaks if codex returnson-zero. -while :; do - sleep 90 - - codex exec \ - --cd="/Users/rmac/Documents/GitHub/metabuilder/docs/todo/" \ - --sandbox workspace-write \ - 0-kickstart.md \ - "Follow 0-kickstart.md exactly. - You are explicitly allowed to modify source code, configuration files, - and build files — not just Markdown. - Do not ask questions. - If something is ambiguous, make the smallest safe assumption and proceed. - If nothing is wrong, halt immediately." \ - -done +while :; do sleep 90 && codex exec --cd="/Users/rmac/Documents/GitHub/metabuilder/docs/todo/" --sandbox workspace-write 0-kickstart.md "Follow 0-kickstart.md exactly. You are explicitly allowed to modify source code, configuration files, and build files — not just Markdown. Do not ask questions. If something is ambiguous, make the smallest safe assumption and proceed. If nothing is wrong, halt immediately." || break; done