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

@@ -69,6 +69,21 @@ Interfaces for state-aware knowledge extraction and structural auditing.
target-path))
#+end_src
** Sensory Logic
#+begin_src lisp :tangle ../projects/org-skill-scribe/src/scribe-engine.lisp
(defun trigger-skill-scribe (context)
"Triggers on delegation to :scribe or :distill."
(let ((payload (getf context :payload)))
(and (eq (getf context :type) :EVENT)
(eq (getf payload :sensor) :delegation)
(member (getf payload :target-skill) '(:scribe :distill)))))
(defun neuro-skill-scribe (context)
"Neural stage for concept distillation."
(declare (ignore context))
nil)
#+end_src
* Registration
#+begin_src lisp
(defskill :skill-scribe