- Add 12 cross-project instruction files to resources/instructions/ - Add cleanup-copilot-history.mjs/.sh: quarantine-based history cleanup with dry-run and aggressive scope - Add restore-copilot-history.mjs/.sh: restore from quarantine by run, path, or filter - Add purge-copilot-history-quarantine.mjs/.sh: purge old quarantine runs with keep-latest guard - Add copilot-history-maintenance.test.mjs: 3 passing unit tests covering all three scripts
16 lines
411 B
Bash
Executable File
16 lines
411 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
script_dir="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
|
|
if command -v node >/dev/null 2>&1; then
|
|
node_bin="$(command -v node)"
|
|
elif command -v nodejs >/dev/null 2>&1; then
|
|
node_bin="$(command -v nodejs)"
|
|
else
|
|
printf 'Node.js is required to run Copilot history restore.\n' >&2
|
|
exit 1
|
|
fi
|
|
|
|
exec "$node_bin" "$script_dir/restore-copilot-history.mjs" "$@" |