examples-auto-run
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md Description: --- name: examples-auto-run description: Run python examples in auto mode with logging, rerun helpers, and background control.
Malicious tool definition detected
Tool: scripts/run.sh Description: #!/usr/bin/env bash set -euo pipefail ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/../../../.." && pwd)" PID_FILE="$ROOT/.tmp/examples-auto-run.pid" LOG_DIR="$ROOT/.tmp/examples-start-logs" RERUN_FILE="$ROOT/.tmp/examples-rerun.txt" ensure_dirs() { mkdir -p "$LOG_DIR" "$ROOT/.tmp" } is_running() { local pid="$1" [[ -n "$pid" ]] && ps -p "$pid" >/dev/null 2>&1 } cmd_start() { ensure_dirs local background=0 if [[ "${1:-}" == "--background" ]]; then background=1 shif