← back to Animals
.claude-codex-yolo-2026-05-14-1711.sh
50 lines
#!/usr/bin/env bash
# 4-round claude-codex apply-mode debate on YOLO loop output.
#
# Window scoped: last ~6 hours (2026-05-14 11:11 -> 17:11 PT).
# Reality: zero new yolo CODE commits in that strict window. The only
# work YOLO produced in the last 6h is the previous debate's scaffolding
# (.claude-codex-yolo-2026-05-14-0802.sh + state.json bump + deleted demo
# jpgs) plus uncommitted scrape/mockup artifacts (screenshots, html
# mockups, raw_html, debug-loop logs). None of that is meaningful code
# to debate.
#
# Following precedent of .claude-codex-yolo-2026-05-14-0802.sh: fall
# back to the cumulative yolo-produced code surface from the last ~24h
# of yolo+dog-park commits so the debate has substantive material to
# argue over:
# bcf525d yolo: Codex debate on agent's own diff (this script's twin)
# cd61af8 yolo: Generate sitemap.xml + robots.txt
# 4071c18 dog-park: arrow-key movement + Auto walk toggle
# 3aa2726 dog-park: brand logo + hamburger nav
# 446da7c yolo: Breed page: nearest businesses that work with this breed
#
# start.sh forks the loop via nohup + disown, so this returns immediately.
# Artifacts: ~/.claude/skills/claude-codex/runs/animals-yolo-2026-05-14-1711/
# Live log: ~/Library/Logs/claude-codex-debate.log
set -u
NAME="animals-yolo-2026-05-14-1711"
ROOT="$HOME/Projects/animals"
FILES=(
"$ROOT/src/server/index.js"
"$ROOT/src/server/render.js"
"$ROOT/src/server/sitemap.js"
"$ROOT/src/server/community.js"
"$ROOT/src/server/community_render.js"
"$ROOT/src/server/dogpark.js"
"$ROOT/src/server/dog_friends.js"
"$ROOT/src/server/dog_friends_render.js"
"$ROOT/public/dogpark/dogpark.js"
"$ROOT/public/dogpark/index.html"
"$ROOT/public/css/site.css"
)
exec bash "$HOME/.claude/skills/claude-codex/scripts/start.sh" \
--name "$NAME" \
--rounds 4 \
--apply \
--scout --lean --vote --escalate \
--files "${FILES[@]}"