REFAC: Shift terminology to Autonomy and harden CLI via socat
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
:END:
|
||||
#+TITLE: SKILL: Formal Verification Gate (Universal Literate Note)
|
||||
#+STARTUP: content
|
||||
#+FILETAGS: :security:logic:formal-methods:psf:
|
||||
#+FILETAGS: :security:logic:formal-methods:autonomy:
|
||||
|
||||
* Overview
|
||||
The *Formal Verification Gate* replaces heuristic whitelisting with deterministic logic proofs. It ensures that every action proposed by Probabilistic Engine is *provably safe* against the harness's core security invariants using a Lisp-native deterministic prover.
|
||||
@@ -30,7 +30,7 @@ Define a logic-based verification layer for high-integrity decision making witho
|
||||
** 2. Success Criteria
|
||||
- [ ] *Invariants:* Express security properties as Lisp predicates.
|
||||
- [ ] *Soundness:* Block any action that fails a deterministic safety check.
|
||||
- [ ] *Path Confinement:* Prove that file operations are confined to the Sovereign's memex.
|
||||
- [ ] *Path Confinement:* Prove that file operations are confined to the Autonomous's memex.
|
||||
- [ ] *Network Protection:* Prove that shell commands do not attempt unauthorized data exfiltration.
|
||||
|
||||
* Phase B: Blueprint (PROTOCOL)
|
||||
@@ -75,7 +75,7 @@ Ensures all file-related operations (including shell calls that touch files) are
|
||||
|
||||
#+begin_src lisp
|
||||
(def-invariant path-confinement :all (action context)
|
||||
"Forces all path-based operations to reside within the Sovereign Memex."
|
||||
"Forces all path-based operations to reside within the Autonomous Memex."
|
||||
(declare (ignore context))
|
||||
(let* ((payload (getf action :payload))
|
||||
(path (or (getf payload :file) (getf payload :path)))
|
||||
|
||||
Reference in New Issue
Block a user