371900bae5
Memind CI / Test, build, and release guards (pull_request) Failing after 18s
Centralize page HTML quota checks with grace-write semantics across page services and workspace tools, keep localhost MindSpace links clickable in chat display, and expand Page Data/static-page skill plus local dev docs for quota, delivery URLs, and native Aider/OpenHands tooling. Co-authored-by: Cursor <cursoragent@cursor.com>
23 lines
554 B
Bash
Executable File
23 lines
554 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="/Users/john/Project/Memind"
|
|
ENV_SCRIPT="${ROOT_DIR}/scripts/executor-env.mjs"
|
|
AIDER_BIN_DEFAULT="/Users/john/.local/bin/aider"
|
|
AIDER_BIN="${AIDER_CLI_BIN:-${AIDER_BIN:-${AIDER_BIN_DEFAULT}}}"
|
|
NODE_BIN="${NODE_BIN:-$(command -v node || true)}"
|
|
|
|
if [[ -z "${NODE_BIN}" ]]; then
|
|
echo "node not found in PATH" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if [[ ! -x "${AIDER_BIN}" ]]; then
|
|
echo "Aider CLI not executable: ${AIDER_BIN}" >&2
|
|
exit 1
|
|
fi
|
|
|
|
eval "$("${NODE_BIN}" "${ENV_SCRIPT}" aider --shell)"
|
|
|
|
exec "${AIDER_BIN}" "$@"
|