Some checks failed
Deploy (Gitea) / deploy (push) Failing after 3s
- bwrap sandbox: detect bwrap binary, wrap shell commands through Linux namespace isolation with --unshare-net --unshare-ipc when available, fall back to timeout bash -c otherwise - Severity classification: extend shell-blocked patterns with :catastrophic/:dangerous/:moderate/:harmless severity tiers, dispatcher-severity-max for tier comparison - dispatcher-check-shell-safety: returns (:matched <names> :severity <tier>) - Version: 0.4.2 -> 0.4.3 across handshake, ASDF, README badge
25 lines
965 B
Common Lisp
25 lines
965 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-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/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")))
|