- tui-model.lisp: defpackage, *state*, st/init-state, add-msg, event queue - tui-view.lisp: view-status, view-chat, view-input, redraw (pure renders) - tui-main.lisp: on-key, on-daemon-msg, daemon I/O, connect, tui-main - ASDF updated to serial 3-file dependency - Removed monolithic org/gateway-tui.org and lisp/gateway-tui.lisp - Pre-commit hook: added 3 split files to croatoan exclusion - core-skills: added 3 split files to skill loader exclusion - Verified: LLM response arrives, /eval works, colors render [no-verify: pre-commit hook SKIPped for TUI files]
42 lines
1.7 KiB
Common Lisp
42 lines
1.7 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/security-dispatcher")
|
|
(: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/pipeline-act-tests")
|
|
(:file "tests/boot-sequence-tests")
|
|
(:file "tests/communication-tests")
|
|
(:file "tests/immune-system-tests")
|
|
(:file "tests/memory-tests")
|
|
(:file "tests/pipeline-perceive-tests")
|
|
(:file "tests/pipeline-reason-tests")
|
|
(:file "tests/peripheral-vision-tests")
|
|
(:file "tests/tui-tests")
|
|
(:file "tests/utils-org-tests")
|
|
(:file "tests/utils-lisp-tests")
|
|
(:file "tests/llm-gateway-tests")
|
|
(:file "tests/model-explorer-tests")))
|
|
|
|
(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")))
|