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

@@ -72,8 +72,8 @@ Interfaces for background verification and kernel alerting. Source of truth is t
:trigger (lambda (context)
(let ((sensor (getf (getf context :payload) :sensor)))
(or (eq sensor :buffer-update) (eq sensor :file-saved))))
:neuro (lambda (context) nil)
:symbolic (lambda (action context)
:probabilistic (lambda (context) nil)
:deterministic (lambda (action context)
(let ((file (getf (getf context :payload) :file)))
(when (and file (search "projects/" file))
(let ((parts (uiop:split-string file :separator '(#\/))))