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

@@ -78,3 +78,14 @@
:chat-model "sskostyaev/openchat:8k-rag"
:embedding-model "nomic-embed-text"))
)
(use-package org-agent
:straight nil
:load-path "~/.local/share/org-agent/src"
:commands (org-agent-connect org-agent-disconnect)
:init
(setq org-agent-host "127.0.0.1")
(setq org-agent-port 9105)
(setq org-agent-executable-path "~/.local/share/org-agent/bin/org-agent-server")
:config
(message "org-agent: Local brain configured at %s" org-agent-executable-path))

View File

@@ -102,4 +102,19 @@
:chat-model "sskostyaev/openchat:8k-rag"
:embedding-model "nomic-embed-text"))
)
#+end_src
** Org-agent (Local Foundry)
#+begin_src elisp :tangle yes
(use-package org-agent
:straight nil
:load-path "~/.local/share/org-agent/src"
:commands (org-agent-connect org-agent-disconnect)
:init
(setq org-agent-host "127.0.0.1")
(setq org-agent-port 9105)
(setq org-agent-executable-path "~/.local/share/org-agent/bin/org-agent-server")
:config
(message "org-agent: Local brain configured at %s" org-agent-executable-path))
#+end_src