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
24 lines
904 B
Common Lisp
24 lines
904 B
Common Lisp
(defsystem :passepartout
|
|
:name "Passepartout"
|
|
:author "Amr Gharbeia"
|
|
:version "0.4.3"
|
|
:license "AGPLv3"
|
|
: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-package")
|
|
(:file "lisp/core-skills")
|
|
(:file "lisp/core-transport")
|
|
(:file "lisp/core-memory")
|
|
(:file "lisp/core-perceive")
|
|
(:file "lisp/core-reason")
|
|
(:file "lisp/core-act")
|
|
(:file "lisp/core-pipeline")))
|
|
|
|
(defsystem :passepartout/tui
|
|
:depends-on (:passepartout :croatoan :usocket :bordeaux-threads)
|
|
:serial t
|
|
:components ((:file "lisp/channel-tui-state")
|
|
(:file "lisp/channel-tui-view")
|
|
(:file "lisp/channel-tui-main")))
|