feat: sync Ralph stories with Gitea issues

This commit is contained in:
Dobromir Popov
2026-07-16 23:37:03 +03:00
parent 9db036f91a
commit 9e70b94417
4 changed files with 570 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
# Run one or more supervised Ralph iterations with Gitea state reconciliation.
# The canonical PRD remains authoritative; Gitea is updated before and after Ralph.
set -u
ROOT=$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)
cd "$ROOT"
python3 scripts/ralph_gitea_sync.py sync
ralph_status=0
"$@" || ralph_status=$?
python3 scripts/ralph_gitea_sync.py sync
exit "$ralph_status"