passepartout: v0.5.0 hotfix 2 — daemon stable
Some checks failed
Deploy (Gitea) / deploy (push) Failing after 2s

- Restore (in-package :passepartout) to core-reason
- Move *VAULT-MEMORY* back to core-skills
- Fix ASDF and defstruct/defpackage ordering
- Increase daemon timeout to 120s
- Handshake: 0.5.0

Verified: daemon processes messages, TUI clean, gate trace works
This commit is contained in:
2026-05-07 20:14:51 -04:00
parent da160b71e3
commit 924bf8f479
71 changed files with 2976 additions and 3888 deletions

View File

@@ -27,15 +27,14 @@ Components are loaded in sequence (~:serial t~): package first (defines the publ
:description "The Probabilistic-Deterministic Lisp Machine"
:depends-on (:usocket :bordeaux-threads :dexador :uiop :cl-dotenv :cl-ppcre :hunchentoot :ironclad :str :cl-json :uuid)
:serial t
:components ((:file "lisp/core-defpackage")
:components ((:file "lisp/core-package")
(:file "lisp/core-skills")
(:file "lisp/core-communication")
(:file "lisp/core-transport")
(:file "lisp/core-memory")
(:file "lisp/core-context")
(:file "lisp/core-loop-perceive")
(:file "lisp/core-loop-reason")
(:file "lisp/core-loop-act")
(:file "lisp/core-loop")))
(:file "lisp/core-perceive")
(:file "lisp/core-reason")
(:file "lisp/core-act")
(:file "lisp/core-pipeline")))
#+end_src
** Test System
@@ -50,7 +49,7 @@ The TUI is a standalone system that depends on Croatoan (ncurses bindings) in ad
(defsystem :passepartout/tui
:depends-on (:passepartout :croatoan :usocket :bordeaux-threads)
:serial t
:components ((:file "lisp/gateway-tui-model")
(:file "lisp/gateway-tui-view")
(:file "lisp/gateway-tui-main")))
:components ((:file "lisp/channel-tui-state")
(:file "lisp/channel-tui-view")
(:file "lisp/channel-tui-main")))
#+end_src