Files
passepartout/skills/org-skill-homoiconic-memory.org
Amr Gharbeia 1eb8a3db92 refactor(skills): use %%SKILLS_DIR%% placeholder for portable tangling
- Updated 22 skill org files to use %%SKILLS_DIR%% placeholder
- Modified opencortex.sh setup to replace placeholder with XDG path
- Modified doctor_repair to handle placeholder replacement
- Removed hardcoded absolute path
2026-04-30 11:14:31 -04:00

689 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))