YOLO
Full send: commit, push, deploy. No stopping.
Steps
- Stage everything:
git add -A - Commit: Write a concise commit message based on the diff. Do NOT ask the user for a message — just write one.
- Push:
git pushto the current branch's remote. If no upstream, usegit push -u origin HEAD. - Deploy: Run
bun run deployfrom the repo root. This does a patch bump by default.- If the user says "minor" or "major", run
bun run deploy:minororbun run deploy:majorinstead.
- If the user says "minor" or "major", run
Rules
- Do NOT ask for confirmation at any step. Just do it.
- Do NOT pause between steps. Run them back to back.
- If any step fails, stop and report the error.
- Always include
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>in the commit message.