refactor: standardize skill API keywords to :probabilistic/:deterministic

This commit is contained in:
2026-04-27 12:19:34 -04:00
parent 5f2b7e8d16
commit 6335b0c0c4
16 changed files with 32 additions and 32 deletions

View File

@@ -73,7 +73,7 @@ Hooks into the `:heartbeat` sensor.
(setf *last-reflection-time* now)
t)
nil)))
:neuro (lambda (ctx)
:probabilistic (lambda (ctx)
(declare (ignore ctx))
(let* ((memories (sample-random-memories 3))
(context-string "LATENT REFLECTION CANDIDATES:\n"))
@@ -94,7 +94,7 @@ Find hidden connections, suggest new tags, or propose a new insight that bridges
MANDATE: Output EXACTLY ONE Common Lisp property list starting with (:type :REQUEST).
Use the :emacs target and :insert-at-end action to write your reflection into the \"*opencortex-chat*\" buffer."
context-string)))
:symbolic (lambda (action ctx)
:deterministic (lambda (action ctx)
(declare (ignore ctx))
;; Approve any safe request
action))