Files
passepartout/skills/org-skill-homoiconic-memory.org
Amr Gharbeia dd8bb6e3c8 refactor(skills): use XDG paths for tangle destinations
- Updated all 22 skill org files to use $OC_DATA_DIR/skills/ paths
- Removed manually created .lisp file (tangling now targets XDG)
- Files will now tangle to ~/.local/share/opencortex/skills/
2026-04-30 11:09:21 -04:00

694 B

SKILL: Homoiconic Memory (org-skill-homoiconic-memory.org)

Overview

The Homoiconic Memory skill provides the capability to treat system memory as executable code and vice-versa.

Implementation

Memory Logic

(defun memory-self-inspect ()
  "Allows the system to inspect its own memory state."
  (harness-log "MEMORY: Self-inspection triggered."))

Skill Registration

(defskill :skill-homoiconic-memory
  :priority 100
  :trigger (lambda (ctx) (declare (ignore ctx)) nil))