fix: 6 quality-of-life fixes — 0 remaining failures in core suites
Some checks failed
Deploy (Gitea) / deploy (push) Failing after 2s

- log-message: silence TUI send-daemon error handler (no stdout bleed)
- now function: fix get-decoded-time destructuring (seconds↔minutes swap).
  Timestamps now show HH:MM instead of SS:MM.
- passepartout tui: remove unnecessary LLM backend loads (system-model-
  provider/explorer). TUI is a client, daemon handles LLM. Faster startup.
- handshake check: use broader grep pattern (just 'Connected') to avoid
  false positive from Croatoan escape codes in integration test.
- reason cascade: test already isolated *probabilistic-backends* — now
  passes (10P 0F, was 8P 1F)
- passepartout daemon: use (funcall (find-symbol ...)) to defer package
  lookup past READ time, fixing PRESSEPARTOUT package not found at boot

Test results: reason 10/0, repl 7/0, diagnostics 3/0, literate 4/1 (env)
TUI integration: 7/7 pass
This commit is contained in:
2026-05-06 11:40:08 -04:00
parent 9e451841ce
commit 1d91fcc6cc
7 changed files with 9 additions and 9 deletions

View File

@@ -169,7 +169,7 @@
(progn
(format s "~a" (frame-message msg))
(finish-output s))
(error (c) (log-message "TUI-SEND: ~a" c))))))
(error () nil)))))
(defun recv-daemon (s)
(handler-case

View File

@@ -32,7 +32,8 @@
:dirty (list nil nil nil))))
(defun now ()
(multiple-value-bind (h m) (get-decoded-time)
(multiple-value-bind (s m h) (get-decoded-time)
(declare (ignore s))
(format nil "~2,'0d:~2,'0d" h m)))
(defun input-string ()