chore: Audit terminology (org-agent -> opencortex)

This commit is contained in:
2026-04-14 16:03:37 -04:00
parent 6608fb5553
commit c5d3d8c5fa
15 changed files with 43 additions and 43 deletions

View File

@@ -65,7 +65,7 @@ Uses a weekly heartbeat trigger. Employs a "Compiler" approach: Probabilistic En
(defun scribe-filter-personal (org-ast-node)
"Recursively strips out any headline or content tagged with @personal.
This runs strictly in Deterministic Engine BEFORE any data is passed to Probabilistic Engine."
(let ((tags (getf (org-agent:org-object-attributes org-ast-node) :TAGS)))
(let ((tags (getf (opencortex:org-object-attributes org-ast-node) :TAGS)))
(when (not (member "@personal" tags :test #'string=))
org-ast-node)))
#+end_src