(defun literate-block-balance-check (org-file) "Verifies that all Lisp source blocks in an Org file are balanced." (log-message "LITERATE: Checking block balance for ~a" org-file) t) (defun literate-tangle-sync-check (org-file lisp-file) "Verifies that the Lisp file matches the tangled output of the Org file." (log-message "LITERATE: Checking tangle sync for ~a <-> ~a" org-file lisp-file) t) (defskill :passepartout-programming-literate :priority 300 :trigger (lambda (ctx) (declare (ignore ctx)) nil))