REFAC: Standardize on Cognitive Cycle and update documentation
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
(in-package :org-agent.skills.org-skill-architect)
|
||||
(in-package :opencortex.skills.org-skill-architect)
|
||||
|
||||
(defun architect-scan-all-notes ()
|
||||
(let* ((notes-dir (or (uiop:getenv "MEMEX_NOTES") "/home/user/memex/notes/"))
|
||||
(files (uiop:directory-files (uiop:ensure-directory-pathname notes-dir)))
|
||||
(ready-notes '()))
|
||||
(org-agent:kernel-log "ARCHITECT - Scanning ~a files in ~a" (length files) notes-dir)
|
||||
(opencortex:kernel-log "ARCHITECT - Scanning ~a files in ~a" (length files) notes-dir)
|
||||
(dolist (file files)
|
||||
(let ((name (pathname-name file))
|
||||
(type (pathname-type file)))
|
||||
@@ -13,5 +13,5 @@
|
||||
(string-equal type "org"))
|
||||
(let ((status (architect-perceive-frozen-prd file)))
|
||||
(when status (push status ready-notes))))))
|
||||
(org-agent:kernel-log "ARCHITECT - Found ~a ready notes." (length ready-notes))
|
||||
(opencortex:kernel-log "ARCHITECT - Found ~a ready notes." (length ready-notes))
|
||||
ready-notes))
|
||||
|
||||
Reference in New Issue
Block a user