Files
openclaw/scripts/mantis/telegram-visible-remove-private.sh
Ayaan Zaidi b41d5293b2 refactor(mantis): give Codex open-ended Telegram proof control (#128197)
* refactor(mantis): replace Telegram proof compiler with frozen visible replay

* refactor(mantis): let Codex own Telegram proof scenarios

* fix(mantis): isolate proof publication

* fix(mantis): bind baseline cache to revision

* chore(mantis): remove stale scenario-designer wording

* fix(mantis): align readable worktrees with trusted proof

* fix(mantis): register proof collector tooling

* refactor(mantis): keep collector functions private

* fix(mantis): publish agent-selected Telegram proof

* fix(mantis): trim proof media to final turn

* fix(mantis): fence lanes before evidence collection

* fix(mantis): verify lane termination before unlock
2026-08-24 11:47:26 +05:30

11 lines
279 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
for root in \
"$SESSION_ROOT" \
"$SUT_CREDENTIAL_DIR" \
"$CREDENTIAL_DIR"; do
[[ -n "$root" ]] || continue
[[ "$root" == /tmp/openclaw-mantis-*-${GITHUB_RUN_ID}-${GITHUB_RUN_ATTEMPT} ]]
sudo rm -rf --one-file-system "$root"
done