fix(chaos): reset and standardize all tangle headers to clean relative paths

This commit is contained in:
2026-04-28 19:08:31 -04:00
parent 4669fcf22a
commit f465dcc59c
11 changed files with 32 additions and 32 deletions

View File

@@ -3,7 +3,7 @@
#+AUTHOR: Agent
#+FILETAGS: :harness:skills:
#+STARTUP: content
#+PROPERTY: header-args:lisp :tangle package.lisp
#+PROPERTY: header-args:lisp :tangle skills.lisp
* Overview
The ~opencortex~ Skill Engine enables **Late-Binding Intelligence**, allowing the system to discover and integrate new cognitive capabilities at runtime.
@@ -148,7 +148,7 @@ The ~opencortex~ Skill Engine enables **Late-Binding Intelligence**, allowing th
(error (c) (values nil (format nil "~a" c)))))
(defun extract-tangle-target (line)
"Extracts the value of the :tangle header."
"Extracts the value of the :tangle skills.lispheader."
(let ((pos (search ":tangle" line)))
(when pos
(let ((rest (string-trim '(#\Space #\Tab) (subseq line (+ pos 7)))))