scripts: tools,autobot (1 files)

This commit is contained in:
2025-12-25 21:14:43 +00:00
parent b5ea0e38fa
commit 306362c80c

View File

@@ -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