Files
passepartout/passepartout.asd
Amr Gharbeia 11383a29d4
Some checks failed
Deploy (Gitea) / deploy (push) Failing after 3s
tests: fix dead test suite (export list, stale duplicates, 14/14 pass)
2026-05-05 09:36:17 -04:00

32 lines
1.2 KiB
Common Lisp

(defsystem :passepartout
:name "Passepartout"
:author "Amr Gharbeia"
:version "0.3.0"
: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-defpackage")
(:file "lisp/core-skills")
(:file "lisp/core-communication")
(: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")))
(defsystem :passepartout/tests
:depends-on (:passepartout :fiveam)
:components ((:file "tests/programming-org-tests")
(:file "tests/programming-lisp-tests")
(:file "tests/boot-sequence-tests")
(:file "tests/model-explorer-tests")
(:file "tests/tui-tests")
(:file "tests/llm-gateway-tests")
(:file "tests/doctor-tests")))
(defsystem :passepartout/tui
:depends-on (:passepartout :croatoan :usocket :bordeaux-threads)
:components ((:file "lisp/gateway-tui")))