fix: Absolute path for ASDF registry in script

This commit is contained in:
2026-04-16 16:28:34 -04:00
parent 36d1e0e842
commit 51b6651b03
3 changed files with 108 additions and 38 deletions

View File

@@ -16,6 +16,7 @@ command_exists() { command -v "$1" >/dev/null 2>&1; }
bootstrap_opencortex() {
echo -e "${BLUE}=== OpenCortex: Zero-to-One Bootstrapper ===${NC}"
if [ -d ".git" ]; then return; fi
TARGET_DIR="opencortex"
if [ ! -d "$TARGET_DIR" ]; then
echo -e "${BLUE}Cloning repository into $TARGET_DIR...${NC}"
@@ -29,23 +30,50 @@ bootstrap_opencortex() {
exit 0
}
if [ ! -d ".git" ]; then bootstrap_opencortex; fi
if [ ! -d ".git" ] && [[ ! "$(pwd)" =~ "opencortex" ]]; then
bootstrap_opencortex
fi
# 1. Try to drop straight into the CLI chat
# --- Helper: Load Env ---
load_env() {
if [ -f .env ]; then
while IFS='=' read -r key value || [ -n "$key" ]; do
# Remove whitespace and quotes
key=$(echo "$key" | xargs)
value=$(echo "$value" | xargs | sed 's/^"//;s/"$//')
if [[ "$key" =~ ^[a-zA-Z_][a-zA-Z0-9_]*$ ]]; then
export "$key=$value"
fi
done < .env
fi
}
# --- Force Boot ---
if [[ "$1" == "--boot" ]]; then
load_env
echo -e "${BLUE}Starting OpenCortex Brain...${NC}"
# Use absolute path to the directory containing this script for ASDF
SCRIPT_DIR="$(cd "$(dirname "$0")" && pwd)"
exec sbcl --non-interactive \
--eval "(load \"~/quicklisp/setup.lisp\")" \
--eval "(push \"$SCRIPT_DIR/\" asdf:*central-registry*)" \
--eval "(ql:quickload :opencortex)" \
--eval "(opencortex:main)"
fi
# --- Client Mode ---
if command_exists socat && socat - TCP:$HOST:$PORT,connect-timeout=1 2>/dev/null; then
echo -e "${BLUE}Connected to autonomous brain at $HOST:$PORT...${NC}"
socat READLINE,history=$HOME/.org_agent_history TCP:$HOST:$PORT
exit 0
fi
# 2. Launch
if [ -f "opencortex.asd" ]; then echo -e "${YELLOW}Brain is offline. Starting it now...${NC}"; $0 --boot > brain.log 2>&1 & sleep 10; exec $0 "$@"; fi
done < .env
fi
echo -e "${BLUE}Starting OpenCortex Brain...${NC}"
sbcl --non-interactive \
--eval "(load \"~/quicklisp/setup.lisp\")" \
--eval "(push \"$(pwd)/\" asdf:*central-registry*)" \
--eval "(ql:quickload :opencortex)" \
--eval "(opencortex:main)"
# --- Auto-Boot Logic ---
if [ -f "opencortex.asd" ] || [ -f "$(dirname "$0")/opencortex.asd" ]; then
echo -e "${YELLOW}Brain is offline. Starting it now...${NC}"
# Use the absolute path to ourselves to ensure the right script boots
SELF="$(cd "$(dirname "$0")" && pwd)/$(basename "$0")"
"$SELF" --boot > brain.log 2>&1 &
sleep 10
exec "$SELF" "$@"
fi