Files
passepartout/skills/org-skill-scribe.org
Amr Gharbeia 21c792b019 refactor(skills): absolute XDG paths for tangling
- Updated all 23 skill org files to use absolute path
- Tangle now outputs directly to ~/.local/share/opencortex/skills/
- Removed  env var (org-babel doesn't expand it)
2026-04-30 11:09:46 -04:00

817 B

SKILL: Scribe (org-skill-scribe.org)

Overview

The Scribe Skill manages the agent's internal documentation and logs.

Implementation

Documentation Logic

(defun scribe-log-event (signal)
  "Logs a metabolic signal for later analysis."
  (let ((type (getf signal :type))
        (payload (getf signal :payload)))
    (harness-log "SCRIBE: [~a] ~s" type payload)))

Skill Registration

(defskill :skill-scribe
  :priority 100
  :trigger (lambda (ctx) (member (getf ctx :type) '(:LOG :STATUS)))
  :deterministic (lambda (action ctx) (declare (ignore action)) (scribe-log-event ctx) nil))