feat(psf): transition to Order 2 (Sovereign Architect) with advanced skill graph and philosophical alignment
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user