REFAC: Standardize on Cognitive Cycle and update documentation

This commit is contained in:
2026-04-14 15:59:19 -04:00
parent 34a210228e
commit e29ca5679e
46 changed files with 195 additions and 268 deletions

View File

@@ -104,17 +104,17 @@
)
#+end_src
** Org-agent (Local Foundry)
** OpenCortex (Local Foundry)
#+begin_src elisp :tangle yes
(use-package org-agent
(use-package opencortex
:straight nil
:load-path "~/.local/share/org-agent/src"
:commands (org-agent-connect org-agent-disconnect)
:load-path "~/.local/share/opencortex/src"
:commands (opencortex-connect opencortex-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")
(setq opencortex-host "127.0.0.1")
(setq opencortex-port 9105)
(setq opencortex-executable-path "~/.local/share/opencortex/bin/opencortex-server")
:config
(message "org-agent: Local brain configured at %s" org-agent-executable-path))
(message "opencortex: Local brain configured at %s" opencortex-executable-path))
#+end_src