feat: TUI Experience — scrollback, input history, status bar, timestamps
Some checks failed
Deploy (Gitea) / deploy (push) Failing after 3s

This commit is contained in:
2026-05-03 19:58:23 -04:00
parent 9799b9db74
commit d51e85bc9d
3 changed files with 406 additions and 141 deletions

View File

@@ -41,6 +41,15 @@ for orgfile in $CHANGED; do
continue
fi
# Skip files that depend on external libraries not loaded in the daemon
BASENAME=$(basename "$orgfile")
case "$BASENAME" in
gateway-tui.org)
echo "SKIP: $orgfile — external dependency (croatoan)" >&2
continue
;;
esac
# Resolve relative tangle path
ORG_DIR=$(dirname "$orgfile")
LISP_FILE=$(cd "$ORG_DIR" && realpath -m "$TANGLE" 2>/dev/null || echo "$ORG_DIR/$TANGLE")