feat: stabilized org-agent two-way communication and UX

- Fixed kernel-to-Emacs communication bridge.
- Resolved boot-time crashes in multiple skeletal skills.
- Refined Chat skill prompt to eliminate conversational filler.
- Updated Emacs UI to automatically clean up status markers.
- Synchronized all fixes via Literate Org-mode documents.
- Verified physical two-way interaction via simulation.
This commit is contained in:
2026-04-03 17:25:01 -04:00
parent 93f9ccee17
commit fdb55c616d
30 changed files with 654 additions and 100 deletions

View File

@@ -64,6 +64,24 @@ Interfaces for state verification and hierarchical auditing. Source of truth is
nil)
#+end_src
** Sensory Perception
#+begin_src lisp :tangle ../projects/org-skill-task-integrity/src/integrity-logic.lisp
(defun trigger-skill-task-integrity (context)
"Triggers on :heartbeat for periodic cleanup."
(let ((payload (getf context :payload)))
(eq (getf payload :sensor) :heartbeat)))
(defun neuro-skill-task-integrity (context)
"Neural stage for task synthesis."
(declare (ignore context))
nil)
(defun verify-skill-task-integrity (proposed-action context)
"System 2 gatekeeper for logical task consistency."
(declare (ignore context))
proposed-action)
#+end_src
* Registration
#+begin_src lisp
(defskill :skill-task-integrity