- New system-event-orchestrator skill with hook registry, cron registry, and tier classifier - Three dispatch tiers: :reflex (no LLM), :cognition (light), :reasoning (full) - Org-mode timestamp parsing for repeat patterns (+1w, +1d, +1m) - Registers on heartbeat via defskill, dispatches due cron jobs - Fix all remaining harness-log → log-message references across org files
8 lines
243 B
Common Lisp
8 lines
243 B
Common Lisp
(defun memory-inspect ()
|
|
"Allows the system to inspect its own memory state."
|
|
(log-message "MEMORY: Self-inspection triggered."))
|
|
|
|
(defskill :passepartout-system-memory
|
|
:priority 100
|
|
:trigger (lambda (ctx) (declare (ignore ctx)) nil))
|