feat(devkit): add resumable workspace automation and UI review tooling
Verified with the coordinated workspace changes by devkit full run 2026-09-08T225814-186389-0000-3e3ed7cd (all seven phases passed). This shared UI pass does not mark the individual module reviews complete.
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
#!/bin/sh
|
||||
# One stable entry point; no environment activation, installation or server startup.
|
||||
set -eu
|
||||
DEVKIT_ROOT=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
if [ -n "${PYTHON:-}" ]; then
|
||||
DEVKIT_PYTHON=$(command -v "$PYTHON") || { echo "devkit: configured PYTHON is unavailable" >&2; exit 127; }
|
||||
elif [ -x "$DEVKIT_ROOT/.venv/bin/python" ]; then
|
||||
DEVKIT_PYTHON="$DEVKIT_ROOT/.venv/bin/python"
|
||||
else
|
||||
DEVKIT_PYTHON=$(command -v python3)
|
||||
fi
|
||||
exec "$DEVKIT_PYTHON" "$DEVKIT_ROOT/tools/devkit/devkit.py" "$@"
|
||||
Reference in New Issue
Block a user