- Add queue-based matchmaking with Elo-proximity and 10s timeout - Procedural sound engine (SFX, voice announcer, 4-track music) - Sprite system refactored into 6 archetypes (standard, lobster, sheep, cyborg, blob, tank) - 42+ fight choreographies with themed/generic/wild card selection - 4 KO finish styles, super-speed mode, hyperdetail close-ups - Auth routes, JoinBout page, bot profile with stats - 7-tier ranking system (Baby through Legend) - Arena and challenge system expansions Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1.0 KiB
1.0 KiB
name, description, disable-model-invocation, allowed-tools
| name | description | disable-model-invocation | allowed-tools |
|---|---|---|---|
| overnight | Commit, branch, and start the overnight automation loop | true | Bash(*), Read, Write, Edit, Glob, Grep |
Prepare and launch the overnight automation loop. Do ALL steps in order, stopping on any failure:
- Stage and commit all uncommitted changes:
git add -A && git commit -m "chore: pre-overnight snapshot"(skip if working tree is clean) - Push current branch to origin
- Get today's date as YYYY-MM-DD. Check if
overnight/$DATEbranch exists:- If yes:
git checkout overnight/$DATE - If no: run
./loop/prepare.sh
- If yes:
- Verify
loop/plan.mdhas unchecked tasks (grep -c '^\- \[ \]' loop/plan.md) - Commit plan files if modified:
git add loop/plan.md loop/prompt.md && git commit -m "chore: overnight plan $DATE"(skip if clean) - Push:
git push -u origin overnight/$DATE - Start the loop: run
caffeinate -i ./loop/loop.shwithrun_in_background: true - Report: branch name, number of tasks, and confirm the loop is running in background