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

@@ -30,8 +30,8 @@ Unify the system's diverse information silos into a single, navigable graph.
#+begin_src lisp :tangle projects/org-skill-hyper-graph/src/graph-logic.lisp
(defun hyper-graph-trace-lineage (object-id)
"Recursively follows #+ID and [[file:]] links to find related cross-modal nodes."
(let* ((obj (org-agent:lookup-object object-id))
(links (extract-all-org-links (org-agent:org-object-content obj))))
(let* ((obj (opencortex:lookup-object object-id))
(links (extract-all-org-links (opencortex:org-object-content obj))))
(kernel-log "MEMORY [Hyper-Graph] - Tracing lineage for ~a..." object-id)
(loop for link in links collect (resolve-hyper-link link))))
#+end_src