feat(psf): transition to Order 2 (Sovereign Architect) with advanced skill graph and philosophical alignment

This commit is contained in:
2026-03-31 20:28:06 -04:00
parent ec3a572bbb
commit ce39227327
581 changed files with 165563 additions and 25735 deletions

View File

@@ -52,9 +52,16 @@ Interfaces for TCP I/O and protocol framing. Source of truth is the OACP specifi
** Outbound Actuation
#+begin_src lisp :tangle projects/org-skill-emacs-bridge/src/bridge-logic.lisp
(defun broadcast-to-emacs (action-plist)
(defun stream-to-emacs (stream action-plist)
"Streams a chunk of data to a specific Emacs client over OACP."
(let ((msg (prin1-to-string action-plist)))
(format nil "Broadcasting OACP: ~a" msg)))
(format stream "~a" msg)
(force-output stream)))
(defun broadcast-to-emacs (action-plist)
"Sends a framed message to all connected clients."
(let ((msg (prin1-to-string action-plist)))
(kernel-log "Broadcasting OACP: ~a" msg)))
#+end_src
* Registration