594e6718be
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
27 lines
1.2 KiB
Bash
Executable File
27 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
# Pyramid-Autopilot (Pi/Linux): startet Claude-Sessions in Endlosschleife.
|
|
# Läuft eine Session ins 5h-Limit, wird alle 20 Minuten neu versucht.
|
|
# Start (am besten in tmux): tmux new -d -s pyramid ./autopilot.sh
|
|
# Wieder reinschauen: tmux attach -t pyramid (verlassen: Strg+B, dann D)
|
|
# PAUSIEREN: touch ~/pyramid/PAUSE (greift vor der nächsten Session)
|
|
# FORTSETZEN: rm ~/pyramid/PAUSE
|
|
# GANZ STOPPEN: tmux kill-session -t pyramid
|
|
cd "$(dirname "$0")"
|
|
export PATH="$HOME/.local/bin:$HOME/flutter/bin:$PATH"
|
|
|
|
PROMPT="Lies CLAUDE.md und arbeite ROADMAP.md Punkt für Punkt weiter ab. \
|
|
Halte dich strikt an den Arbeitszyklus (PROGRESS.md pflegen, kleine Commits + Push). \
|
|
Arbeite so viele Punkte ab wie möglich."
|
|
|
|
while true; do
|
|
if [ -f PAUSE ]; then
|
|
echo "===== $(date '+%F %T') PAUSE aktiv (rm PAUSE zum Fortsetzen) - pruefe wieder in 10 Minuten ====="
|
|
sleep 600
|
|
continue
|
|
fi
|
|
echo "===== $(date '+%F %T') Neue Claude-Session =====" | tee -a autopilot.log
|
|
claude -p "$PROMPT" --dangerously-skip-permissions 2>&1 | tee -a autopilot.log
|
|
echo "===== $(date '+%F %T') Session beendet - Neustart in 20 Minuten (Strg+C zum Stoppen) =====" | tee -a autopilot.log
|
|
sleep 1200
|
|
done
|