codex-ralph 0.4.0 → 0.4.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/agent/ralph-loop.sh +2 -2
- package/package.json +1 -1
package/agent/ralph-loop.sh
CHANGED
|
@@ -195,7 +195,7 @@ while true; do
|
|
|
195
195
|
remaining="$(remaining_count)"
|
|
196
196
|
if [[ "$remaining" == "0" ]]; then
|
|
197
197
|
total="$(total_count)"
|
|
198
|
-
send_telegram "🧭
|
|
198
|
+
send_telegram "🧭 `${SESSION_UUID}`"$'\n'"✅ All requirements completed"$'\n'"🎯 ${total} of ${total}"
|
|
199
199
|
echo "All sprint requirements complete."
|
|
200
200
|
echo "<promise>DONE</promise>"
|
|
201
201
|
exit 0
|
|
@@ -209,7 +209,7 @@ while true; do
|
|
|
209
209
|
desc="$(next_description)"
|
|
210
210
|
total="$(total_count)"
|
|
211
211
|
current="$(current_index)"
|
|
212
|
-
send_telegram "🧭
|
|
212
|
+
send_telegram "🧭 `${SESSION_UUID}`"$'\n'"📌 ${desc}"$'\n'"🎯 ${current} of ${total}"
|
|
213
213
|
echo "Iteration $iteration - next requirement: $desc"
|
|
214
214
|
|
|
215
215
|
prompt_tmp="$(mktemp)"
|